Enum Unit
- java.lang.Object
-
- java.lang.Enum<Unit>
-
- software.amazon.awssdk.services.emr.model.Unit
-
- All Implemented Interfaces:
Serializable,Comparable<Unit>
@Generated("software.amazon.awssdk:codegen") public enum Unit extends Enum<Unit>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UnitfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<Unit>knownValues()StringtoString()static UnitvalueOf(String name)Returns the enum constant of this type with the specified name.static Unit[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Unit NONE
-
SECONDS
public static final Unit SECONDS
-
MICRO_SECONDS
public static final Unit MICRO_SECONDS
-
MILLI_SECONDS
public static final Unit MILLI_SECONDS
-
BYTES
public static final Unit BYTES
-
KILO_BYTES
public static final Unit KILO_BYTES
-
MEGA_BYTES
public static final Unit MEGA_BYTES
-
GIGA_BYTES
public static final Unit GIGA_BYTES
-
TERA_BYTES
public static final Unit TERA_BYTES
-
BITS
public static final Unit BITS
-
KILO_BITS
public static final Unit KILO_BITS
-
MEGA_BITS
public static final Unit MEGA_BITS
-
GIGA_BITS
public static final Unit GIGA_BITS
-
TERA_BITS
public static final Unit TERA_BITS
-
PERCENT
public static final Unit PERCENT
-
COUNT
public static final Unit COUNT
-
BYTES_PER_SECOND
public static final Unit BYTES_PER_SECOND
-
KILO_BYTES_PER_SECOND
public static final Unit KILO_BYTES_PER_SECOND
-
MEGA_BYTES_PER_SECOND
public static final Unit MEGA_BYTES_PER_SECOND
-
GIGA_BYTES_PER_SECOND
public static final Unit GIGA_BYTES_PER_SECOND
-
TERA_BYTES_PER_SECOND
public static final Unit TERA_BYTES_PER_SECOND
-
BITS_PER_SECOND
public static final Unit BITS_PER_SECOND
-
KILO_BITS_PER_SECOND
public static final Unit KILO_BITS_PER_SECOND
-
MEGA_BITS_PER_SECOND
public static final Unit MEGA_BITS_PER_SECOND
-
GIGA_BITS_PER_SECOND
public static final Unit GIGA_BITS_PER_SECOND
-
TERA_BITS_PER_SECOND
public static final Unit TERA_BITS_PER_SECOND
-
COUNT_PER_SECOND
public static final Unit COUNT_PER_SECOND
-
UNKNOWN_TO_SDK_VERSION
public static final Unit UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static Unit[] 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 (Unit c : Unit.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Unit valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromValue
public static Unit fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- Unit corresponding to the value
-
-