Enum ReportedLifecycleState
- java.lang.Object
- 
- java.lang.Enum<ReportedLifecycleState>
- 
- software.amazon.awssdk.aws.greengrass.model.ReportedLifecycleState
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ReportedLifecycleState>,- EventStreamJsonMessage
 
 public enum ReportedLifecycleState extends Enum<ReportedLifecycleState> implements EventStreamJsonMessage 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringAPPLICATION_MODEL_TYPE
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReportedLifecycleStateget(String value)StringgetApplicationModelType()Returns the named model type.StringgetValue()static ReportedLifecycleStatevalueOf(String name)Returns the enum constant of this type with the specified name.static ReportedLifecycleState[]values()Returns an array containing the constants of this enum type, in the order they are declared.- 
Methods inherited from class java.lang.EnumcompareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 - 
Methods inherited from interface software.amazon.awssdk.eventstreamrpc.model.EventStreamJsonMessagefromJson, isVoid, postFromJson, toPayload
 
- 
 
- 
- 
- 
Enum Constant Detail- 
RUNNING@SerializedName("RUNNING") public static final ReportedLifecycleState RUNNING
 - 
ERRORED@SerializedName("ERRORED") public static final ReportedLifecycleState ERRORED
 
- 
 - 
Field Detail- 
APPLICATION_MODEL_TYPEpublic static final String APPLICATION_MODEL_TYPE - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
valuespublic static ReportedLifecycleState[] 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 (ReportedLifecycleState c : ReportedLifecycleState.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ReportedLifecycleState 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 name
- NullPointerException- if the argument is null
 
 - 
getValuepublic String getValue() 
 - 
getApplicationModelTypepublic String getApplicationModelType() Description copied from interface:EventStreamJsonMessageReturns the named model type. May be used for a header.- Specified by:
- getApplicationModelTypein interface- EventStreamJsonMessage
- Returns:
- the named model type
 
 - 
getpublic static ReportedLifecycleState get(String value) 
 
- 
 
-