Enum InstrumentKind

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<InstrumentKind>

    public enum InstrumentKind
    extends java.lang.Enum<InstrumentKind>
    • Enum Constant Detail

      • QUESTIONNAIRE_STRUCTURED

        public static final InstrumentKind QUESTIONNAIRE_STRUCTURED
      • QUESTIONNAIRE_SEMISTRUCTURED

        public static final InstrumentKind QUESTIONNAIRE_SEMISTRUCTURED
      • QUESTIONNAIRE_UNSTRUCTURED

        public static final InstrumentKind QUESTIONNAIRE_UNSTRUCTURED
      • INTERVIEW_SCHEME_AND_THEMES

        public static final InstrumentKind INTERVIEW_SCHEME_AND_THEMES
      • DATA_COLLECTION_GUIDELINES

        public static final InstrumentKind DATA_COLLECTION_GUIDELINES
      • DATACOLLECTIONGUIDELINES_OBSERVATIONGUIDE

        public static final InstrumentKind DATACOLLECTIONGUIDELINES_OBSERVATIONGUIDE
      • DATACOLLECTIONGUIDELINES_DISCUSSIONGUIDE

        public static final InstrumentKind DATACOLLECTIONGUIDELINES_DISCUSSIONGUIDE
      • DATACOLLECTIONGUIDELINES_SELFADMINISTEREDWRITINGSGUIDE

        public static final InstrumentKind DATACOLLECTIONGUIDELINES_SELFADMINISTEREDWRITINGSGUIDE
      • DATACOLLECTIONGUIDELINES_SECONDARYDATACOLLECTIONGUIDE

        public static final InstrumentKind DATACOLLECTIONGUIDELINES_SECONDARYDATACOLLECTIONGUIDE
      • PARTICIPANT_TASKS

        public static final InstrumentKind PARTICIPANT_TASKS
      • TECHNICAL_INSTRUMENTS

        public static final InstrumentKind TECHNICAL_INSTRUMENTS
      • PROGRAMMING_SCRIPT

        public static final InstrumentKind PROGRAMMING_SCRIPT
    • Method Detail

      • values

        public 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
      • valueOf

        public 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
      • getName

        public java.lang.String getName()
      • getDescription

        public java.lang.String getDescription()
      • getEnum

        public static InstrumentKind getEnum​(java.lang.String name)