org.deri.iris.api.terms.concrete
Interface IHexBinary

All Superinterfaces:
Comparable<ITerm>, IConcreteTerm, ITerm
All Known Implementing Classes:
HexBinary

public interface IHexBinary
extends IConcreteTerm

Definition: hexBinary represents arbitrary hex-encoded binary data. The ??value space?? of hexBinary is the set of finite-length sequences of binary octets. 3.2.15.1 Lexical Representation

hexBinary has a lexical representation where each binary octet is encoded as a character tuple, consisting of two hexadecimal digits ([0-9a-fA-F]) representing the octet code. For example, "0FB7" is a hex encoding for the 16-bit integer 4023 (whose binary representation is 111110110111).

Remark: IRIS supports datatypes according to the standard specification for primitive XML Schema datatypes.

    Created on 04.04.2006
    Committed by $Author: bazbishop237 $
    $Source: /tmp/iris-cvsbackup/iris/api/org/deri/iris/api/terms/concrete/IHexBinary.java,v $,
 

Version:
$Revision: 1.5 $ $Date: 2007-10-09 20:21:21 $
Author:
Richard P??ttler

Method Summary
 String getValue()
          Return the wrapped type.
 
Methods inherited from interface org.deri.iris.api.terms.IConcreteTerm
getDatatypeIRI, toCanonicalString
 
Methods inherited from interface org.deri.iris.api.terms.ITerm
isGround
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getValue

String getValue()
Return the wrapped type.

Specified by:
getValue in interface ITerm
Returns:
The term value.