Package com.seam.api.types
Enum Manufacturer
- java.lang.Object
-
- java.lang.Enum<Manufacturer>
-
- com.seam.api.types.Manufacturer
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Manufacturer>
public enum Manufacturer extends java.lang.Enum<Manufacturer>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static ManufacturervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Manufacturer[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AKUVOX
public static final Manufacturer AKUVOX
-
AUGUST
public static final Manufacturer AUGUST
-
BRIVO
public static final Manufacturer BRIVO
-
BUTTERFLYMX
public static final Manufacturer BUTTERFLYMX
-
DOORKING
public static final Manufacturer DOORKING
-
GENIE
public static final Manufacturer GENIE
-
IGLOO
public static final Manufacturer IGLOO
-
KEYWE
public static final Manufacturer KEYWE
-
KWIKSET
public static final Manufacturer KWIKSET
-
LINEAR
public static final Manufacturer LINEAR
-
LOCKLY
public static final Manufacturer LOCKLY
-
NUKI
public static final Manufacturer NUKI
-
PHILIA
public static final Manufacturer PHILIA
-
SALTO
public static final Manufacturer SALTO
-
SAMSUNG
public static final Manufacturer SAMSUNG
-
SCHLAGE
public static final Manufacturer SCHLAGE
-
SEAM
public static final Manufacturer SEAM
-
UNKNOWN
public static final Manufacturer UNKNOWN
-
YALE
public static final Manufacturer YALE
-
MINUT
public static final Manufacturer MINUT
-
TWO_N
public static final Manufacturer TWO_N
-
TTLOCK
public static final Manufacturer TTLOCK
-
NEST
public static final Manufacturer NEST
-
IGLOOHOME
public static final Manufacturer IGLOOHOME
-
ECOBEE
public static final Manufacturer ECOBEE
-
HUBITAT
public static final Manufacturer HUBITAT
-
-
Method Detail
-
values
public static Manufacturer[] 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 (Manufacturer c : Manufacturer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Manufacturer 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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<Manufacturer>
-
-