Enum IntegrationStatusDto
- java.lang.Object
-
- java.lang.Enum<IntegrationStatusDto>
-
- br.com.senior.hcm.recruitment.pojos.IntegrationStatusDto
-
- All Implemented Interfaces:
Serializable,Comparable<IntegrationStatusDto>
public enum IntegrationStatusDto extends Enum<IntegrationStatusDto>
Gets or Sets integrationStatusDto
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIntegrationStatusDto.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description ERRORERRORG7PENDINGSUCCESSSUCCESS_PERSONNEL_MANAGEMENT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IntegrationStatusDtofromValue(String text)StringgetValue()StringtoString()static IntegrationStatusDtovalueOf(String name)Returns the enum constant of this type with the specified name.static IntegrationStatusDto[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final IntegrationStatusDto SUCCESS
-
ERROR
public static final IntegrationStatusDto ERROR
-
PENDING
public static final IntegrationStatusDto PENDING
-
SUCCESS_PERSONNEL_MANAGEMENT
public static final IntegrationStatusDto SUCCESS_PERSONNEL_MANAGEMENT
-
ERRORG7
public static final IntegrationStatusDto ERRORG7
-
-
Method Detail
-
values
public static IntegrationStatusDto[] 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 (IntegrationStatusDto c : IntegrationStatusDto.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IntegrationStatusDto 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<IntegrationStatusDto>
-
fromValue
public static IntegrationStatusDto fromValue(String text)
-
-