Package network.oxalis.as2.model
Enum As2Disposition.SendingMode
- java.lang.Object
-
- java.lang.Enum<As2Disposition.SendingMode>
-
- network.oxalis.as2.model.As2Disposition.SendingMode
-
- All Implemented Interfaces:
Serializable,Comparable<As2Disposition.SendingMode>
- Enclosing class:
- As2Disposition
public static enum As2Disposition.SendingMode extends Enum<As2Disposition.SendingMode>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static As2Disposition.SendingModecreateFromTextValue(String textValue)StringgetTextValue()static As2Disposition.SendingModevalueOf(String name)Returns the enum constant of this type with the specified name.static As2Disposition.SendingMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MANUAL
public static final As2Disposition.SendingMode MANUAL
-
AUTOMATIC
public static final As2Disposition.SendingMode AUTOMATIC
-
-
Method Detail
-
values
public static As2Disposition.SendingMode[] 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 (As2Disposition.SendingMode c : As2Disposition.SendingMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static As2Disposition.SendingMode 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
-
getTextValue
public String getTextValue()
-
createFromTextValue
public static As2Disposition.SendingMode createFromTextValue(String textValue)
-
-