public enum JetProjectionKind extends java.lang.Enum<JetProjectionKind>
| Modifier and Type | Method and Description |
|---|---|
static JetProjectionKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JetProjectionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JetProjectionKind IN
public static final JetProjectionKind OUT
public static final JetProjectionKind STAR
public static final JetProjectionKind NONE
public static JetProjectionKind[] values()
for (JetProjectionKind c : JetProjectionKind.values()) System.out.println(c);
public static JetProjectionKind 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 null