Enum VacationRightType

    • Enum Constant Detail

      • Q_1_12_EVERY_30_DAYS_AND_GREATER_THAN_15_DAYS_IN_THE_END

        public static final VacationRightType Q_1_12_EVERY_30_DAYS_AND_GREATER_THAN_15_DAYS_IN_THE_END
      • C_1_12_EVERY_CIVIL_MONTH_GREATER_15_DAYS

        public static final VacationRightType C_1_12_EVERY_CIVIL_MONTH_GREATER_15_DAYS
      • M_CONSIDER_THE_BIGGEST_OF_ALL

        public static final VacationRightType M_CONSIDER_THE_BIGGEST_OF_ALL
    • Method Detail

      • values

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

        public static VacationRightType 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()