Package de.caluga.morphium.messaging
Enum Msg.Fields
- java.lang.Object
-
- java.lang.Enum<Msg.Fields>
-
- de.caluga.morphium.messaging.Msg.Fields
-
- All Implemented Interfaces:
Serializable,Comparable<Msg.Fields>
- Enclosing class:
- Msg
public static enum Msg.Fields extends Enum<Msg.Fields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description additionaldeleteAtinAnswerTolockedlockedBymapValuemsgmsgIdnamepriorityprocessedByrecipientssendersenderHosttimestamptottlvalue
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Msg.FieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static Msg.Fields[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
msgId
public static final Msg.Fields msgId
-
lockedBy
public static final Msg.Fields lockedBy
-
locked
public static final Msg.Fields locked
-
ttl
public static final Msg.Fields ttl
-
sender
public static final Msg.Fields sender
-
senderHost
public static final Msg.Fields senderHost
-
recipients
public static final Msg.Fields recipients
-
to
public static final Msg.Fields to
-
inAnswerTo
public static final Msg.Fields inAnswerTo
-
name
public static final Msg.Fields name
-
msg
public static final Msg.Fields msg
-
additional
public static final Msg.Fields additional
-
mapValue
public static final Msg.Fields mapValue
-
value
public static final Msg.Fields value
-
timestamp
public static final Msg.Fields timestamp
-
deleteAt
public static final Msg.Fields deleteAt
-
priority
public static final Msg.Fields priority
-
processedBy
public static final Msg.Fields processedBy
-
-
Method Detail
-
values
public static Msg.Fields[] 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 (Msg.Fields c : Msg.Fields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Msg.Fields 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
-
-