public enum Messages extends Enum<Messages>
Enum Constant and Description |
---|
FORMAT_ERROR_FOR_MAP |
ILLEGAL_BOOLEAN |
ILLEGAL_CHAR |
ILLEGAL_FIELD_SIGNATURE |
ILLEGAL_IP_ADDRESS |
ILLEGAL_LIST |
ILLEGAL_MAC_ADDRESS |
ILLEGAL_METHOD_SIGNATURE |
ILLEGAL_OPERAND |
ILLEGAL_UUID |
MAP_HAS_NO_KEY |
Modifier and Type | Method and Description |
---|---|
String |
format(Object... args) |
static Messages |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Messages[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Messages ILLEGAL_OPERAND
public static final Messages ILLEGAL_CHAR
public static final Messages ILLEGAL_BOOLEAN
public static final Messages ILLEGAL_METHOD_SIGNATURE
public static final Messages ILLEGAL_FIELD_SIGNATURE
public static final Messages ILLEGAL_LIST
public static final Messages FORMAT_ERROR_FOR_MAP
public static final Messages MAP_HAS_NO_KEY
public static final Messages ILLEGAL_IP_ADDRESS
public static final Messages ILLEGAL_MAC_ADDRESS
public static final Messages ILLEGAL_UUID
public static Messages[] values()
for (Messages c : Messages.values()) System.out.println(c);
public static Messages 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 nullCopyright © 2003–2014 Kohsuke Kawaguchi. All rights reserved.