public static enum RestConfiguration.RestHostNameResolver extends Enum<RestConfiguration.RestHostNameResolver>
Enum Constant and Description |
---|
allLocalIp |
localHostName |
localIp |
Modifier and Type | Method and Description |
---|---|
static RestConfiguration.RestHostNameResolver |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestConfiguration.RestHostNameResolver[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestConfiguration.RestHostNameResolver allLocalIp
public static final RestConfiguration.RestHostNameResolver localIp
public static final RestConfiguration.RestHostNameResolver localHostName
public static RestConfiguration.RestHostNameResolver[] values()
for (RestConfiguration.RestHostNameResolver c : RestConfiguration.RestHostNameResolver.values()) System.out.println(c);
public static RestConfiguration.RestHostNameResolver 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 nullApache Camel