public static enum FilePasswordProvider.ResourceDecodeResult extends Enum<FilePasswordProvider.ResourceDecodeResult>
| Enum Constant and Description |
|---|
IGNORE
Skip attempt and see if can proceed without the key
|
RETRY
Try again the decoding process - including password prompt
|
TERMINATE
Re-throw the decoding exception
|
| Modifier and Type | Field and Description |
|---|---|
static Set<FilePasswordProvider.ResourceDecodeResult> |
VALUES |
| Modifier and Type | Method and Description |
|---|---|
static FilePasswordProvider.ResourceDecodeResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilePasswordProvider.ResourceDecodeResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilePasswordProvider.ResourceDecodeResult TERMINATE
public static final FilePasswordProvider.ResourceDecodeResult RETRY
public static final FilePasswordProvider.ResourceDecodeResult IGNORE
public static final Set<FilePasswordProvider.ResourceDecodeResult> VALUES
public static FilePasswordProvider.ResourceDecodeResult[] values()
for (FilePasswordProvider.ResourceDecodeResult c : FilePasswordProvider.ResourceDecodeResult.values()) System.out.println(c);
public static FilePasswordProvider.ResourceDecodeResult 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 © 2018–2024 The Apache Software Foundation. All rights reserved.