Enum HireType

    • Enum Constant Detail

      • EMPTY

        public static final HireType EMPTY
      • FIRSTJOB

        public static final HireType FIRSTJOB
      • REEMPREGO

        public static final HireType REEMPREGO
      • TRANSFERWITHONUS

        public static final HireType TRANSFERWITHONUS
      • TRANSFERWITHOUTONUS

        public static final HireType TRANSFERWITHOUTONUS
      • INCORPORATION

        public static final HireType INCORPORATION
      • REINTEGRATION

        public static final HireType REINTEGRATION
      • RECONSTRUCTION

        public static final HireType RECONSTRUCTION
      • REVERSAL

        public static final HireType REVERSAL
      • PROVISIONAL

        public static final HireType PROVISIONAL
      • REQUEST

        public static final HireType REQUEST
      • REDISTRIBUTION

        public static final HireType REDISTRIBUTION
      • DECENTRALIZED

        public static final HireType DECENTRALIZED
      • REMOVAL

        public static final HireType REMOVAL
      • READAPTATION

        public static final HireType READAPTATION
    • Method Detail

      • values

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

        public static HireType 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
      • getValue

        public String getValue()