Package no.nsd.qddt.domain.instrument
Enum InstrumentKind
- java.lang.Object
- 
- java.lang.Enum<InstrumentKind>
- 
- no.nsd.qddt.domain.instrument.pojo.InstrumentKind
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<InstrumentKind>
 
 public enum InstrumentKind extends java.lang.Enum<InstrumentKind> 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()static InstrumentKindgetEnum(java.lang.String name)java.lang.StringgetName()static InstrumentKindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static InstrumentKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
QUESTIONNAIREpublic static final InstrumentKind QUESTIONNAIRE 
 - 
QUESTIONNAIRE_STRUCTUREDpublic static final InstrumentKind QUESTIONNAIRE_STRUCTURED 
 - 
QUESTIONNAIRE_SEMISTRUCTUREDpublic static final InstrumentKind QUESTIONNAIRE_SEMISTRUCTURED 
 - 
QUESTIONNAIRE_UNSTRUCTUREDpublic static final InstrumentKind QUESTIONNAIRE_UNSTRUCTURED 
 - 
INTERVIEW_SCHEME_AND_THEMESpublic static final InstrumentKind INTERVIEW_SCHEME_AND_THEMES 
 - 
DATA_COLLECTION_GUIDELINESpublic static final InstrumentKind DATA_COLLECTION_GUIDELINES 
 - 
DATACOLLECTIONGUIDELINES_OBSERVATIONGUIDEpublic static final InstrumentKind DATACOLLECTIONGUIDELINES_OBSERVATIONGUIDE 
 - 
DATACOLLECTIONGUIDELINES_DISCUSSIONGUIDEpublic static final InstrumentKind DATACOLLECTIONGUIDELINES_DISCUSSIONGUIDE 
 - 
DATACOLLECTIONGUIDELINES_SELFADMINISTEREDWRITINGSGUIDEpublic static final InstrumentKind DATACOLLECTIONGUIDELINES_SELFADMINISTEREDWRITINGSGUIDE 
 - 
DATACOLLECTIONGUIDELINES_SECONDARYDATACOLLECTIONGUIDEpublic static final InstrumentKind DATACOLLECTIONGUIDELINES_SECONDARYDATACOLLECTIONGUIDE 
 - 
PARTICIPANT_TASKSpublic static final InstrumentKind PARTICIPANT_TASKS 
 - 
TECHNICAL_INSTRUMENTSpublic static final InstrumentKind TECHNICAL_INSTRUMENTS 
 - 
PROGRAMMING_SCRIPTpublic static final InstrumentKind PROGRAMMING_SCRIPT 
 - 
OTHERpublic static final InstrumentKind OTHER 
 
- 
 - 
Method Detail- 
valuespublic static InstrumentKind[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (InstrumentKind c : InstrumentKind.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static InstrumentKind valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getNamepublic java.lang.String getName() 
 - 
getDescriptionpublic java.lang.String getDescription() 
 - 
getEnumpublic static InstrumentKind getEnum(java.lang.String name) 
 
- 
 
-