public enum VivadoPropType extends Enum<VivadoPropType>
Enum Constant and Description |
---|
BINARY |
BOOL |
DOUBLE |
HEX |
INT |
STRING |
Modifier and Type | Method and Description |
---|---|
static VivadoPropType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VivadoPropType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VivadoPropType BINARY
public static final VivadoPropType BOOL
public static final VivadoPropType DOUBLE
public static final VivadoPropType HEX
public static final VivadoPropType INT
public static final VivadoPropType STRING
public static VivadoPropType[] values()
for (VivadoPropType c : VivadoPropType.values()) System.out.println(c);
public static VivadoPropType 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 null