public static enum PrintDetails.PostType extends Enum<PrintDetails.PostType>
| Enum Constant and Description | 
|---|
| B | 
| Modifier and Type | Method and Description | 
|---|---|
| static PrintDetails.PostType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static PrintDetails.PostType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PrintDetails.PostType B
public static PrintDetails.PostType[] values()
for (PrintDetails.PostType c : PrintDetails.PostType.values()) System.out.println(c);
public static PrintDetails.PostType 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 nullCopyright © 2014 Digipost Open Source. All rights reserved.