Enum WebSocketEndpoints
- java.lang.Object
-
- java.lang.Enum<WebSocketEndpoints>
-
- com.xebialabs.deployit.core.websockets.WebSocketEndpoints
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WebSocketEndpoints>
public enum WebSocketEndpoints extends java.lang.Enum<WebSocketEndpoints>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TOPIC_CI_COPYTOPIC_CI_CREATETOPIC_CI_DELETETOPIC_CI_MOVETOPIC_CI_RENAMETOPIC_CI_UPDATETOPIC_MAINTENANCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()static WebSocketEndpointsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WebSocketEndpoints[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOPIC_CI_COPY
public static final WebSocketEndpoints TOPIC_CI_COPY
-
TOPIC_CI_CREATE
public static final WebSocketEndpoints TOPIC_CI_CREATE
-
TOPIC_CI_DELETE
public static final WebSocketEndpoints TOPIC_CI_DELETE
-
TOPIC_CI_MOVE
public static final WebSocketEndpoints TOPIC_CI_MOVE
-
TOPIC_CI_RENAME
public static final WebSocketEndpoints TOPIC_CI_RENAME
-
TOPIC_CI_UPDATE
public static final WebSocketEndpoints TOPIC_CI_UPDATE
-
TOPIC_MAINTENANCE
public static final WebSocketEndpoints TOPIC_MAINTENANCE
-
-
Method Detail
-
values
public static WebSocketEndpoints[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WebSocketEndpoints c : WebSocketEndpoints.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebSocketEndpoints valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getName
public java.lang.String getName()
-
-