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