Package no.nsd.qddt.domain.elementref
Enum ElementKind
- java.lang.Object
- 
- java.lang.Enum<ElementKind>
- 
- no.nsd.qddt.domain.elementref.ElementKind
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<ElementKind>
 
 public enum ElementKind extends java.lang.Enum<ElementKind> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CATEGORYCONCEPTCONDITION_CONSTRUCTCONTROL_CONSTRUCTINSTRUCTIONINSTRUMENTPUBLICATIONQUESTION_CONSTRUCTQUESTION_ITEMRESPONSEDOMAINSEQUENCE_CONSTRUCTSTATEMENT_CONSTRUCTSTUDYSURVEY_PROGRAMTOPIC_GROUPUNIVERSE
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetClassName()java.lang.StringgetDescription()static ElementKindgetEnum(java.lang.String className)static ElementKindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ElementKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SURVEY_PROGRAMpublic static final ElementKind SURVEY_PROGRAM 
 - 
STUDYpublic static final ElementKind STUDY 
 - 
TOPIC_GROUPpublic static final ElementKind TOPIC_GROUP 
 - 
CONCEPTpublic static final ElementKind CONCEPT 
 - 
QUESTION_ITEMpublic static final ElementKind QUESTION_ITEM 
 - 
RESPONSEDOMAINpublic static final ElementKind RESPONSEDOMAIN 
 - 
CATEGORYpublic static final ElementKind CATEGORY 
 - 
INSTRUMENTpublic static final ElementKind INSTRUMENT 
 - 
PUBLICATIONpublic static final ElementKind PUBLICATION 
 - 
CONTROL_CONSTRUCTpublic static final ElementKind CONTROL_CONSTRUCT 
 - 
QUESTION_CONSTRUCTpublic static final ElementKind QUESTION_CONSTRUCT 
 - 
STATEMENT_CONSTRUCTpublic static final ElementKind STATEMENT_CONSTRUCT 
 - 
CONDITION_CONSTRUCTpublic static final ElementKind CONDITION_CONSTRUCT 
 - 
SEQUENCE_CONSTRUCTpublic static final ElementKind SEQUENCE_CONSTRUCT 
 - 
INSTRUCTIONpublic static final ElementKind INSTRUCTION 
 - 
UNIVERSEpublic static final ElementKind UNIVERSE 
 
- 
 - 
Method Detail- 
valuespublic static ElementKind[] 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 (ElementKind c : ElementKind.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ElementKind 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
 
 - 
getDescriptionpublic java.lang.String getDescription() 
 - 
getClassNamepublic java.lang.String getClassName() 
 - 
getEnumpublic static ElementKind getEnum(java.lang.String className) 
 
- 
 
-