Enum Class AddressType

java.lang.Object
java.lang.Enum<AddressType>
org.infinispan.server.configuration.AddressType
All Implemented Interfaces:
Serializable, Comparable<AddressType>, Constable

public enum AddressType extends Enum<AddressType>
Since:
10.0
  • Enum Constant Details

    • ANY_ADDRESS

      public static final AddressType ANY_ADDRESS
    • INET_ADDRESS

      public static final AddressType INET_ADDRESS
    • GLOBAL

      public static final AddressType GLOBAL
    • LOOPBACK

      public static final AddressType LOOPBACK
    • NON_LOOPBACK

      public static final AddressType NON_LOOPBACK
    • SITE_LOCAL

      public static final AddressType SITE_LOCAL
    • MATCH_INTERFACE

      public static final AddressType MATCH_INTERFACE
    • MATCH_ADDRESS

      public static final AddressType MATCH_ADDRESS
    • MATCH_HOST

      public static final AddressType MATCH_HOST
  • Method Details

    • values

      public static AddressType[] 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 AddressType 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
    • hasValue

      public boolean hasValue()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<AddressType>