public static enum Patch.Type extends Enum<Patch.Type>
| Enum Constant and Description |
|---|
BACKPORT |
CHERRY_PICK |
MONKEY |
UNOFFICIAL |
| Modifier and Type | Method and Description |
|---|---|
String |
getTypeName() |
static Patch.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Patch.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Patch.Type BACKPORT
public static final Patch.Type UNOFFICIAL
public static final Patch.Type MONKEY
public static final Patch.Type CHERRY_PICK
public static Patch.Type[] values()
for (Patch.Type c : Patch.Type.values()) System.out.println(c);
public static Patch.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.