Package org.ehrbase.webtemplate.model
Enum WebTemplateComparisonSymbol
- java.lang.Object
-
- java.lang.Enum<WebTemplateComparisonSymbol>
-
- org.ehrbase.webtemplate.model.WebTemplateComparisonSymbol
-
- All Implemented Interfaces:
Serializable,Comparable<WebTemplateComparisonSymbol>
public enum WebTemplateComparisonSymbol extends Enum<WebTemplateComparisonSymbol>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetSymbol()static WebTemplateComparisonSymbolvalueOf(String name)Returns the enum constant of this type with the specified name.static WebTemplateComparisonSymbol[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GT_EQ
public static final WebTemplateComparisonSymbol GT_EQ
-
GT
public static final WebTemplateComparisonSymbol GT
-
LT_EQ
public static final WebTemplateComparisonSymbol LT_EQ
-
LT
public static final WebTemplateComparisonSymbol LT
-
-
Method Detail
-
values
public static WebTemplateComparisonSymbol[] 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 (WebTemplateComparisonSymbol c : WebTemplateComparisonSymbol.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebTemplateComparisonSymbol 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
-
getSymbol
public String getSymbol()
-
-