Package net.sf.okapi.lib.xliff2.metadata
Enum MetaGroup.AppliesTo
- java.lang.Object
-
- java.lang.Enum<MetaGroup.AppliesTo>
-
- net.sf.okapi.lib.xliff2.metadata.MetaGroup.AppliesTo
-
- All Implemented Interfaces:
Serializable,Comparable<MetaGroup.AppliesTo>
- Enclosing class:
- MetaGroup
public static enum MetaGroup.AppliesTo extends Enum<MetaGroup.AppliesTo>
Types of object a meta-group can apply to.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MetaGroup.AppliesTofromString(String name)StringtoString()static MetaGroup.AppliesTovalueOf(String name)Returns the enum constant of this type with the specified name.static MetaGroup.AppliesTo[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED
public static final MetaGroup.AppliesTo UNDEFINED
The meta-group does not applies to a specific type of object.
-
SOURCE
public static final MetaGroup.AppliesTo SOURCE
The meta-group applies to the source.
-
TARGET
public static final MetaGroup.AppliesTo TARGET
The meta-group applies to the target.
-
IGNORABLE
public static final MetaGroup.AppliesTo IGNORABLE
The meta-group applies to the ignorable.
-
-
Method Detail
-
values
public static MetaGroup.AppliesTo[] 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 (MetaGroup.AppliesTo c : MetaGroup.AppliesTo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MetaGroup.AppliesTo 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<MetaGroup.AppliesTo>
-
fromString
public static MetaGroup.AppliesTo fromString(String name)
-
-