Enum Endpoint
- java.lang.Object
-
- java.lang.Enum<Endpoint>
-
- com.floragunn.searchguard.dlic.rest.api.Endpoint
-
- All Implemented Interfaces:
Serializable,Comparable<Endpoint>
public enum Endpoint extends Enum<Endpoint>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIONGROUPSAUTHTOKENBLOCKSCACHEINTERNALUSERSLICENSEPERMISSIONSINFOROLESROLESMAPPINGSGCONFIGSYSTEMINFOTENANTS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EndpointvalueOf(String name)Returns the enum constant of this type with the specified name.static Endpoint[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIONGROUPS
public static final Endpoint ACTIONGROUPS
-
CACHE
public static final Endpoint CACHE
-
SGCONFIG
public static final Endpoint SGCONFIG
-
LICENSE
public static final Endpoint LICENSE
-
ROLES
public static final Endpoint ROLES
-
ROLESMAPPING
public static final Endpoint ROLESMAPPING
-
INTERNALUSERS
public static final Endpoint INTERNALUSERS
-
SYSTEMINFO
public static final Endpoint SYSTEMINFO
-
PERMISSIONSINFO
public static final Endpoint PERMISSIONSINFO
-
AUTHTOKEN
public static final Endpoint AUTHTOKEN
-
TENANTS
public static final Endpoint TENANTS
-
BLOCKS
public static final Endpoint BLOCKS
-
-
Method Detail
-
values
public static Endpoint[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Endpoint c : Endpoint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Endpoint valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-