Enum ElasticInstanceStartedAnalyticsEvent.OsType
- java.lang.Object
-
- java.lang.Enum<ElasticInstanceStartedAnalyticsEvent.OsType>
-
- com.atlassian.bamboo.event.analytics.ElasticInstanceStartedAnalyticsEvent.OsType
-
- All Implemented Interfaces:
Serializable
,Comparable<ElasticInstanceStartedAnalyticsEvent.OsType>
- Enclosing class:
- ElasticInstanceStartedAnalyticsEvent
public static enum ElasticInstanceStartedAnalyticsEvent.OsType extends Enum<ElasticInstanceStartedAnalyticsEvent.OsType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AMAZON_LINUX
OTHER
UBUNTU
WINDOWS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static @NotNull ElasticInstanceStartedAnalyticsEvent.OsType
fromString(String os)
String
getOs()
static ElasticInstanceStartedAnalyticsEvent.OsType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ElasticInstanceStartedAnalyticsEvent.OsType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WINDOWS
public static final ElasticInstanceStartedAnalyticsEvent.OsType WINDOWS
-
UBUNTU
public static final ElasticInstanceStartedAnalyticsEvent.OsType UBUNTU
-
AMAZON_LINUX
public static final ElasticInstanceStartedAnalyticsEvent.OsType AMAZON_LINUX
-
OTHER
public static final ElasticInstanceStartedAnalyticsEvent.OsType OTHER
-
-
Method Detail
-
values
public static ElasticInstanceStartedAnalyticsEvent.OsType[] 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 (ElasticInstanceStartedAnalyticsEvent.OsType c : ElasticInstanceStartedAnalyticsEvent.OsType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ElasticInstanceStartedAnalyticsEvent.OsType 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
-
getOs
public String getOs()
-
fromString
@NotNull public static @NotNull ElasticInstanceStartedAnalyticsEvent.OsType fromString(String os)
-
-