org.objectweb.jorm.naming.api
Interface PNCStringCoder
- public interface PNCStringCoder
Used to encode/decode a composite name to/from a String. For the decode
process, there are the typed getter methods (XXX getXXX()). It supposes that
the coder knows the String representing the encoded value. For the encode
process, there are the setter methods (putXXX(XXX val)) in order to add
new sub values to the encoded String. After all putXXX has been done, the
encoded value is retrieved using the getStringCode method.
- Author:
- P. D?chamboux
getByte
public byte getByte()
throws PExceptionCoder
PExceptionCoder
getObyte
public java.lang.Byte getObyte()
throws PExceptionCoder
PExceptionCoder
getChar
public char getChar()
throws PExceptionCoder
PExceptionCoder
getOchar
public java.lang.Character getOchar()
throws PExceptionCoder
PExceptionCoder
getShort
public short getShort()
throws PExceptionCoder
PExceptionCoder
getOshort
public java.lang.Short getOshort()
throws PExceptionCoder
PExceptionCoder
getInt
public int getInt()
throws PExceptionCoder
PExceptionCoder
getOint
public java.lang.Integer getOint()
throws PExceptionCoder
PExceptionCoder
getLong
public long getLong()
throws PExceptionCoder
PExceptionCoder
getOlong
public java.lang.Long getOlong()
throws PExceptionCoder
PExceptionCoder
getString
public java.lang.String getString()
throws PExceptionCoder
PExceptionCoder
getDate
public java.util.Date getDate()
throws PExceptionCoder
PExceptionCoder
getByteArray
public byte[] getByteArray()
throws PExceptionCoder
PExceptionCoder
getCharArray
public char[] getCharArray()
throws PExceptionCoder
PExceptionCoder
putByte
public void putByte(byte val)
throws PExceptionCoder
PExceptionCoder
putObyte
public void putObyte(java.lang.Byte val)
throws PExceptionCoder
PExceptionCoder
putChar
public void putChar(char val)
throws PExceptionCoder
PExceptionCoder
putOchar
public void putOchar(java.lang.Character val)
throws PExceptionCoder
PExceptionCoder
putShort
public void putShort(short val)
throws PExceptionCoder
PExceptionCoder
putOshort
public void putOshort(java.lang.Short val)
throws PExceptionCoder
PExceptionCoder
putInt
public void putInt(int val)
throws PExceptionCoder
PExceptionCoder
putOint
public void putOint(java.lang.Integer val)
throws PExceptionCoder
PExceptionCoder
putLong
public void putLong(long val)
throws PExceptionCoder
PExceptionCoder
putOlong
public void putOlong(java.lang.Long val)
throws PExceptionCoder
PExceptionCoder
putString
public void putString(java.lang.String val)
throws PExceptionCoder
PExceptionCoder
putDate
public void putDate(java.util.Date val)
throws PExceptionCoder
PExceptionCoder
putByteArray
public void putByteArray(byte[] val)
throws PExceptionCoder
PExceptionCoder
putCharArray
public void putCharArray(char[] val)
throws PExceptionCoder
PExceptionCoder
getStringCode
public java.lang.String getStringCode()
throws PExceptionCoder
PExceptionCoder