Enum K_LOCALE
- java.lang.Object
-
- java.lang.Enum<K_LOCALE>
-
- de.mid.innovator.srv2api.icw2elem.K_LOCALE
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Bg_bg
Ca_es
Cs_cz
Cy_gb
Da_dk
De_de
El_gr
En_us
Es_es
Et_ee
Eu_es
Fi_fi
Fr_fr
Ga_ie
Gd_gb
Gl_es
Hr_hr
Hu_hu
It_it
Lb_lu
Lt_lt
Lv_lv
Mk_mk
Mt_mt
Nb_no
Nl_nl
Pl_pl
Pt_pt
Rm_ch
Ro_ro
Ru_ru
Sk_sk
Sl_sl
Sq_al
Sr_cyrl_rs
Sr_latn_me
Sv_se
Tr_tr
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
toInt()
Returns a specific integer value for the enumeration constant.java.lang.String
toString()
Returns a display string for the enumeration value.static K_LOCALE
valueOf(int value)
Returns the enumeration constant of this type with the specified value.static K_LOCALE
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static K_LOCALE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Da_dk
public static final K_LOCALE Da_dk
-
De_de
public static final K_LOCALE De_de
-
En_us
public static final K_LOCALE En_us
-
Fi_fi
public static final K_LOCALE Fi_fi
-
Fr_fr
public static final K_LOCALE Fr_fr
-
It_it
public static final K_LOCALE It_it
-
Nl_nl
public static final K_LOCALE Nl_nl
-
Nb_no
public static final K_LOCALE Nb_no
-
Rm_ch
public static final K_LOCALE Rm_ch
-
Sq_al
public static final K_LOCALE Sq_al
-
Sv_se
public static final K_LOCALE Sv_se
-
Et_ee
public static final K_LOCALE Et_ee
-
Pt_pt
public static final K_LOCALE Pt_pt
-
Es_es
public static final K_LOCALE Es_es
-
Bg_bg
public static final K_LOCALE Bg_bg
-
Ca_es
public static final K_LOCALE Ca_es
-
Cy_gb
public static final K_LOCALE Cy_gb
-
Cs_cz
public static final K_LOCALE Cs_cz
-
Eu_es
public static final K_LOCALE Eu_es
-
Gl_es
public static final K_LOCALE Gl_es
-
El_gr
public static final K_LOCALE El_gr
-
Hr_hr
public static final K_LOCALE Hr_hr
-
Hu_hu
public static final K_LOCALE Hu_hu
-
Ga_ie
public static final K_LOCALE Ga_ie
-
Lt_lt
public static final K_LOCALE Lt_lt
-
Lb_lu
public static final K_LOCALE Lb_lu
-
Lv_lv
public static final K_LOCALE Lv_lv
-
Mk_mk
public static final K_LOCALE Mk_mk
-
Mt_mt
public static final K_LOCALE Mt_mt
-
Pl_pl
public static final K_LOCALE Pl_pl
-
Ro_ro
public static final K_LOCALE Ro_ro
-
Ru_ru
public static final K_LOCALE Ru_ru
-
Sl_sl
public static final K_LOCALE Sl_sl
-
Sk_sk
public static final K_LOCALE Sk_sk
-
Tr_tr
public static final K_LOCALE Tr_tr
-
Gd_gb
public static final K_LOCALE Gd_gb
-
Sr_cyrl_rs
public static final K_LOCALE Sr_cyrl_rs
-
Sr_latn_me
public static final K_LOCALE Sr_latn_me
-
-
Method Detail
-
values
public static K_LOCALE[] 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 (K_LOCALE c : K_LOCALE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static K_LOCALE 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
-
valueOf
public static K_LOCALE valueOf(int value)
Returns the enumeration constant of this type with the specified value.- Parameters:
value
- the value of the enumeration constant to be returned. This method is needed to serialize enumeration constants.- Returns:
- the enumeration constant with the specified value or null
-
toInt
public int toInt()
Returns a specific integer value for the enumeration constant. This method is needed to serialize enumeration constants.
-
-