Enum Product.ProductAttribute
- java.lang.Object
-
- java.lang.Enum<Product.ProductAttribute>
-
- com.priint.pubserver.comet.bridge.entitydata.Product.ProductAttribute
-
- All Implemented Interfaces:
Comet3Attribute,java.io.Serializable,java.lang.Comparable<Product.ProductAttribute>
- Enclosing class:
- Product
public static enum Product.ProductAttribute extends java.lang.Enum<Product.ProductAttribute> implements Comet3Attribute
Attributes for the Comet3 Product type.
CAUTION! Do not change the order of these attributes or add or remove attributes, otherwise the InDesign Comet Plug-Ins and other clients will misinterpret the data sent from the Publishing Server.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADPARAMSThe Adparams.CLASSIDThe Classid.COLUMN1The Column 1.COLUMN2The Column 2.DOCIDThe Docid.DOCUMENTPOSITIONThe Documentposition.ENDThe End.FORCEDELETEThe Forcedelete.GRIDELEMENTIDThe Gridelementid.HASCHILDRENThe Haschildren.ICONIDThe Iconid.IDThe Id.ID2The Id 2.ID3The Id 3.MASTERPAGEThe Masterpage.PAGEITEMIDThe Pageitemid.PAGETEMPLATEIDThe Pagetemplateid.PAGETYPEThe Pagetype.POSTRULEIDThe Postruleid.POSTRULEPARAMSThe Postruleparams.PRERULEIDThe Preruleid.PRERULEPARAMSThe Preruleparams.RESERVED_GRIDELEMENTNAMEThe Reserved gridelementname.RESERVED_GRIDNAMEThe Reserved gridname.SNIPPETATTRIBUTEThe Snippetattribute.STARTThe Start.STRINGIDThe Stringid.TAGID1The Tagid 1.TAGID2The Tagid 2.TODELETEThe Todelete.TYPEThe Type.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Product.ProductAttributevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Product.ProductAttribute[]values()Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface com.priint.pubserver.comet.bridge.entitydata.Comet3Attribute
getDefault, getName
-
-
-
-
Enum Constant Detail
-
ID
public static final Product.ProductAttribute ID
The Id.
-
ID2
public static final Product.ProductAttribute ID2
The Id 2.
-
ID3
public static final Product.ProductAttribute ID3
The Id 3.
-
CLASSID
public static final Product.ProductAttribute CLASSID
The Classid.
-
ICONID
public static final Product.ProductAttribute ICONID
The Iconid.
-
COLUMN1
public static final Product.ProductAttribute COLUMN1
The Column 1.
-
COLUMN2
public static final Product.ProductAttribute COLUMN2
The Column 2.
-
FORCEDELETE
public static final Product.ProductAttribute FORCEDELETE
The Forcedelete.
-
HASCHILDREN
public static final Product.ProductAttribute HASCHILDREN
The Haschildren.
-
DOCID
public static final Product.ProductAttribute DOCID
The Docid.
-
MASTERPAGE
public static final Product.ProductAttribute MASTERPAGE
The Masterpage.
-
RESERVED_GRIDNAME
@Obsolete(reason="In Comet3 page templates are used rather than grids") public static final Product.ProductAttribute RESERVED_GRIDNAME
The Reserved gridname.
-
RESERVED_GRIDELEMENTNAME
@Obsolete(reason="In Comet3 page templates are used rather than grids") public static final Product.ProductAttribute RESERVED_GRIDELEMENTNAME
The Reserved gridelementname.
-
PAGETEMPLATEID
public static final Product.ProductAttribute PAGETEMPLATEID
The Pagetemplateid.
-
GRIDELEMENTID
public static final Product.ProductAttribute GRIDELEMENTID
The Gridelementid.
-
PAGEITEMID
public static final Product.ProductAttribute PAGEITEMID
The Pageitemid.
-
STRINGID
public static final Product.ProductAttribute STRINGID
The Stringid.
-
PRERULEID
public static final Product.ProductAttribute PRERULEID
The Preruleid.
-
POSTRULEID
public static final Product.ProductAttribute POSTRULEID
The Postruleid.
-
DOCUMENTPOSITION
public static final Product.ProductAttribute DOCUMENTPOSITION
The Documentposition.
-
TODELETE
public static final Product.ProductAttribute TODELETE
The Todelete.
-
START
public static final Product.ProductAttribute START
The Start.
-
END
public static final Product.ProductAttribute END
The End.
-
TYPE
public static final Product.ProductAttribute TYPE
The Type.
-
TAGID1
public static final Product.ProductAttribute TAGID1
The Tagid 1.
-
TAGID2
public static final Product.ProductAttribute TAGID2
The Tagid 2.
-
PAGETYPE
public static final Product.ProductAttribute PAGETYPE
The Pagetype.
-
PRERULEPARAMS
public static final Product.ProductAttribute PRERULEPARAMS
The Preruleparams.
-
POSTRULEPARAMS
public static final Product.ProductAttribute POSTRULEPARAMS
The Postruleparams.
-
ADPARAMS
public static final Product.ProductAttribute ADPARAMS
The Adparams.
-
SNIPPETATTRIBUTE
public static final Product.ProductAttribute SNIPPETATTRIBUTE
The Snippetattribute.
-
-
Method Detail
-
values
public static Product.ProductAttribute[] 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 (Product.ProductAttribute c : Product.ProductAttribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Product.ProductAttribute 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
-
-