Enum CometSnippet.QueryParameter
- java.lang.Object
-
- java.lang.Enum<CometSnippet.QueryParameter>
-
- com.priint.pubserver.comet.bridge.snippet.CometSnippet.QueryParameter
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CometSnippet.QueryParameter>
- Enclosing class:
- CometSnippet
public static enum CometSnippet.QueryParameter extends java.lang.Enum<CometSnippet.QueryParameter>
The enum Query parameter.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description idId query parameter.labelLabel query parameter.layerLayer query parameter.publicationPublication query parameter.publicationPlannerDocumentIdPublication planner document id query parameter.publicationTypePublication type query parameter.snippetContexSnippet contex query parameter.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CometSnippet.QueryParametervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CometSnippet.QueryParameter[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
id
public static final CometSnippet.QueryParameter id
Id query parameter.
-
publicationPlannerDocumentId
public static final CometSnippet.QueryParameter publicationPlannerDocumentId
Publication planner document id query parameter.
-
publicationType
public static final CometSnippet.QueryParameter publicationType
Publication type query parameter.
-
label
public static final CometSnippet.QueryParameter label
Label query parameter.
-
publication
public static final CometSnippet.QueryParameter publication
Publication query parameter.
-
snippetContex
public static final CometSnippet.QueryParameter snippetContex
Snippet contex query parameter.
-
layer
public static final CometSnippet.QueryParameter layer
Layer query parameter.
-
-
Method Detail
-
values
public static CometSnippet.QueryParameter[] 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 (CometSnippet.QueryParameter c : CometSnippet.QueryParameter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CometSnippet.QueryParameter 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
-
-