Package jisa.devices.temperature
Enum ArroyoTEC.SensorType
- java.lang.Object
-
- java.lang.Enum<ArroyoTEC.SensorType>
-
- jisa.devices.temperature.ArroyoTEC.SensorType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ArroyoTEC.SensorType>
- Enclosing class:
- ArroyoTEC
public static enum ArroyoTEC.SensorType extends java.lang.Enum<ArroyoTEC.SensorType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AD590
DISABLED
LM335
RTD
RTD_4_WIRE
THERMISTOR_100uA
THERMISTOR_10uA
THERMISTOR_1mA
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ArroyoTEC.SensorType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ArroyoTEC.SensorType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLED
public static final ArroyoTEC.SensorType DISABLED
-
THERMISTOR_100uA
public static final ArroyoTEC.SensorType THERMISTOR_100uA
-
THERMISTOR_10uA
public static final ArroyoTEC.SensorType THERMISTOR_10uA
-
LM335
public static final ArroyoTEC.SensorType LM335
-
AD590
public static final ArroyoTEC.SensorType AD590
-
RTD
public static final ArroyoTEC.SensorType RTD
-
RTD_4_WIRE
public static final ArroyoTEC.SensorType RTD_4_WIRE
-
THERMISTOR_1mA
public static final ArroyoTEC.SensorType THERMISTOR_1mA
-
-
Method Detail
-
values
public static ArroyoTEC.SensorType[] 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 (ArroyoTEC.SensorType c : ArroyoTEC.SensorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArroyoTEC.SensorType 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
-
-