Package com.fourjs.report.facturx
Enum Codes.SchemeIdentifierAttribute
- java.lang.Object
-
- java.lang.Enum<Codes.SchemeIdentifierAttribute>
-
- com.fourjs.report.facturx.Codes.SchemeIdentifierAttribute
-
- All Implemented Interfaces:
Serializable,Comparable<Codes.SchemeIdentifierAttribute>
- Enclosing class:
- Codes
public static enum Codes.SchemeIdentifierAttribute extends Enum<Codes.SchemeIdentifierAttribute>
Scheme Identifier Attribute: BT-31-0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CustomEntry1Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)CustomEntry10Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)CustomEntry2Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)CustomEntry3Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)CustomEntry4Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)CustomEntry5Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)CustomEntry6Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)CustomEntry7Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)CustomEntry8Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)CustomEntry9Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)FCFCVAVA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Codes.SchemeIdentifierAttributefromString(String value)Convert a String to a SchemeIdentifierAttribute.StringgetValue()Get the "Value" property valuestatic booleanisNativeValue(String value)Tests ifvalueOf(value)would return a non custom enum valueStringtoString()Returns a string representation of the SchemeIdentifierAttribute.static Codes.SchemeIdentifierAttributevalueOf(String name)Returns the enum constant of this type with the specified name.static Codes.SchemeIdentifierAttribute[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VA
public static final Codes.SchemeIdentifierAttribute VA
VA
-
FC
public static final Codes.SchemeIdentifierAttribute FC
FC
-
CustomEntry1
public static final Codes.SchemeIdentifierAttribute CustomEntry1
Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)
-
CustomEntry2
public static final Codes.SchemeIdentifierAttribute CustomEntry2
Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)
-
CustomEntry3
public static final Codes.SchemeIdentifierAttribute CustomEntry3
Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)
-
CustomEntry4
public static final Codes.SchemeIdentifierAttribute CustomEntry4
Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)
-
CustomEntry5
public static final Codes.SchemeIdentifierAttribute CustomEntry5
Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)
-
CustomEntry6
public static final Codes.SchemeIdentifierAttribute CustomEntry6
Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)
-
CustomEntry7
public static final Codes.SchemeIdentifierAttribute CustomEntry7
Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)
-
CustomEntry8
public static final Codes.SchemeIdentifierAttribute CustomEntry8
Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)
-
CustomEntry9
public static final Codes.SchemeIdentifierAttribute CustomEntry9
Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)
-
CustomEntry10
public static final Codes.SchemeIdentifierAttribute CustomEntry10
Custom entry whose member "value" gets updated to "value" on calls tofromString(String value)
-
-
Method Detail
-
values
public static Codes.SchemeIdentifierAttribute[] 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 (Codes.SchemeIdentifierAttribute c : Codes.SchemeIdentifierAttribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Codes.SchemeIdentifierAttribute 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
-
getValue
public String getValue()
Get the "Value" property value- Returns:
- value
-
toString
public String toString()
Returns a string representation of the SchemeIdentifierAttribute.- Overrides:
toStringin classEnum<Codes.SchemeIdentifierAttribute>- Returns:
- a string representation of the SchemeIdentifierAttribute.
-
fromString
public static Codes.SchemeIdentifierAttribute fromString(String value)
Convert a String to a SchemeIdentifierAttribute.
Throws aIllegalArgumentExceptionif the value doesn't exist unless the system property "facturx.laxenums" is set to true. In the latter case, a custom value is returned if available.- Returns:
- a SchemeIdentifierAttribute that represents the String.
-
isNativeValue
public static boolean isNativeValue(String value)
Tests ifvalueOf(value)would return a non custom enum value- Returns:
- true if if
valueOf(value)would return a non custom enum value
-
-