public static enum CursorJoiner.Result extends Enum<CursorJoiner.Result>
Enum Constant and Description |
---|
BOTH
The rows pointed to by both cursors are the same
|
LEFT
The row currently pointed to by the right cursor is unique
|
RIGHT
The row currently pointed to by the left cursor is unique
|
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 RIGHT
public static final CursorJoiner.Result LEFT
public static final CursorJoiner.Result BOTH
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 null