public enum ModeType extends Enum<ModeType>
| Modifier and Type | Method and Description |
|---|---|
static ModeType |
fromValue(String v) |
String |
value() |
static ModeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModeType FORWARD
public static final ModeType DOUBLE
public static final ModeType POLICY
public static ModeType[] values()
for (ModeType c : ModeType.values()) System.out.println(c);
public static ModeType 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 value()
Copyright © 2017–2020 Eclipse Foundation. All rights reserved.