Enum ContextRule.ContextCriteria
- java.lang.Object
-
- java.lang.Enum<ContextRule.ContextCriteria>
-
- com.priint.pubserver.comet.bridge.contextrule.ContextRule.ContextCriteria
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ContextRule.ContextCriteria>
- Enclosing interface:
- ContextRule
public static enum ContextRule.ContextCriteria extends java.lang.Enum<ContextRule.ContextCriteria>
The Enum ContextCriteria WELL, ASSORTMENT, COUNTRY, LANGUAGE, PUBLICATION, DOCUMENTID, TARGETGROUP, MARKETNAME .
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSORTMENTThe assortment: ASSORTMENTCOUNTRYThe country: COUNTRYDOCUMENTIDThe documentid: DOCUMENTIDLANGUAGEThe language: LANGUAGEMARKETNAMEThe marketname: MARKETNAMEPUBLICATIONThe publication: PUBLICATIONTARGETGROUPThe targetgroup: TARGETGROUPWELLThe well: WELL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ContextRule.ContextCriteriavalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ContextRule.ContextCriteria[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WELL
public static final ContextRule.ContextCriteria WELL
The well: WELL
-
ASSORTMENT
public static final ContextRule.ContextCriteria ASSORTMENT
The assortment: ASSORTMENT
-
COUNTRY
public static final ContextRule.ContextCriteria COUNTRY
The country: COUNTRY
-
LANGUAGE
public static final ContextRule.ContextCriteria LANGUAGE
The language: LANGUAGE
-
PUBLICATION
public static final ContextRule.ContextCriteria PUBLICATION
The publication: PUBLICATION
-
DOCUMENTID
public static final ContextRule.ContextCriteria DOCUMENTID
The documentid: DOCUMENTID
-
TARGETGROUP
public static final ContextRule.ContextCriteria TARGETGROUP
The targetgroup: TARGETGROUP
-
MARKETNAME
public static final ContextRule.ContextCriteria MARKETNAME
The marketname: MARKETNAME
-
-
Method Detail
-
values
public static ContextRule.ContextCriteria[] 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 (ContextRule.ContextCriteria c : ContextRule.ContextCriteria.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContextRule.ContextCriteria 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
-
-