public static enum Requirement.TypeEnum extends Enum<Requirement.TypeEnum>
| Modifier and Type | Class and Description |
|---|---|
static class |
Requirement.TypeEnum.Adapter |
| Enum Constant and Description |
|---|
EPIC |
FEATURE |
USER_STORY |
| Modifier and Type | Method and Description |
|---|---|
static Requirement.TypeEnum |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static Requirement.TypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Requirement.TypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Requirement.TypeEnum EPIC
public static final Requirement.TypeEnum USER_STORY
public static final Requirement.TypeEnum FEATURE
public static Requirement.TypeEnum[] values()
for (Requirement.TypeEnum c : Requirement.TypeEnum.values()) System.out.println(c);
public static Requirement.TypeEnum 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 getValue()
public String toString()
toString in class Enum<Requirement.TypeEnum>public static Requirement.TypeEnum fromValue(String value)
Copyright © 2023. All rights reserved.