public enum StringType extends Enum<StringType>
| Enum Constant and Description |
|---|
bmpString |
ia5String |
printableString |
teletexString |
utf8String |
| Modifier and Type | Method and Description |
|---|---|
org.bouncycastle.asn1.ASN1Encodable |
createString(String text) |
static StringType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringType teletexString
public static final StringType printableString
public static final StringType utf8String
public static final StringType bmpString
public static final StringType ia5String
public static StringType[] values()
for (StringType c : StringType.values()) System.out.println(c);
public static StringType 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 org.bouncycastle.asn1.ASN1Encodable createString(String text)
Copyright © 2018. All rights reserved.