Package com.amazonaws.services.ecs.model
Enum UlimitName
- java.lang.Object
-
- java.lang.Enum<UlimitName>
-
- com.amazonaws.services.ecs.model.UlimitName
-
- All Implemented Interfaces:
Serializable
,Comparable<UlimitName>
public enum UlimitName extends Enum<UlimitName>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UlimitName
fromValue(String value)
Use this in place of valueOf.String
toString()
static UlimitName
valueOf(String name)
Returns the enum constant of this type with the specified name.static UlimitName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Core
public static final UlimitName Core
-
Cpu
public static final UlimitName Cpu
-
Data
public static final UlimitName Data
-
Fsize
public static final UlimitName Fsize
-
Locks
public static final UlimitName Locks
-
Memlock
public static final UlimitName Memlock
-
Msgqueue
public static final UlimitName Msgqueue
-
Nice
public static final UlimitName Nice
-
Nofile
public static final UlimitName Nofile
-
Nproc
public static final UlimitName Nproc
-
Rss
public static final UlimitName Rss
-
Rtprio
public static final UlimitName Rtprio
-
Rttime
public static final UlimitName Rttime
-
Sigpending
public static final UlimitName Sigpending
-
Stack
public static final UlimitName Stack
-
-
Method Detail
-
values
public static UlimitName[] 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 (UlimitName c : UlimitName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UlimitName 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<UlimitName>
-
fromValue
public static UlimitName fromValue(String value)
Use this in place of valueOf.- Parameters:
value
- real value- Returns:
- UlimitName corresponding to the value
-
-