public enum ConflictState extends Enum<ConflictState>
| Enum Constant and Description |
|---|
CONFLICT_CONTENT_DIFFERENT |
CONFLICT_CONTENT_EQUAL |
NO_CONFLICT |
| Modifier and Type | Method and Description |
|---|---|
String |
getHint() |
static ConflictState |
max(ConflictState... states) |
String |
toString() |
static ConflictState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConflictState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConflictState NO_CONFLICT
public static final ConflictState CONFLICT_CONTENT_EQUAL
public static final ConflictState CONFLICT_CONTENT_DIFFERENT
public static ConflictState[] values()
for (ConflictState c : ConflictState.values()) System.out.println(c);
public static ConflictState 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 getHint()
public static ConflictState max(ConflictState... states)
public String toString()
toString in class Enum<ConflictState>Copyright © 2015. All rights reserved.