Enum CometParameterizedScript.DocumentResource
- java.lang.Object
-
- java.lang.Enum<CometParameterizedScript.DocumentResource>
-
- com.priint.pubserver.comet.entity.statement.CometParameterizedScript.DocumentResource
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CometParameterizedScript.DocumentResource>
- Enclosing class:
- CometParameterizedScript
public static enum CometParameterizedScript.DocumentResource extends java.lang.Enum<CometParameterizedScript.DocumentResource>
The Enum DocumentResource.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CELLSTYLESThe cellstyles.CHARSTYLESThe charstyles.COLORPROFILESThe colorprofiles.FONTSThe fonts.FRAMELABELSThe framelabels.IMAGECOLORPROFILESThe imagecolorprofiles.OBJECTSTYLESThe objectstyles.PARASTYLESThe parastyles.PDFPROFILESThe pdfprofiles.PRINTPROFILESThe printprofiles.SWATCHESThe swatches.TABLESTYLESThe tablestyles.TEMPLATESThe templates.UNDEFINEDThe undefined.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Gets the name.static CometParameterizedScript.DocumentResourcevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CometParameterizedScript.DocumentResource[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED
public static final CometParameterizedScript.DocumentResource UNDEFINED
The undefined.
-
COLORPROFILES
public static final CometParameterizedScript.DocumentResource COLORPROFILES
The colorprofiles.
-
IMAGECOLORPROFILES
public static final CometParameterizedScript.DocumentResource IMAGECOLORPROFILES
The imagecolorprofiles.
-
PDFPROFILES
public static final CometParameterizedScript.DocumentResource PDFPROFILES
The pdfprofiles.
-
PRINTPROFILES
public static final CometParameterizedScript.DocumentResource PRINTPROFILES
The printprofiles.
-
PARASTYLES
public static final CometParameterizedScript.DocumentResource PARASTYLES
The parastyles.
-
CHARSTYLES
public static final CometParameterizedScript.DocumentResource CHARSTYLES
The charstyles.
-
OBJECTSTYLES
public static final CometParameterizedScript.DocumentResource OBJECTSTYLES
The objectstyles.
-
TABLESTYLES
public static final CometParameterizedScript.DocumentResource TABLESTYLES
The tablestyles.
-
CELLSTYLES
public static final CometParameterizedScript.DocumentResource CELLSTYLES
The cellstyles.
-
FRAMELABELS
public static final CometParameterizedScript.DocumentResource FRAMELABELS
The framelabels.
-
TEMPLATES
public static final CometParameterizedScript.DocumentResource TEMPLATES
The templates.
-
SWATCHES
public static final CometParameterizedScript.DocumentResource SWATCHES
The swatches.
-
FONTS
public static final CometParameterizedScript.DocumentResource FONTS
The fonts.
-
-
Method Detail
-
values
public static CometParameterizedScript.DocumentResource[] 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 (CometParameterizedScript.DocumentResource c : CometParameterizedScript.DocumentResource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CometParameterizedScript.DocumentResource valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getName
public java.lang.String getName()
Gets the name.- Returns:
- the name
-
-