Package jisa.devices.smu
Enum Agilent4156C.SMUCurrentRanges
- java.lang.Object
-
- java.lang.Enum<Agilent4156C.SMUCurrentRanges>
-
- jisa.devices.smu.Agilent4156C.SMUCurrentRanges
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Agilent4156C.SMUCurrentRanges>
,AgilentSPA.Range
- Enclosing class:
- Agilent4156C
protected static enum Agilent4156C.SMUCurrentRanges extends java.lang.Enum<Agilent4156C.SMUCurrentRanges> implements AgilentSPA.Range
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SMU_1_mA
SMU_1_nA
SMU_1_uA
SMU_10_mA
SMU_10_nA
SMU_10_pA
SMU_10_uA
SMU_100_mA
SMU_100_nA
SMU_100_pA
SMU_100_uA
-
Field Summary
-
Fields inherited from interface jisa.devices.smu.AgilentSPA.Range
AUTO_RANGING
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getCompliance()
double
getRange()
int
toInt()
static Agilent4156C.SMUCurrentRanges
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Agilent4156C.SMUCurrentRanges[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SMU_10_pA
public static final Agilent4156C.SMUCurrentRanges SMU_10_pA
-
SMU_100_pA
public static final Agilent4156C.SMUCurrentRanges SMU_100_pA
-
SMU_1_nA
public static final Agilent4156C.SMUCurrentRanges SMU_1_nA
-
SMU_10_nA
public static final Agilent4156C.SMUCurrentRanges SMU_10_nA
-
SMU_100_nA
public static final Agilent4156C.SMUCurrentRanges SMU_100_nA
-
SMU_1_uA
public static final Agilent4156C.SMUCurrentRanges SMU_1_uA
-
SMU_10_uA
public static final Agilent4156C.SMUCurrentRanges SMU_10_uA
-
SMU_100_uA
public static final Agilent4156C.SMUCurrentRanges SMU_100_uA
-
SMU_1_mA
public static final Agilent4156C.SMUCurrentRanges SMU_1_mA
-
SMU_10_mA
public static final Agilent4156C.SMUCurrentRanges SMU_10_mA
-
SMU_100_mA
public static final Agilent4156C.SMUCurrentRanges SMU_100_mA
-
-
Method Detail
-
values
public static Agilent4156C.SMUCurrentRanges[] 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 (Agilent4156C.SMUCurrentRanges c : Agilent4156C.SMUCurrentRanges.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Agilent4156C.SMUCurrentRanges 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
-
toInt
public int toInt()
- Specified by:
toInt
in interfaceAgilentSPA.Range
-
getRange
public double getRange()
- Specified by:
getRange
in interfaceAgilentSPA.Range
-
getCompliance
public double getCompliance()
- Specified by:
getCompliance
in interfaceAgilentSPA.Range
-
-