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)
|
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
public static final ConformanceLevel COMFORT
public static final ConformanceLevel EXTENDED
public static ConformanceLevel extractConformanceLevel(String fullName)
Parses the full name and extract the conformance level
fullName - the full namepublic 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 Konik.io. All Rights Reserved.