Package io.featurehub.sse.model
Enum StrategyAttributeDeviceName
- java.lang.Object
-
- java.lang.Enum<StrategyAttributeDeviceName>
-
- io.featurehub.sse.model.StrategyAttributeDeviceName
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<StrategyAttributeDeviceName>
public enum StrategyAttributeDeviceName extends java.lang.Enum<StrategyAttributeDeviceName>
Gets or Sets StrategyAttributeDeviceName
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StrategyAttributeDeviceNamecopy()static StrategyAttributeDeviceNamefromValue(java.lang.String text)java.lang.StringgetValue()java.lang.StringtoString()static StrategyAttributeDeviceNamevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static StrategyAttributeDeviceName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BROWSER
public static final StrategyAttributeDeviceName BROWSER
-
MOBILE
public static final StrategyAttributeDeviceName MOBILE
-
DESKTOP
public static final StrategyAttributeDeviceName DESKTOP
-
SERVER
public static final StrategyAttributeDeviceName SERVER
-
WATCH
public static final StrategyAttributeDeviceName WATCH
-
EMBEDDED
public static final StrategyAttributeDeviceName EMBEDDED
-
-
Method Detail
-
values
public static StrategyAttributeDeviceName[] 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 (StrategyAttributeDeviceName c : StrategyAttributeDeviceName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StrategyAttributeDeviceName 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
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<StrategyAttributeDeviceName>
-
copy
public StrategyAttributeDeviceName copy()
-
fromValue
public static StrategyAttributeDeviceName fromValue(java.lang.String text)
-
-