public static enum Record.MessageType extends Enum<Record.MessageType>
Record
's message type; can be either inboud or outboundModifier and Type | Method and Description |
---|---|
static Record.MessageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Record.MessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Record.MessageType INBOUND
public static final Record.MessageType OUTBOUND
public static Record.MessageType[] values()
for (Record.MessageType c : Record.MessageType.values()) System.out.println(c);
public static Record.MessageType 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 © 2017 JBoss by Red Hat. All rights reserved.