CharacterSetECI class

Encapsulates a Character Set ECI, according to "Extended Channel Interpretations" 5.3.1.1 of ISO 18004.

@author Sean Owen

Constructors

CharacterSetECI(String name, dynamic value, [dynamic otherEncodingNames])

Properties

charset Encoding?
no setter
hashCode int
The hash code for this object.
no setterinherited
name String
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value int
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

getCharacterSetECI(Encoding charset) CharacterSetECI?
@param charset Java character set object @return CharacterSetECI representing ECI for character encoding, or null if it is legal but unsupported
getCharacterSetECIByName(String name) CharacterSetECI?
@param name character set ECI encoding name @return CharacterSetECI representing ECI for character encoding, or null if it is legal but unsupported
getCharacterSetECIByValue(int value) CharacterSetECI?
@param value character set ECI value @return CharacterSetECI representing ECI of given value, or null if it is legal but unsupported @throws FormatException if ECI value is invalid
init() → void