Package jisa.devices.smu
Enum Agilent4155C.HPSMUCurrentRanges
- java.lang.Object
-
- java.lang.Enum<Agilent4155C.HPSMUCurrentRanges>
-
- jisa.devices.smu.Agilent4155C.HPSMUCurrentRanges
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Agilent4155C.HPSMUCurrentRanges>,AgilentSPA.Range
- Enclosing class:
- Agilent4155C
protected static enum Agilent4155C.HPSMUCurrentRanges extends java.lang.Enum<Agilent4155C.HPSMUCurrentRanges> implements AgilentSPA.Range
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HPSMU_1_AHPSMU_1_mAHPSMU_1_nAHPSMU_1_uAHPSMU_10_mAHPSMU_10_nAHPSMU_10_uAHPSMU_100_mAHPSMU_100_nAHPSMU_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 doublegetCompliance()doublegetRange()inttoInt()static Agilent4155C.HPSMUCurrentRangesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Agilent4155C.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 Agilent4155C.HPSMUCurrentRanges HPSMU_1_nA
-
HPSMU_10_nA
public static final Agilent4155C.HPSMUCurrentRanges HPSMU_10_nA
-
HPSMU_100_nA
public static final Agilent4155C.HPSMUCurrentRanges HPSMU_100_nA
-
HPSMU_1_uA
public static final Agilent4155C.HPSMUCurrentRanges HPSMU_1_uA
-
HPSMU_10_uA
public static final Agilent4155C.HPSMUCurrentRanges HPSMU_10_uA
-
HPSMU_100_uA
public static final Agilent4155C.HPSMUCurrentRanges HPSMU_100_uA
-
HPSMU_1_mA
public static final Agilent4155C.HPSMUCurrentRanges HPSMU_1_mA
-
HPSMU_10_mA
public static final Agilent4155C.HPSMUCurrentRanges HPSMU_10_mA
-
HPSMU_100_mA
public static final Agilent4155C.HPSMUCurrentRanges HPSMU_100_mA
-
HPSMU_1_A
public static final Agilent4155C.HPSMUCurrentRanges HPSMU_1_A
-
-
Method Detail
-
values
public static Agilent4155C.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 (Agilent4155C.HPSMUCurrentRanges c : Agilent4155C.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 Agilent4155C.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:
toIntin interfaceAgilentSPA.Range
-
getRange
public double getRange()
- Specified by:
getRangein interfaceAgilentSPA.Range
-
getCompliance
public double getCompliance()
- Specified by:
getCompliancein interfaceAgilentSPA.Range
-
-