Enum Tags.TagVersionInfo.MatchResult.Style
- java.lang.Object
-
- java.lang.Enum<Tags.TagVersionInfo.MatchResult.Style>
-
- edu.cornell.mannlib.vitro.webapp.web.templatemodels.Tags.TagVersionInfo.MatchResult.Style
-
- All Implemented Interfaces:
Serializable,Comparable<Tags.TagVersionInfo.MatchResult.Style>
- Enclosing class:
- Tags.TagVersionInfo.MatchResult
public static enum Tags.TagVersionInfo.MatchResult.Style extends Enum<Tags.TagVersionInfo.MatchResult.Style>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOUBLE_QUOTESNO_QUOTESSINGLE_QUOTES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Tags.TagVersionInfo.MatchResult.StylevalueOf(String name)Returns the enum constant of this type with the specified name.static Tags.TagVersionInfo.MatchResult.Style[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLE_QUOTES
public static final Tags.TagVersionInfo.MatchResult.Style SINGLE_QUOTES
-
DOUBLE_QUOTES
public static final Tags.TagVersionInfo.MatchResult.Style DOUBLE_QUOTES
-
NO_QUOTES
public static final Tags.TagVersionInfo.MatchResult.Style NO_QUOTES
-
-
Method Detail
-
values
public static Tags.TagVersionInfo.MatchResult.Style[] 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 (Tags.TagVersionInfo.MatchResult.Style c : Tags.TagVersionInfo.MatchResult.Style.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Tags.TagVersionInfo.MatchResult.Style 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
-
-