Package jisa.devices.amp
Enum SR830.TimeConst
- java.lang.Object
-
- java.lang.Enum<SR830.TimeConst>
-
- jisa.devices.amp.SR830.TimeConst
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SR830.TimeConst>
,Nameable
- Enclosing class:
- SR830
public static enum SR830.TimeConst extends java.lang.Enum<SR830.TimeConst> implements Nameable
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
static SR830.TimeConst
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SR830.TimeConst[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
T_10us
public static final SR830.TimeConst T_10us
-
T_30us
public static final SR830.TimeConst T_30us
-
T_100us
public static final SR830.TimeConst T_100us
-
T_300us
public static final SR830.TimeConst T_300us
-
T_1ms
public static final SR830.TimeConst T_1ms
-
T_3ms
public static final SR830.TimeConst T_3ms
-
T_10ms
public static final SR830.TimeConst T_10ms
-
T_30ms
public static final SR830.TimeConst T_30ms
-
T_100ms
public static final SR830.TimeConst T_100ms
-
T_300ms
public static final SR830.TimeConst T_300ms
-
T_1s
public static final SR830.TimeConst T_1s
-
T_3s
public static final SR830.TimeConst T_3s
-
T_10s
public static final SR830.TimeConst T_10s
-
T_30s
public static final SR830.TimeConst T_30s
-
T_100s
public static final SR830.TimeConst T_100s
-
T_300s
public static final SR830.TimeConst T_300s
-
T_1ks
public static final SR830.TimeConst T_1ks
-
T_3ks
public static final SR830.TimeConst T_3ks
-
T_10ks
public static final SR830.TimeConst T_10ks
-
T_30ks
public static final SR830.TimeConst T_30ks
-
-
Method Detail
-
values
public static SR830.TimeConst[] 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 (SR830.TimeConst c : SR830.TimeConst.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SR830.TimeConst 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
-
-