public enum ProblemCategory extends Enum<ProblemCategory>
Enum Constant and Description |
---|
EXECUTION
Problems with execution of the tool.
|
GENERAL
General problems with overall validation of the known targets.
|
INTEGRITY
Problems with referential integrity validation
|
PRODUCT
Problems with individual product validation
|
Modifier and Type | Method and Description |
---|---|
String |
getKey()
Gets the key for mapping the problem type to a UI string.
|
static ProblemCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProblemCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProblemCategory PRODUCT
public static final ProblemCategory INTEGRITY
public static final ProblemCategory GENERAL
public static final ProblemCategory EXECUTION
public static ProblemCategory[] values()
for (ProblemCategory c : ProblemCategory.values()) System.out.println(c);
public static ProblemCategory 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 String getKey()
Copyright © 2022 Jet Propulsion Laboratory, California Institute of Technology. All rights reserved.