public enum ToolCategory extends Enum<ToolCategory>
Enum Constant and Description |
---|
DECODER
Denotes a tool that processes and decodes acquisition data.
|
MEASURE
Denotes a tool that measures something on acquisition data.
|
OTHER
For tools that neither decode nor measure something.
|
Modifier and Type | Method and Description |
---|---|
static ToolCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ToolCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToolCategory DECODER
public static final ToolCategory MEASURE
public static final ToolCategory OTHER
public static ToolCategory[] values()
for (ToolCategory c : ToolCategory.values()) System.out.println(c);
public static ToolCategory 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 © 2015 L'Xtreme IT consultancy. All rights reserved.