public enum StudyPhase extends Enum<StudyPhase>
Modifier and Type | Class and Description |
---|---|
static class |
StudyPhase.Adapter |
Enum Constant and Description |
---|
ANALYSIS |
COMPLETED |
DESIGN |
IN_FLIGHT |
LEGACY |
RECRUITMENT |
WITHDRAWN |
Modifier and Type | Method and Description |
---|---|
static StudyPhase |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static StudyPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StudyPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StudyPhase LEGACY
public static final StudyPhase DESIGN
public static final StudyPhase RECRUITMENT
public static final StudyPhase IN_FLIGHT
public static final StudyPhase ANALYSIS
public static final StudyPhase COMPLETED
public static final StudyPhase WITHDRAWN
public static StudyPhase[] values()
for (StudyPhase c : StudyPhase.values()) System.out.println(c);
public static StudyPhase 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<StudyPhase>
public static StudyPhase fromValue(String text)
Copyright © 2022 Sage Bionetworks. All rights reserved.