public enum NumberPref extends Enum<NumberPref> implements INumberEnum<Byte>
Modifier and Type | Method and Description |
---|---|
long |
getLongValue() |
Byte |
getValue() |
static NumberPref |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumberPref[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberPref CLIENT
public static final NumberPref FIELD
public static NumberPref[] values()
for (NumberPref c : NumberPref.values()) System.out.println(c);
public static NumberPref 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 getLongValue()
getLongValue
in interface INumberEnum<Byte>
long
public Byte getValue()
getValue
in interface INumberEnum<Byte>
Copyright © 2019–2021 HCL. All rights reserved.