public enum MessageCode2XX extends Enum<MessageCode2XX>
| Enum Constant and Description |
|---|
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static MessageCode2XX |
fromValue(String text) |
String |
toString() |
static MessageCode2XX |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageCode2XX[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageCode2XX WARNING
public static MessageCode2XX[] values()
for (MessageCode2XX c : MessageCode2XX.values()) System.out.println(c);
public static MessageCode2XX 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 String toString()
toString in class Enum<MessageCode2XX>public static MessageCode2XX fromValue(String text)
Copyright © 2020. All rights reserved.