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