Enum DocumentLayerNameFormat
- java.lang.Object
-
- java.lang.Enum<DocumentLayerNameFormat>
-
- com.priint.pubserver.comet.entity.placeholder.DocumentLayerNameFormat
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DocumentLayerNameFormat>
public enum DocumentLayerNameFormat extends java.lang.Enum<DocumentLayerNameFormat>
The enum Document layer name format.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COUNTRY_LANGUAGE_TEXTThe Country language text.COUNTRY_TEXTThe Country text.DOCUMENT_PARAMETERThe Document parameter.LANGUAGE_TEXTThe Language text.TEXT_COUNTRYThe Text country.TEXT_COUNTRY_LANGUAGEThe Text country language.TEXT_LANGUAGEThe Text language.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAssortmentTag()Gets assortment tag.java.lang.StringgetCountryTag()Gets country tag.java.lang.StringgetDescription()Gets description.java.lang.StringgetLanguageTag()Gets language tag.java.lang.StringgetMarketTag()Gets market tag.java.lang.StringgetName()Gets name.java.lang.StringgetPublicationTag()Gets publication tag.intgetRuleId()Gets rule id.java.lang.StringgetTargetGroupTag()Gets target group tag.java.lang.StringgetWellTag()Gets well tag.static DocumentLayerNameFormatvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DocumentLayerNameFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCUMENT_PARAMETER
public static final DocumentLayerNameFormat DOCUMENT_PARAMETER
The Document parameter.
-
TEXT_COUNTRY_LANGUAGE
public static final DocumentLayerNameFormat TEXT_COUNTRY_LANGUAGE
The Text country language.
-
TEXT_COUNTRY
public static final DocumentLayerNameFormat TEXT_COUNTRY
The Text country.
-
COUNTRY_TEXT
public static final DocumentLayerNameFormat COUNTRY_TEXT
The Country text.
-
COUNTRY_LANGUAGE_TEXT
public static final DocumentLayerNameFormat COUNTRY_LANGUAGE_TEXT
The Country language text.
-
TEXT_LANGUAGE
public static final DocumentLayerNameFormat TEXT_LANGUAGE
The Text language.
-
LANGUAGE_TEXT
public static final DocumentLayerNameFormat LANGUAGE_TEXT
The Language text.
-
-
Method Detail
-
values
public static DocumentLayerNameFormat[] 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 (DocumentLayerNameFormat c : DocumentLayerNameFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentLayerNameFormat 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
-
getAssortmentTag
public java.lang.String getAssortmentTag()
Gets assortment tag.- Returns:
- the assortment tag
-
getCountryTag
public java.lang.String getCountryTag()
Gets country tag.- Returns:
- the country tag
-
getDescription
public java.lang.String getDescription()
Gets description.- Returns:
- the description
-
getLanguageTag
public java.lang.String getLanguageTag()
Gets language tag.- Returns:
- the language tag
-
getName
public java.lang.String getName()
Gets name.- Returns:
- the name
-
getRuleId
public int getRuleId()
Gets rule id.- Returns:
- the rule id
-
getWellTag
public java.lang.String getWellTag()
Gets well tag.- Returns:
- the well tag
-
getPublicationTag
public java.lang.String getPublicationTag()
Gets publication tag.- Returns:
- the publication tag
-
getTargetGroupTag
public java.lang.String getTargetGroupTag()
Gets target group tag.- Returns:
- the target group tag
-
getMarketTag
public java.lang.String getMarketTag()
Gets market tag.- Returns:
- the market tag
-
-