Package com.helger.ubltr
Enum EUBLTRDocumentType
- java.lang.Object
-
- java.lang.Enum<EUBLTRDocumentType>
-
- com.helger.ubltr.EUBLTRDocumentType
-
- All Implemented Interfaces:
com.helger.jaxb.builder.IJAXBDocumentType,com.helger.xml.schema.IHasSchema,Serializable,Comparable<EUBLTRDocumentType>
public enum EUBLTRDocumentType extends Enum<EUBLTRDocumentType> implements com.helger.jaxb.builder.IJAXBDocumentType
Enumeration with all available UBLTR document types.- Author:
- Philip Helger
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCEL_USER_ACCOUNTPACKAGEPROCESS_USER_ACCOUNT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description com.helger.commons.collection.impl.ICommonsList<com.helger.commons.io.resource.ClassPathResource>getAllXSDResources()Class<?>getImplementationClass()StringgetLocalName()StringgetNamespaceURI()SchemagetSchema()static EUBLTRDocumentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EUBLTRDocumentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CANCEL_USER_ACCOUNT
public static final EUBLTRDocumentType CANCEL_USER_ACCOUNT
-
PROCESS_USER_ACCOUNT
public static final EUBLTRDocumentType PROCESS_USER_ACCOUNT
-
PACKAGE
public static final EUBLTRDocumentType PACKAGE
-
-
Method Detail
-
values
public static EUBLTRDocumentType[] 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 (EUBLTRDocumentType c : EUBLTRDocumentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EUBLTRDocumentType 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
-
getImplementationClass
@Nonnull public Class<?> getImplementationClass()
- Specified by:
getImplementationClassin interfacecom.helger.jaxb.builder.IJAXBDocumentType
-
getAllXSDResources
@Nonnull @Nonempty @ReturnsMutableCopy public com.helger.commons.collection.impl.ICommonsList<com.helger.commons.io.resource.ClassPathResource> getAllXSDResources()
- Specified by:
getAllXSDResourcesin interfacecom.helger.jaxb.builder.IJAXBDocumentType
-
getNamespaceURI
@Nonnull public String getNamespaceURI()
- Specified by:
getNamespaceURIin interfacecom.helger.jaxb.builder.IJAXBDocumentType
-
getLocalName
@Nonnull @Nonempty public String getLocalName()
- Specified by:
getLocalNamein interfacecom.helger.jaxb.builder.IJAXBDocumentType
-
-