Package io.ciera.runtime.summit.types
Class IntegerUDT
- java.lang.Object
-
- io.ciera.runtime.summit.types.UDT<Integer>
-
- io.ciera.runtime.summit.types.IntegerUDT
-
- All Implemented Interfaces:
IXtumlType,Comparable<Object>
public abstract class IntegerUDT extends UDT<Integer>
-
-
Constructor Summary
Constructors Constructor Description IntegerUDT()IntegerUDT(Object o)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends IntegerUDT>
Tadd(Object o)Integercast(Object o)static IntegercastInteger(Object o)intcompareTo(Object o)<T extends IntegerUDT>
Tdivide(T o)booleanequals(Object o)<T extends IntegerUDT>
Tmultiply(T o)<T extends IntegerUDT>
Tremainder(T o)<T extends IntegerUDT>
Tsubtract(T o)StringtoString()-
Methods inherited from class io.ciera.runtime.summit.types.UDT
binop, cast, greaterThan, greaterThanOrEqual, lessThan, lessThanOrEqual, promote, serialize
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.ciera.runtime.summit.types.IXtumlType
equality, inequality, oneWhere
-
-
-
-
Constructor Detail
-
IntegerUDT
public IntegerUDT()
-
IntegerUDT
public IntegerUDT(Object o) throws XtumlException
- Throws:
XtumlException
-
-
Method Detail
-
add
public <T extends IntegerUDT> T add(Object o) throws XtumlException
- Throws:
XtumlException
-
subtract
public <T extends IntegerUDT> T subtract(T o) throws XtumlException
- Throws:
XtumlException
-
multiply
public <T extends IntegerUDT> T multiply(T o) throws XtumlException
- Throws:
XtumlException
-
divide
public <T extends IntegerUDT> T divide(T o) throws XtumlException
- Throws:
XtumlException
-
remainder
public <T extends IntegerUDT> T remainder(T o) throws XtumlException
- Throws:
XtumlException
-
cast
public Integer cast(Object o) throws XtumlException
- Specified by:
castin classUDT<Integer>- Throws:
XtumlException
-
castInteger
public static Integer castInteger(Object o) throws XtumlException
- Throws:
XtumlException
-
compareTo
public int compareTo(Object o)
-
-