Package nxt
Enum HoldingType
- java.lang.Object
-
- java.lang.Enum<HoldingType>
-
- nxt.HoldingType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HoldingType>
public enum HoldingType extends java.lang.Enum<HoldingType>
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static HoldingType
get(byte code)
abstract long
getBalance(Account account, long holdingId)
byte
getCode()
abstract long
getUnconfirmedBalance(Account account, long holdingId)
static HoldingType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HoldingType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NXT
public static final HoldingType NXT
-
ASSET
public static final HoldingType ASSET
-
CURRENCY
public static final HoldingType CURRENCY
-
-
Method Detail
-
values
public static HoldingType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HoldingType c : HoldingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HoldingType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
get
public static HoldingType get(byte code)
-
getCode
public byte getCode()
-
getBalance
public abstract long getBalance(Account account, long holdingId)
-
getUnconfirmedBalance
public abstract long getUnconfirmedBalance(Account account, long holdingId)
-
-