public static enum Issue.Type extends Enum<Issue.Type>
| Enum Constant and Description |
|---|
DEFECT |
ENHANCEMENT |
SECURITY |
| Modifier and Type | Method and Description |
|---|---|
String |
getTypeName() |
static Issue.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Issue.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Issue.Type ENHANCEMENT
public static final Issue.Type SECURITY
public static final Issue.Type DEFECT
public static Issue.Type[] values()
for (Issue.Type c : Issue.Type.values()) System.out.println(c);
public static Issue.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 nullpublic String getTypeName()
Copyright © 2017–2022 OWASP Foundation. All rights reserved.