Enum Class EurekaDataCenterType

java.lang.Object
java.lang.Enum<EurekaDataCenterType>
org.refcodes.rest.ext.eureka.EurekaDataCenterType
All Implemented Interfaces:
Serializable, Comparable<EurekaDataCenterType>, Constable, org.refcodes.mixin.NameAccessor

public enum EurekaDataCenterType extends Enum<EurekaDataCenterType> implements org.refcodes.mixin.NameAccessor
The data center types known by Eureka.
  • Enum Constant Details

    • MY_OWN

      public static final EurekaDataCenterType MY_OWN
      You are running on a Non-Amazon data-center.
    • AMAZON

      public static final EurekaDataCenterType AMAZON
      You are running on an Amazon data-center.
  • Method Details

    • values

      public static EurekaDataCenterType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EurekaDataCenterType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getName

      public String getName()
      Specified by:
      getName in interface org.refcodes.mixin.NameAccessor
    • toString

      public String toString()
      Overrides:
      toString in class Enum<EurekaDataCenterType>
    • fromName

      public static EurekaDataCenterType fromName(String aName)
      Resolves an EurekaDataCenterType from the given name case insensitive.
      Parameters:
      aName - The name for which to resolve case insensitive the EurekaDataCenterType.
      Returns:
      The according EurekaDataCenterType or null if the name was not resolvable.