Enum EncryptionLevel
- java.lang.Object
- 
- java.lang.Enum<EncryptionLevel>
- 
- org.apache.tomcat.util.net.openssl.ciphers.EncryptionLevel
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<EncryptionLevel>
 
 public enum EncryptionLevel extends java.lang.Enum<EncryptionLevel> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static EncryptionLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EncryptionLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
STRONG_NONEpublic static final EncryptionLevel STRONG_NONE 
 - 
EXP40public static final EncryptionLevel EXP40 
 - 
EXP56public static final EncryptionLevel EXP56 
 - 
LOWpublic static final EncryptionLevel LOW 
 - 
MEDIUMpublic static final EncryptionLevel MEDIUM 
 - 
HIGHpublic static final EncryptionLevel HIGH 
 - 
FIPSpublic static final EncryptionLevel FIPS 
 
- 
 - 
Method Detail- 
valuespublic static EncryptionLevel[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EncryptionLevel c : EncryptionLevel.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static EncryptionLevel valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-