public enum ServiceEntryResolution extends Enum<ServiceEntryResolution>
| Enum Constant and Description |
|---|
DNS |
DNS_ROUND_ROBIN |
NONE |
STATIC |
| Modifier and Type | Method and Description |
|---|---|
static ServiceEntryResolution |
fromValue(String value) |
String |
toString() |
String |
value() |
static ServiceEntryResolution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceEntryResolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceEntryResolution NONE
public static final ServiceEntryResolution STATIC
public static final ServiceEntryResolution DNS
public static final ServiceEntryResolution DNS_ROUND_ROBIN
public static ServiceEntryResolution[] values()
for (ServiceEntryResolution c : ServiceEntryResolution.values()) System.out.println(c);
public static ServiceEntryResolution valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<ServiceEntryResolution>public String value()
public static ServiceEntryResolution fromValue(String value)
Copyright © 2015–2020 Red Hat. All rights reserved.