public enum CatPaperSize extends java.lang.Enum<CatPaperSize>
Enum Constant and Description |
---|
catPaperA |
catPaperA0 |
catPaperA1 |
catPaperA2 |
catPaperA3 |
catPaperA4 |
catPaperB |
catPaperC |
catPaperD |
catPaperE |
catPaperF |
catPaperLegal |
catPaperLetter |
catPaperUser |
Modifier and Type | Method and Description |
---|---|
static CatPaperSize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CatPaperSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatPaperSize catPaperLetter
public static final CatPaperSize catPaperLegal
public static final CatPaperSize catPaperA0
public static final CatPaperSize catPaperA1
public static final CatPaperSize catPaperA2
public static final CatPaperSize catPaperA3
public static final CatPaperSize catPaperA4
public static final CatPaperSize catPaperA
public static final CatPaperSize catPaperB
public static final CatPaperSize catPaperC
public static final CatPaperSize catPaperD
public static final CatPaperSize catPaperE
public static final CatPaperSize catPaperF
public static final CatPaperSize catPaperUser
public static CatPaperSize[] values()
for (CatPaperSize c : CatPaperSize.values()) System.out.println(c);
public static CatPaperSize 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 null