public enum MessageExoType extends 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() |
static MessageExoType |
valueOf(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(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 int getDirection()
public boolean isLeftBorder()
public boolean isRightBorder()
Copyright © 2017. All rights reserved.