public enum MessageExoType extends java.lang.Enum<MessageExoType>
Enum Constant and Description |
---|
FROM_LEFT |
FROM_RIGHT |
TO_LEFT |
TO_RIGHT |
Modifier and Type | Method and Description |
---|---|
int |
getDirection() |
boolean |
isLeftBorder() |
boolean |
isRightBorder() |
MessageExoType |
reverse() |
static MessageExoType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageExoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageExoType FROM_LEFT
public static final MessageExoType TO_LEFT
public static final MessageExoType FROM_RIGHT
public static final MessageExoType TO_RIGHT
public static MessageExoType[] values()
for (MessageExoType c : MessageExoType.values()) System.out.println(c);
public static MessageExoType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getDirection()
public boolean isLeftBorder()
public boolean isRightBorder()
public MessageExoType reverse()