Package classes
Enum Object_Tag.Other_RatingLevel
- java.lang.Object
-
- java.lang.Enum<Object_Tag.Other_RatingLevel>
-
- classes.Object_Tag.Other_RatingLevel
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Object_Tag.Other_RatingLevel>
- Enclosing class:
- Object_Tag
public static enum Object_Tag.Other_RatingLevel extends java.lang.Enum<Object_Tag.Other_RatingLevel>
The degree of appeal for a product as identified by aObject_Tag.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Object_Tag.Other_RatingLevelgetRatingLevelBasedOffTagValue(java.lang.String value)java.lang.StringgetValue()static Object_Tag.Other_RatingLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Object_Tag.Other_RatingLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOVE
public static final Object_Tag.Other_RatingLevel LOVE
-
LIKE
public static final Object_Tag.Other_RatingLevel LIKE
-
SOSO
public static final Object_Tag.Other_RatingLevel SOSO
-
DISLIKE
public static final Object_Tag.Other_RatingLevel DISLIKE
-
NONE
public static final Object_Tag.Other_RatingLevel NONE
-
-
Method Detail
-
values
public static Object_Tag.Other_RatingLevel[] 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 (Object_Tag.Other_RatingLevel c : Object_Tag.Other_RatingLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Object_Tag.Other_RatingLevel valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getRatingLevelBasedOffTagValue
public static Object_Tag.Other_RatingLevel getRatingLevelBasedOffTagValue(java.lang.String value)
-
getValue
public java.lang.String getValue()
-
-