Enum GhostscriptNode.PaperSize
- java.lang.Object
-
- java.lang.Enum<GhostscriptNode.PaperSize>
-
- com.levigo.jadice.server.ghostscript.GhostscriptNode.PaperSize
-
- All Implemented Interfaces:
Serializable
,Comparable<GhostscriptNode.PaperSize>
- Enclosing class:
- GhostscriptNode
public static enum GhostscriptNode.PaperSize extends Enum<GhostscriptNode.PaperSize>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GhostscriptNode.PaperSize
valueOf(String name)
Returns the enum constant of this type with the specified name.static GhostscriptNode.PaperSize[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Landscape11x17
public static final GhostscriptNode.PaperSize Landscape11x17
-
Ledger
public static final GhostscriptNode.PaperSize Ledger
-
Legal
public static final GhostscriptNode.PaperSize Legal
-
Letter
public static final GhostscriptNode.PaperSize Letter
-
Lettersmall
public static final GhostscriptNode.PaperSize Lettersmall
-
ArchE
public static final GhostscriptNode.PaperSize ArchE
-
ArchD
public static final GhostscriptNode.PaperSize ArchD
-
ArchC
public static final GhostscriptNode.PaperSize ArchC
-
ArchB
public static final GhostscriptNode.PaperSize ArchB
-
ArchA
public static final GhostscriptNode.PaperSize ArchA
-
A0
public static final GhostscriptNode.PaperSize A0
-
A1
public static final GhostscriptNode.PaperSize A1
-
A2
public static final GhostscriptNode.PaperSize A2
-
A3
public static final GhostscriptNode.PaperSize A3
-
A4
public static final GhostscriptNode.PaperSize A4
-
A4small
public static final GhostscriptNode.PaperSize A4small
-
A5
public static final GhostscriptNode.PaperSize A5
-
A6
public static final GhostscriptNode.PaperSize A6
-
A7
public static final GhostscriptNode.PaperSize A7
-
A8
public static final GhostscriptNode.PaperSize A8
-
A9
public static final GhostscriptNode.PaperSize A9
-
A10
public static final GhostscriptNode.PaperSize A10
-
Isob0
public static final GhostscriptNode.PaperSize Isob0
-
Isob1
public static final GhostscriptNode.PaperSize Isob1
-
Isob2
public static final GhostscriptNode.PaperSize Isob2
-
Isob3
public static final GhostscriptNode.PaperSize Isob3
-
Isob4
public static final GhostscriptNode.PaperSize Isob4
-
Isob5
public static final GhostscriptNode.PaperSize Isob5
-
Isob6
public static final GhostscriptNode.PaperSize Isob6
-
C0
public static final GhostscriptNode.PaperSize C0
-
C1
public static final GhostscriptNode.PaperSize C1
-
C2
public static final GhostscriptNode.PaperSize C2
-
C3
public static final GhostscriptNode.PaperSize C3
-
C4
public static final GhostscriptNode.PaperSize C4
-
C5
public static final GhostscriptNode.PaperSize C5
-
C6
public static final GhostscriptNode.PaperSize C6
-
-
Method Detail
-
values
public static GhostscriptNode.PaperSize[] 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 (GhostscriptNode.PaperSize c : GhostscriptNode.PaperSize.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GhostscriptNode.PaperSize valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-