public enum AuthMethod extends Enum<AuthMethod>
| Enum Constant and Description |
|---|
AuthMethodAthens |
AuthMethodNone |
AuthMethodYcaV1 |
| Modifier and Type | Field and Description |
|---|---|
static int |
AuthMethodAthens_VALUE |
static int |
AuthMethodNone_VALUE |
static int |
AuthMethodYcaV1_VALUE |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static AuthMethod |
valueOf(int n) |
static AuthMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthMethod AuthMethodNone
public static final AuthMethod AuthMethodYcaV1
public static final AuthMethod AuthMethodAthens
public static final int AuthMethodNone_VALUE
public static final int AuthMethodYcaV1_VALUE
public static final int AuthMethodAthens_VALUE
public static AuthMethod[] values()
for (AuthMethod c : AuthMethod.values()) System.out.println(c);
public static AuthMethod 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 int getValue()
public static AuthMethod valueOf(int n)
Copyright © 2017–2022 Apache Software Foundation. All rights reserved.