com.ibm.pdp.maf.rpp.pac.dataelement

Enum DataElementTypeValues

  • java.lang.Object
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      _A 
      _L 
      _P 
      _R 
      _U 
      INHERITED 
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      static DataElementTypeValues valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static DataElementTypeValues[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • _A

        public static final DataElementTypeValues _A

        ALIAS Data Element

        This value is automatically set upon the retrieval of existing data.

      • _P

        public static final DataElementTypeValues _P

        Property: elementary piece of information defined at the conceptual level.

        Note: the format is optional.

      • _R

        public static final DataElementTypeValues _R

        Real Data Element (default value): elementary piece of information, defined at the repository level.

        DBD function: CODASYL elementary data, relational column.

      • _U

        public static final DataElementTypeValues _U

        Unicode-type Data Element.

        Note: the usage must be 'N' (default), 'X' or '1'.

    • Method Detail

      • valueOf

        public static DataElementTypeValues 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
      • values

        public static DataElementTypeValues[] 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 (DataElementTypeValues c : DataElementTypeValues.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared