public static enum CipherSuite.CipherType extends Enum<CipherSuite.CipherType>
| Modifier and Type | Method and Description |
|---|---|
static CipherSuite.CipherType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CipherSuite.CipherType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CipherSuite.CipherType NULL
public static final CipherSuite.CipherType STREAM
public static final CipherSuite.CipherType BLOCK
public static final CipherSuite.CipherType AEAD
public static CipherSuite.CipherType[] values()
for (CipherSuite.CipherType c : CipherSuite.CipherType.values()) System.out.println(c);
public static CipherSuite.CipherType 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 © 2023 Eclipse Foundation. All rights reserved.