public static enum DictionaryFactory.Type extends Enum<DictionaryFactory.Type>
| Enum Constant and Description | 
|---|
| FP64_DICT | 
| INT8_DICT | 
| MATRIX_BLOCK_DICT | 
| Modifier and Type | Method and Description | 
|---|---|
| static DictionaryFactory.Type | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static DictionaryFactory.Type[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DictionaryFactory.Type FP64_DICT
public static final DictionaryFactory.Type MATRIX_BLOCK_DICT
public static final DictionaryFactory.Type INT8_DICT
public static DictionaryFactory.Type[] values()
for (DictionaryFactory.Type c : DictionaryFactory.Type.values()) System.out.println(c);
public static DictionaryFactory.Type 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 nullCopyright © 2021 The Apache Software Foundation. All rights reserved.