Package jisa.devices.smu
Enum Agilent4156C.HPSMUCurrentRanges
- java.lang.Object
-
- java.lang.Enum<Agilent4156C.HPSMUCurrentRanges>
-
- jisa.devices.smu.Agilent4156C.HPSMUCurrentRanges
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Agilent4156C.HPSMUCurrentRanges>
,AgilentSPA.Range
- Enclosing class:
- Agilent4156C
protected static enum Agilent4156C.HPSMUCurrentRanges extends java.lang.Enum<Agilent4156C.HPSMUCurrentRanges> implements AgilentSPA.Range
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HPSMU_1_A
HPSMU_1_mA
HPSMU_1_nA
HPSMU_1_uA
HPSMU_10_mA
HPSMU_10_nA
HPSMU_10_uA
HPSMU_100_mA
HPSMU_100_nA
HPSMU_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.HPSMUCurrentRanges
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Agilent4156C.HPSMUCurrentRanges[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HPSMU_1_nA
public static final Agilent4156C.HPSMUCurrentRanges HPSMU_1_nA
-
HPSMU_10_nA
public static final Agilent4156C.HPSMUCurrentRanges HPSMU_10_nA
-
HPSMU_100_nA
public static final Agilent4156C.HPSMUCurrentRanges HPSMU_100_nA
-
HPSMU_1_uA
public static final Agilent4156C.HPSMUCurrentRanges HPSMU_1_uA
-
HPSMU_10_uA
public static final Agilent4156C.HPSMUCurrentRanges HPSMU_10_uA
-
HPSMU_100_uA
public static final Agilent4156C.HPSMUCurrentRanges HPSMU_100_uA
-
HPSMU_1_mA
public static final Agilent4156C.HPSMUCurrentRanges HPSMU_1_mA
-
HPSMU_10_mA
public static final Agilent4156C.HPSMUCurrentRanges HPSMU_10_mA
-
HPSMU_100_mA
public static final Agilent4156C.HPSMUCurrentRanges HPSMU_100_mA
-
HPSMU_1_A
public static final Agilent4156C.HPSMUCurrentRanges HPSMU_1_A
-
-
Method Detail
-
values
public static Agilent4156C.HPSMUCurrentRanges[] 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.HPSMUCurrentRanges c : Agilent4156C.HPSMUCurrentRanges.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.HPSMUCurrentRanges 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
-
-