public enum RestDiscoveryMethod extends Enum<RestDiscoveryMethod>
| Enum Constant and Description | 
|---|
INTERNAL_BROWSER  | 
PROXY  | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
toString()  | 
static RestDiscoveryMethod | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static RestDiscoveryMethod[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final RestDiscoveryMethod INTERNAL_BROWSER
public static final RestDiscoveryMethod PROXY
public static RestDiscoveryMethod[] values()
for (RestDiscoveryMethod c : RestDiscoveryMethod.values()) System.out.println(c);
public static RestDiscoveryMethod 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<RestDiscoveryMethod>Copyright © 2019. All rights reserved.