public enum KeyFileFormat extends Enum<KeyFileFormat>
KeyFileFormat.| Enum Constant and Description |
|---|
DER
The constant for the file format DER.
|
P7B
The constant for the file format P7B.
|
PEM
The constant for the file format PEM.
|
| Modifier and Type | Method and Description |
|---|---|
static KeyFileFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyFileFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyFileFormat DER
public static final KeyFileFormat PEM
public static final KeyFileFormat P7B
public static KeyFileFormat[] values()
for (KeyFileFormat c : KeyFileFormat.values()) System.out.println(c);
public static KeyFileFormat 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 © 2015–2018 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.