public enum AuthenticationTransformConstant extends Enum<AuthenticationTransformConstant> implements com.github.davidmoten.odata.client.Enum
| Enum Constant and Description |
|---|
AES128GCM |
AES192GCM |
AES256GCM |
MD5_96 |
SHA_256_128 |
SHA1_96 |
| Modifier and Type | Method and Description |
|---|---|
String |
enumName() |
String |
enumValue() |
static AuthenticationTransformConstant |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationTransformConstant[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationTransformConstant MD5_96
public static final AuthenticationTransformConstant SHA1_96
public static final AuthenticationTransformConstant SHA_256_128
public static final AuthenticationTransformConstant AES128GCM
public static final AuthenticationTransformConstant AES192GCM
public static final AuthenticationTransformConstant AES256GCM
public static AuthenticationTransformConstant[] values()
for (AuthenticationTransformConstant c : AuthenticationTransformConstant.values()) System.out.println(c);
public static AuthenticationTransformConstant 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 enumName()
enumName in interface com.github.davidmoten.odata.client.Enumpublic String enumValue()
enumValue in interface com.github.davidmoten.odata.client.EnumCopyright © 2018–2020. All rights reserved.