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(Object 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 static ServiceEntryResolution fromValue(Object value)
Copyright © 2015–2022 Red Hat. All rights reserved.