public static enum FilePasswordProvider.ResourceDecodeResult extends java.lang.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 java.util.Set<FilePasswordProvider.ResourceDecodeResult> |
VALUES |
| Modifier and Type | Method and Description |
|---|---|
static FilePasswordProvider.ResourceDecodeResult |
valueOf(java.lang.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 java.util.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null