public enum ConformanceLevel extends Enum<ConformanceLevel>
The latest Version Invoice Profiles.
| Enum Constant and Description |
|---|
BASIC
The conformance level basic
|
COMFORT
The conformance level profile
|
EXTENDED
The conformance level extended
|
| Modifier and Type | Method and Description |
|---|---|
static ConformanceLevel |
extractConformanceLevel(String fullName)
Parses the full name and extract the conformance level
|
static List<Class<? extends Annotation>> |
getAnnotations() |
String |
toString() |
static ConformanceLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConformanceLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConformanceLevel BASIC
The conformance level basic
public static final ConformanceLevel COMFORT
The conformance level profile
public static final ConformanceLevel EXTENDED
The conformance level extended
public static ConformanceLevel extractConformanceLevel(String fullName)
Parses the full name and extract the conformance level
fullName - the full namepublic static List<Class<? extends Annotation>> getAnnotations()
public String toString()
toString in class Enum<ConformanceLevel>public static ConformanceLevel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static ConformanceLevel[] values()
for (ConformanceLevel c : ConformanceLevel.values()) System.out.println(c);
Copyright © 2014-2016 Konik.io. All Rights Reserved.