public static enum BERTag.TagClass extends Enum<BERTag.TagClass>
| Enum Constant and Description |
|---|
APPLICATION |
CONTEXT_SPECIFIC |
PRIVATE |
UNIVERSAL |
| Modifier and Type | Method and Description |
|---|---|
static BERTag.TagClass |
entryOf(int value) |
int |
getValue() |
static BERTag.TagClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BERTag.TagClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BERTag.TagClass UNIVERSAL
public static final BERTag.TagClass APPLICATION
public static final BERTag.TagClass CONTEXT_SPECIFIC
public static final BERTag.TagClass PRIVATE
public static BERTag.TagClass[] values()
for (BERTag.TagClass c : BERTag.TagClass.values()) System.out.println(c);
public static BERTag.TagClass 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 int getValue()
public static BERTag.TagClass entryOf(int value)
Copyright © 2020–2021 com.github.mvallim. All rights reserved.