public enum PriceClass extends Enum<PriceClass>
| Enum Constant and Description | 
|---|
| PriceClass_100 | 
| PriceClass_200 | 
| PriceClass_All | 
| Modifier and Type | Method and Description | 
|---|---|
| static PriceClass | fromValue(String value)Use this in place of valueOf. | 
| String | toString() | 
| static PriceClass | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static PriceClass[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PriceClass PriceClass_100
public static final PriceClass PriceClass_200
public static final PriceClass PriceClass_All
public static PriceClass[] values()
for (PriceClass c : PriceClass.values()) System.out.println(c);
public static PriceClass valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<PriceClass>public static PriceClass fromValue(String value)
value - real valueCopyright © 2016. All rights reserved.