Enum VSAMOrganization

    • Enum Constant Detail

      • ENTRY_SEQUENCED

        public static final VSAMOrganization ENTRY_SEQUENCED
        VSAM organization of "entry sequenced".
        Since:
        1.0.0
      • KEY_SEQUENCED

        public static final VSAMOrganization KEY_SEQUENCED
        VSAM organization of "key sequenced".
        Since:
        1.0.0
      • LINEAR

        public static final VSAMOrganization LINEAR
        VSAM organization of "linear".
        Since:
        1.0.0
      • RELATIVE_RECORD

        public static final VSAMOrganization RELATIVE_RECORD
        VSAM organization of "relative record".
        Since:
        1.0.0
    • Method Detail

      • values

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

        public static VSAMOrganization valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null