Package com.chrt.api.types
Enum ShippingDocTemplateEnum.Value
- java.lang.Object
-
- java.lang.Enum<ShippingDocTemplateEnum.Value>
-
- com.chrt.api.types.ShippingDocTemplateEnum.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ShippingDocTemplateEnum.Value>
- Enclosing class:
- ShippingDocTemplateEnum
public static enum ShippingDocTemplateEnum.Value extends java.lang.Enum<ShippingDocTemplateEnum.Value>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ShippingDocTemplateEnum.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ShippingDocTemplateEnum.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POD
public static final ShippingDocTemplateEnum.Value POD
-
BOL
public static final ShippingDocTemplateEnum.Value BOL
-
UNKNOWN
public static final ShippingDocTemplateEnum.Value UNKNOWN
-
-
Method Detail
-
values
public static ShippingDocTemplateEnum.Value[] 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 (ShippingDocTemplateEnum.Value c : ShippingDocTemplateEnum.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ShippingDocTemplateEnum.Value 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
-
-