public enum KeySource extends Enum<KeySource>
| Enum Constant and Description |
|---|
MICROSOFT_BATCH
Batch creates and manages the encryption keys used to protect the account data.
|
MICROSOFT_KEY_VAULT
The encryption keys used to protect the account data are stored in an external key vault.
|
| Modifier and Type | Method and Description |
|---|---|
static KeySource |
fromString(String value)
Parses a serialized value to a KeySource instance.
|
String |
toString() |
static KeySource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeySource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeySource MICROSOFT_BATCH
public static final KeySource MICROSOFT_KEY_VAULT
public static KeySource[] values()
for (KeySource c : KeySource.values()) System.out.println(c);
public static KeySource 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 static KeySource fromString(String value)
value - the serialized value to parse./**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/