public static enum CursorJoiner.Result extends Enum<CursorJoiner.Result>
| Modifier and Type | Method and Description |
|---|---|
static CursorJoiner.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CursorJoiner.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CursorJoiner.Result BOTH
public static final CursorJoiner.Result LEFT
public static final CursorJoiner.Result RIGHT
public static CursorJoiner.Result[] values()
for (CursorJoiner.Result c : CursorJoiner.Result.values()) System.out.println(c);
public static CursorJoiner.Result 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 nullCopyright © 2008-2013. All Rights Reserved.