public class DG11
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
ADDR_DIRECCION |
static int |
ADDR_LOCALIDAD |
static int |
ADDR_PROVINCIA |
Constructor and Description |
---|
DG11(byte[] rawBytes)
Creates a new instance of DG1DataContainer
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAddress(int type) |
java.lang.String |
getBirthDate() |
java.lang.String |
getBirthPlace() |
byte[] |
getBytes() |
java.lang.String |
getCustodyInfo() |
java.lang.String |
getDateOfBirth() |
byte[] |
getDateOfBirthBytes() |
java.lang.String |
getIcaoName() |
java.lang.String |
getName() |
java.lang.String |
getOtherInfo() |
java.lang.String |
getPersonalNumber() |
java.lang.String |
getPhone() |
java.lang.String |
getProfession() |
java.lang.String |
getSummary() |
java.lang.String |
getTitle() |
java.lang.String |
toString()
Returns a string representation of the object.
|
public static final int ADDR_DIRECCION
public static final int ADDR_LOCALIDAD
public static final int ADDR_PROVINCIA
public DG11(byte[] rawBytes) throws java.io.IOException
java.io.IOException
public java.lang.String getName()
public java.lang.String getIcaoName()
public java.lang.String getPersonalNumber()
public java.lang.String getBirthDate()
public java.lang.String getBirthPlace()
public java.lang.String getAddress(int type)
public java.lang.String getPhone()
public java.lang.String getProfession()
public java.lang.String getTitle()
public java.lang.String getSummary()
public java.lang.String getOtherInfo()
public java.lang.String getCustodyInfo()
public byte[] getBytes()
public java.lang.String getDateOfBirth()
public byte[] getDateOfBirthBytes()
public java.lang.String toString()
java.lang.Object
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
toString
in class java.lang.Object