public enum EncryptionMethod extends Enum<EncryptionMethod>
Enum Constant and Description |
---|
MD5_128AES |
MD5_192AES |
MD5_256AES |
MD5_DES |
MD5_RC2 |
PGP |
PGP_ASCII_ARMOR |
SHA_128AES |
SHA_128RC2 |
SHA_128RC4 |
SHA_192AES |
SHA_256AES |
SHA_2KEYTRIPLEDES |
SHA_3KEYTRIPLEDES |
SHA_40RC2 |
SHA_40RC4 |
SHA_TWOFISH |
SHA1_DES |
SHA1_RC2 |
SHA256_128AES |
SHA256_192AES |
SHA256_256AES |
Modifier and Type | Field and Description |
---|---|
private String |
algorithm |
private String |
provider |
private boolean |
unlimitedStrength |
Modifier and Type | Method and Description |
---|---|
String |
getAlgorithm() |
String |
getProvider() |
boolean |
isUnlimitedStrength() |
String |
toString() |
static EncryptionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionMethod MD5_128AES
public static final EncryptionMethod MD5_256AES
public static final EncryptionMethod SHA1_RC2
public static final EncryptionMethod SHA1_DES
public static final EncryptionMethod MD5_192AES
public static final EncryptionMethod MD5_DES
public static final EncryptionMethod MD5_RC2
public static final EncryptionMethod SHA_192AES
public static final EncryptionMethod SHA_40RC4
public static final EncryptionMethod SHA256_128AES
public static final EncryptionMethod SHA_128RC2
public static final EncryptionMethod SHA_128AES
public static final EncryptionMethod SHA256_192AES
public static final EncryptionMethod SHA_2KEYTRIPLEDES
public static final EncryptionMethod SHA256_256AES
public static final EncryptionMethod SHA_40RC2
public static final EncryptionMethod SHA_256AES
public static final EncryptionMethod SHA_3KEYTRIPLEDES
public static final EncryptionMethod SHA_TWOFISH
public static final EncryptionMethod SHA_128RC4
public static final EncryptionMethod PGP
public static final EncryptionMethod PGP_ASCII_ARMOR
private final String algorithm
private final String provider
private final boolean unlimitedStrength
public static EncryptionMethod[] values()
for (EncryptionMethod c : EncryptionMethod.values()) System.out.println(c);
public static EncryptionMethod 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 getProvider()
public String getAlgorithm()
public boolean isUnlimitedStrength()
public String toString()
toString
in class Enum<EncryptionMethod>
Copyright © 2015 Apache NiFi Project. All rights reserved.