public static enum ClientBuilder.AccessType extends Enum<ClientBuilder.AccessType>
Enum Constant and Description |
---|
BEARER_ONLY |
CONFIDENTIAL |
PUBLIC |
Modifier and Type | Method and Description |
---|---|
static ClientBuilder.AccessType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientBuilder.AccessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientBuilder.AccessType BEARER_ONLY
public static final ClientBuilder.AccessType PUBLIC
public static final ClientBuilder.AccessType CONFIDENTIAL
public static ClientBuilder.AccessType[] values()
for (ClientBuilder.AccessType c : ClientBuilder.AccessType.values()) System.out.println(c);
public static ClientBuilder.AccessType 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 nullCopyright © 2021 JBoss by Red Hat. All rights reserved.