public enum MeasureSensivity extends Enum<MeasureSensivity>
| Modifier and Type | Method and Description |
|---|---|
static MeasureSensivity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MeasureSensivity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeasureSensivity PARAM
public static final MeasureSensivity RESULT
public static MeasureSensivity[] values()
for (MeasureSensivity c : MeasureSensivity.values()) System.out.println(c);
public static MeasureSensivity valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 1999–2017 The Apache Software Foundation. All rights reserved.