com.arm.mbed.cloud.sdk.devices.model.DeviceDeployedState Maven / Gradle / Ivy
Show all versions of foundation-models Show documentation
// This file was generated by the Pelion SDK foundation code generator.
// This is an autogenerated class. Do not modify its content as modifications will be lost at next code generation.
package com.arm.mbed.cloud.sdk.devices.model;
import com.arm.mbed.cloud.sdk.annotations.DefaultValue;
import com.arm.mbed.cloud.sdk.annotations.Internal;
import com.arm.mbed.cloud.sdk.annotations.Preamble;
import com.arm.mbed.cloud.sdk.annotations.Required;
import com.arm.mbed.cloud.sdk.common.SdkEnum;
/**
* Device deployed state.
*/
@Preamble(description = "Device deployed state.")
public enum DeviceDeployedState implements SdkEnum {
DEVELOPMENT("development"),
PRODUCTION("production"),
UNKNOWN_ENUM(SDK_UNKNOWN_ENUM_VALUE);
/**
* Serialisation Id.
*/
private static final long serialVersionUID = -161701977045229L;
/**
* string representation.
*/
@Internal
@Required
@DefaultValue("DEVELOPMENT")
private final String string;
/**
* Internal constructor.
*
* @param string
* string representation.
*/
@Internal
DeviceDeployedState(@DefaultValue("DEVELOPMENT") String string) {
this.string = string;
}
/**
* Gets string representation.
*
* @return string
*/
@Override
@Internal
public String getString() {
return string;
}
/**
* toString.
*
*
*
* @see java.lang.Enum#toString()
* @return the string representation of this value
*/
@Override
public String toString() {
return getString();
}
/**
* States whether it is the default value.
*
*
*
* @see SdkEnum#isDefault()
* @return true if this is the default value; false otherwise
*/
@Override
public boolean isDefault() {
return this == getDefault();
}
/**
* States whether the value is unknown and an error happened during parsing.
*
*
*
* @see SdkEnum#isUnknownValue()
* @return true if this is an unknown value; false otherwise
*/
@Override
public boolean isUnknownValue() {
return this == getUnknownEnum();
}
/**
* Gets default device deployed state.
*
* @return default device deployed state
*/
public static DeviceDeployedState getDefault() {
return DEVELOPMENT;
}
/**
* Gets unknown device deployed state value.
*
* @return unknown device deployed state
*/
public static DeviceDeployedState getUnknownEnum() {
return UNKNOWN_ENUM;
}
/**
* Gets device deployed state from its string representation.
*
* @param value
* string.
* @return corresponding device deployed state or default device deployed state if not recognised.
*/
public static DeviceDeployedState getValue(String value) {
if (value == null) {
return getDefault();
}
final String trimmedValue = value.trim();
for (final DeviceDeployedState option : values()) {
if (option.getString().equalsIgnoreCase(trimmedValue)) {
return option;
}
}
return getDefault();
}
/**
* Merges two states.
*
*
*
* @see SdkEnum#merge(SdkEnum, SdkEnum)
* @param
* type of an sdk enum
* @param obj1
* a device deployed state.
* @param obj2
* a device deployed state.
* @return the merged enumerator
*/
@Override
public T merge(T obj1, T obj2) {
if (obj1 == null) {
return obj2;
}
if (obj2 == null) {
return obj1;
}
if (obj1.isDefault()) {
return obj2;
}
if (obj2.isDefault()) {
return obj1;
}
return obj2;
}
}