public enum MessageLocale extends Enum<MessageLocale>
Modifier and Type | Method and Description |
---|---|
static MessageLocale |
of(String name) |
static MessageLocale |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageLocale[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageLocale FORCED
public static final MessageLocale CN
public static final MessageLocale ID
public static final MessageLocale US
public static final MessageLocale DEFAULT
public static MessageLocale[] values()
for (MessageLocale c : MessageLocale.values()) System.out.println(c);
public static MessageLocale valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static MessageLocale of(String name)
Copyright © 2018. All rights reserved.