Package pt.cienciavitae.ns.common_enum
Enum ServiceMembershipTypeEnum
- java.lang.Object
-
- java.lang.Enum<ServiceMembershipTypeEnum>
-
- pt.cienciavitae.ns.common_enum.ServiceMembershipTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ServiceMembershipTypeEnum>
public enum ServiceMembershipTypeEnum extends Enum<ServiceMembershipTypeEnum>
Java class for service-membership-type-enum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="service-membership-type-enum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="CN"/> <enumeration value="CR"/> <enumeration value="DR"/> <enumeration value="MM"/> <enumeration value="OT"/> <enumeration value="PR"/> <enumeration value="VG"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CNPT: Consultor / EN: Advisor / ConsultantCRPT: Coordenador / EN: CoordinatorDRPT: Diretor / EN: DirectorMMPT: Membro / EN: MemberOTPT: Outro / EN: OtherPRPT: Presidente / Vice-presidente / EN: President / Vice-presidenteVGPT: Vogal / EN: Member
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ServiceMembershipTypeEnumfromValue(String v)Stringvalue()static ServiceMembershipTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ServiceMembershipTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CN
public static final ServiceMembershipTypeEnum CN
PT: Consultor / EN: Advisor / Consultant
-
CR
public static final ServiceMembershipTypeEnum CR
PT: Coordenador / EN: Coordinator
-
DR
public static final ServiceMembershipTypeEnum DR
PT: Diretor / EN: Director
-
MM
public static final ServiceMembershipTypeEnum MM
PT: Membro / EN: Member
-
OT
public static final ServiceMembershipTypeEnum OT
PT: Outro / EN: Other
-
PR
public static final ServiceMembershipTypeEnum PR
PT: Presidente / Vice-presidente / EN: President / Vice-presidente
-
VG
public static final ServiceMembershipTypeEnum VG
PT: Vogal / EN: Member
-
-
Method Detail
-
values
public static ServiceMembershipTypeEnum[] 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 (ServiceMembershipTypeEnum c : ServiceMembershipTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceMembershipTypeEnum 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
-
value
public String value()
-
fromValue
public static ServiceMembershipTypeEnum fromValue(String v)
-
-