public enum InventoryType extends Enum<InventoryType>
| Modifier and Type | Method and Description |
|---|---|
static InventoryType |
from(byte b) |
int |
value() |
static InventoryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InventoryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InventoryType TX
public static final InventoryType Block
public static final InventoryType Consensus
public static InventoryType[] values()
for (InventoryType c : InventoryType.values()) System.out.println(c);
public static InventoryType 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 value()
public static InventoryType from(byte b)
Copyright © 2020. All rights reserved.