public enum VARENUM extends Enum<VARENUM> implements IntValuedEnum<VARENUM>
Modifier and Type | Field and Description |
---|---|
long |
value |
Modifier and Type | Method and Description |
---|---|
static ValuedEnum<VARENUM> |
fromValue(long value) |
Iterator<VARENUM> |
iterator() |
long |
value() |
static VARENUM |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VARENUM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
forEach, spliterator
public static final VARENUM VT_DISPATCH
public static final VARENUM VT_VARIANT
public static final VARENUM VT_UNKNOWN
public static final VARENUM VT_DECIMAL
public static final VARENUM VT_HRESULT
public static final VARENUM VT_SAFEARRAY
public static final VARENUM VT_USERDEFINED
public static final VARENUM VT_FILETIME
public static final VARENUM VT_STORAGE
public static final VARENUM VT_STREAMED_OBJECT
public static final VARENUM VT_STORED_OBJECT
public static final VARENUM VT_BLOB_OBJECT
public static final VARENUM VT_RESERVED
public static final VARENUM VT_ILLEGAL
public static final VARENUM VT_ILLEGALMASKED
public static final VARENUM VT_TYPEMASK
public final long value
public static VARENUM[] values()
for (VARENUM c : VARENUM.values()) System.out.println(c);
public static VARENUM 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 long value()
value
in interface ValuedEnum<VARENUM>
public static ValuedEnum<VARENUM> fromValue(long value)
Copyright © 2009-2020. All Rights Reserved.