public enum EnumPostage extends java.lang.Enum<EnumPostage>
| Enum Constant and Description |
|---|
P_0 |
P_1 |
P_10 |
P_100 |
P_2 |
P_20 |
P_200 |
P_5 |
P_50 |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static EnumPostage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumPostage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumPostage P_0
public static final EnumPostage P_1
public static final EnumPostage P_2
public static final EnumPostage P_5
public static final EnumPostage P_10
public static final EnumPostage P_20
public static final EnumPostage P_50
public static final EnumPostage P_100
public static final EnumPostage P_200
public static EnumPostage[] values()
for (EnumPostage c : EnumPostage.values()) System.out.println(c);
public static EnumPostage valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()