Package net.sf.okapi.common.resource
Enum TextFragment.CompareMode
- java.lang.Object
-
- java.lang.Enum<TextFragment.CompareMode>
-
- net.sf.okapi.common.resource.TextFragment.CompareMode
-
- All Implemented Interfaces:
Serializable,Comparable<TextFragment.CompareMode>
- Enclosing class:
- TextFragment
public static enum TextFragment.CompareMode extends Enum<TextFragment.CompareMode>
Enum constants to specify how compareTo should work.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CODE_ALLCompare all members of the codes.CODE_DATA_ONLYCompare only the data member of the codes.IGNORE_CODEIgnore difference in codes.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TextFragment.CompareModevalueOf(String name)Returns the enum constant of this type with the specified name.static TextFragment.CompareMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IGNORE_CODE
public static final TextFragment.CompareMode IGNORE_CODE
Ignore difference in codes. Markers are still considered.
-
CODE_DATA_ONLY
public static final TextFragment.CompareMode CODE_DATA_ONLY
Compare only the data member of the codes. Two codes that have the same data but different ids, for example, are considered equal.
-
CODE_ALL
public static final TextFragment.CompareMode CODE_ALL
Compare all members of the codes.
-
-
Method Detail
-
values
public static TextFragment.CompareMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TextFragment.CompareMode c : TextFragment.CompareMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TextFragment.CompareMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-