Enum StabilityType

    • Enum Constant Detail

      • MATERNITY_ASSISTANCE

        public static final StabilityType MATERNITY_ASSISTANCE
      • MILITARY_SERVICE

        public static final StabilityType MILITARY_SERVICE
      • GOVERNMENT_EMPLOYEE

        public static final StabilityType GOVERNMENT_EMPLOYEE
      • RETURN_HOLIDAYS

        public static final StabilityType RETURN_HOLIDAYS
      • NEAR_RETIREMENT

        public static final StabilityType NEAR_RETIREMENT
      • COLLECTIVE_AGREEMENT

        public static final StabilityType COLLECTIVE_AGREEMENT
      • PREVIOUS_TIME_FGTS_OPTION

        public static final StabilityType PREVIOUS_TIME_FGTS_OPTION
      • NOT_OPTING_FGTS

        public static final StabilityType NOT_OPTING_FGTS
      • MEMBER_OF_COMMISSION_FOR_PRIOR_CONCILIATION

        public static final StabilityType MEMBER_OF_COMMISSION_FOR_PRIOR_CONCILIATION
      • MEMBER_OF_FGTS_CURATOR_COUNCIL

        public static final StabilityType MEMBER_OF_FGTS_CURATOR_COUNCIL
      • MEMBER_OF_NATIONAL_COUNCIL_OF_SOCIAL_SECURITY

        public static final StabilityType MEMBER_OF_NATIONAL_COUNCIL_OF_SOCIAL_SECURITY
      • CONSUMER_COOPERATIVE

        public static final StabilityType CONSUMER_COOPERATIVE
      • PERSON_WITH_DISABILITY

        public static final StabilityType PERSON_WITH_DISABILITY
      • COOPERATIVE_OF_SYNDICATE

        public static final StabilityType COOPERATIVE_OF_SYNDICATE
      • PATERNITY_LEAVE

        public static final StabilityType PATERNITY_LEAVE
      • ELECTORAL_MANDATE

        public static final StabilityType ELECTORAL_MANDATE
      • CIPA_CANDIDATE

        public static final StabilityType CIPA_CANDIDATE
      • ELECT_ALTERNATE_CIPA

        public static final StabilityType ELECT_ALTERNATE_CIPA
    • Method Detail

      • values

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

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