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