Enum LandingPageLocaleEnum
- java.lang.Object
-
- java.lang.Enum<LandingPageLocaleEnum>
-
- net.anotheria.anosite.gen.shared.data.LandingPageLocaleEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LandingPageLocaleEnum>
public enum LandingPageLocaleEnum extends java.lang.Enum<LandingPageLocaleEnum>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LandingPageLocaleEnumgetConstantByValue(int value)intgetValue()static LandingPageLocaleEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LandingPageLocaleEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERAL
public static final LandingPageLocaleEnum GENERAL
-
EN
public static final LandingPageLocaleEnum EN
-
RU
public static final LandingPageLocaleEnum RU
-
UA
public static final LandingPageLocaleEnum UA
-
PL
public static final LandingPageLocaleEnum PL
-
DK
public static final LandingPageLocaleEnum DK
-
DE
public static final LandingPageLocaleEnum DE
-
FR
public static final LandingPageLocaleEnum FR
-
AT
public static final LandingPageLocaleEnum AT
-
CH
public static final LandingPageLocaleEnum CH
-
NO
public static final LandingPageLocaleEnum NO
-
SE
public static final LandingPageLocaleEnum SE
-
SK
public static final LandingPageLocaleEnum SK
-
CZ
public static final LandingPageLocaleEnum CZ
-
CH_FR
public static final LandingPageLocaleEnum CH_FR
-
-
Method Detail
-
values
public static LandingPageLocaleEnum[] 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 (LandingPageLocaleEnum c : LandingPageLocaleEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LandingPageLocaleEnum 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
-
getValue
public int getValue()
-
getConstantByValue
public static LandingPageLocaleEnum getConstantByValue(int value) throws net.anotheria.asg.exception.ConstantNotFoundException
- Throws:
net.anotheria.asg.exception.ConstantNotFoundException
-
-