Package pt.cienciavitae.ns.common_enum
Enum ServiceEventTypeEnum
- java.lang.Object
-
- java.lang.Enum<ServiceEventTypeEnum>
-
- pt.cienciavitae.ns.common_enum.ServiceEventTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ServiceEventTypeEnum>
public enum ServiceEventTypeEnum extends Enum<ServiceEventTypeEnum>
Java class for service-event-type-enum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="service-event-type-enum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="CE"/> <enumeration value="CF"/> <enumeration value="CG"/> <enumeration value="CR"/> <enumeration value="EN"/> <enumeration value="EX"/> <enumeration value="FE"/> <enumeration value="MR"/> <enumeration value="O"/> <enumeration value="OF"/> <enumeration value="SE"/> <enumeration value="SI"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CEPT: Concerto / EN: ConcertCFPT: Conferência / EN: ConferenceCGPT: Congresso / EN: CongressCRPT: Concurso / EN: CallENPT: Encontro / EN: MeetingEXPT: Exposição / EN: ExhibitionFEPT: Festival / EN: FestivalMRPT: Mesa-redonda / EN: Round tableOPT: Outro / EN: OtherOFPT: Oficina (workshop) / EN: WorkshopSEPT: Seminário / EN: SeminarSIPT: Simpósio / EN: Symposium
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ServiceEventTypeEnumfromValue(String v)Stringvalue()static ServiceEventTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ServiceEventTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CE
public static final ServiceEventTypeEnum CE
PT: Concerto / EN: Concert
-
CF
public static final ServiceEventTypeEnum CF
PT: Conferência / EN: Conference
-
CG
public static final ServiceEventTypeEnum CG
PT: Congresso / EN: Congress
-
CR
public static final ServiceEventTypeEnum CR
PT: Concurso / EN: Call
-
EN
public static final ServiceEventTypeEnum EN
PT: Encontro / EN: Meeting
-
EX
public static final ServiceEventTypeEnum EX
PT: Exposição / EN: Exhibition
-
FE
public static final ServiceEventTypeEnum FE
PT: Festival / EN: Festival
-
MR
public static final ServiceEventTypeEnum MR
PT: Mesa-redonda / EN: Round table
-
O
public static final ServiceEventTypeEnum O
PT: Outro / EN: Other
-
OF
public static final ServiceEventTypeEnum OF
PT: Oficina (workshop) / EN: Workshop
-
SE
public static final ServiceEventTypeEnum SE
PT: Seminário / EN: Seminar
-
SI
public static final ServiceEventTypeEnum SI
PT: Simpósio / EN: Symposium
-
-
Method Detail
-
values
public static ServiceEventTypeEnum[] 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 (ServiceEventTypeEnum c : ServiceEventTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceEventTypeEnum 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 ServiceEventTypeEnum fromValue(String v)
-
-