public static enum IDXDataSource.IDXType extends Enum<IDXDataSource.IDXType>
Enum Constant and Description |
---|
BYTE |
DOUBLE |
FLOAT |
INT |
SHORT |
UBYTE |
Modifier and Type | Field and Description |
---|---|
byte |
value
The encoded byte value.
|
Modifier and Type | Method and Description |
---|---|
static IDXDataSource.IDXType |
convert(byte input)
Converts the byte into the enum.
|
static IDXDataSource.IDXType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IDXDataSource.IDXType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IDXDataSource.IDXType UBYTE
public static final IDXDataSource.IDXType BYTE
public static final IDXDataSource.IDXType SHORT
public static final IDXDataSource.IDXType INT
public static final IDXDataSource.IDXType FLOAT
public static final IDXDataSource.IDXType DOUBLE
public static IDXDataSource.IDXType[] values()
for (IDXDataSource.IDXType c : IDXDataSource.IDXType.values()) System.out.println(c);
public static IDXDataSource.IDXType 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 static IDXDataSource.IDXType convert(byte input)
input
- The byte to convert.Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.