Package org.cip4.jdflib.extensions
Enum MessageHelper.EFamily
- java.lang.Object
-
- java.lang.Enum<MessageHelper.EFamily>
-
- org.cip4.jdflib.extensions.MessageHelper.EFamily
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MessageHelper.EFamily>
- Enclosing class:
- MessageHelper
public static enum MessageHelper.EFamily extends java.lang.Enum<MessageHelper.EFamily>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MessageHelper.EFamilygetEnum(java.lang.String s)java.lang.StringgetType(java.lang.String base)static MessageHelper.EFamilyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MessageHelper.EFamily[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Audit
public static final MessageHelper.EFamily Audit
-
Command
public static final MessageHelper.EFamily Command
-
Query
public static final MessageHelper.EFamily Query
-
Response
public static final MessageHelper.EFamily Response
-
Signal
public static final MessageHelper.EFamily Signal
-
-
Method Detail
-
values
public static MessageHelper.EFamily[] 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 (MessageHelper.EFamily c : MessageHelper.EFamily.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageHelper.EFamily 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
-
getEnum
public static MessageHelper.EFamily getEnum(java.lang.String s)
-
getType
public java.lang.String getType(java.lang.String base)
-
-