Enum RecruitmentProcessStatusDto
- java.lang.Object
-
- java.lang.Enum<RecruitmentProcessStatusDto>
-
- br.com.senior.hcm.recruitment.pojos.RecruitmentProcessStatusDto
-
- All Implemented Interfaces:
Serializable,Comparable<RecruitmentProcessStatusDto>
public enum RecruitmentProcessStatusDto extends Enum<RecruitmentProcessStatusDto>
Gets or Sets recruitmentProcessStatusDto
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classRecruitmentProcessStatusDto.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETEDDISAPPROVEDGIVENUPSELECTEDSUBSCRIBED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RecruitmentProcessStatusDtofromValue(String text)StringgetValue()StringtoString()static RecruitmentProcessStatusDtovalueOf(String name)Returns the enum constant of this type with the specified name.static RecruitmentProcessStatusDto[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUBSCRIBED
public static final RecruitmentProcessStatusDto SUBSCRIBED
-
SELECTED
public static final RecruitmentProcessStatusDto SELECTED
-
DELETED
public static final RecruitmentProcessStatusDto DELETED
-
DISAPPROVED
public static final RecruitmentProcessStatusDto DISAPPROVED
-
GIVENUP
public static final RecruitmentProcessStatusDto GIVENUP
-
-
Method Detail
-
values
public static RecruitmentProcessStatusDto[] 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 (RecruitmentProcessStatusDto c : RecruitmentProcessStatusDto.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecruitmentProcessStatusDto 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 nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<RecruitmentProcessStatusDto>
-
fromValue
public static RecruitmentProcessStatusDto fromValue(String text)
-
-