public enum MessageLayout extends Enum<MessageLayout>
| Enum Constant and Description |
|---|
Lax |
LaxTsFirst |
LaxTsLast |
Strict |
| Modifier and Type | Method and Description |
|---|---|
static MessageLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageLayout Strict
public static final MessageLayout Lax
public static final MessageLayout LaxTsFirst
public static final MessageLayout LaxTsLast
public static MessageLayout[] values()
for (MessageLayout c : MessageLayout.values()) System.out.println(c);
public static MessageLayout 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 © 2005–2018 Oracle Corporation. All rights reserved.