Enum Stomp.Transformations
- java.lang.Object
-
- java.lang.Enum<Stomp.Transformations>
-
- org.apache.activemq.transport.stomp.Stomp.Transformations
-
- All Implemented Interfaces:
Serializable
,Comparable<Stomp.Transformations>
- Enclosing interface:
- Stomp
public static enum Stomp.Transformations extends Enum<Stomp.Transformations>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JMS_ADVISORY_JSON
JMS_ADVISORY_XML
JMS_BYTE
JMS_JSON
JMS_MAP_JSON
JMS_MAP_XML
JMS_OBJECT_JSON
JMS_OBJECT_XML
JMS_XML
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(String value)
static Stomp.Transformations
getValue(String value)
String
toString()
static Stomp.Transformations
valueOf(String name)
Returns the enum constant of this type with the specified name.static Stomp.Transformations[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JMS_BYTE
public static final Stomp.Transformations JMS_BYTE
-
JMS_XML
public static final Stomp.Transformations JMS_XML
-
JMS_JSON
public static final Stomp.Transformations JMS_JSON
-
JMS_OBJECT_XML
public static final Stomp.Transformations JMS_OBJECT_XML
-
JMS_OBJECT_JSON
public static final Stomp.Transformations JMS_OBJECT_JSON
-
JMS_MAP_XML
public static final Stomp.Transformations JMS_MAP_XML
-
JMS_MAP_JSON
public static final Stomp.Transformations JMS_MAP_JSON
-
JMS_ADVISORY_XML
public static final Stomp.Transformations JMS_ADVISORY_XML
-
JMS_ADVISORY_JSON
public static final Stomp.Transformations JMS_ADVISORY_JSON
-
-
Method Detail
-
values
public static Stomp.Transformations[] 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 (Stomp.Transformations c : Stomp.Transformations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Stomp.Transformations valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<Stomp.Transformations>
-
equals
public boolean equals(String value)
-
getValue
public static Stomp.Transformations getValue(String value)
-
-