public static enum Component.Type extends Enum<Component.Type>
| Enum Constant and Description |
|---|
APPLICATION |
CONTAINER |
DEVICE |
FILE |
FIRMWARE |
FRAMEWORK |
LIBRARY |
OPERATING_SYSTEM |
| Modifier and Type | Method and Description |
|---|---|
String |
getTypeName() |
static Component.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Component.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Component.Type APPLICATION
public static final Component.Type FRAMEWORK
public static final Component.Type LIBRARY
public static final Component.Type CONTAINER
public static final Component.Type OPERATING_SYSTEM
public static final Component.Type DEVICE
public static final Component.Type FIRMWARE
public static final Component.Type FILE
public static Component.Type[] values()
for (Component.Type c : Component.Type.values()) System.out.println(c);
public static Component.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.