Package omero
Interface _RTypeOperations
-
- All Known Subinterfaces:
_RArrayOperations
,_RBoolOperations
,_RClassOperations
,_RCollectionOperations
,_RDoubleOperations
,_RFloatOperations
,_RInternalOperations
,_RIntOperations
,_RListOperations
,_RLongOperations
,_RMapOperations
,_RObjectOperations
,_RSetOperations
,_RStringOperations
,_RTimeOperations
- All Known Implementing Classes:
_RArrayTie
,_RBoolTie
,_RClassTie
,_RCollectionTie
,_RDoubleTie
,_RFloatTie
,_RInternalTie
,_RIntTie
,_RListTie
,_RLongTie
,_RMapTie
,_RObjectTie
,_RSetTie
,_RStringTie
,_RTimeTie
,_RTypeTie
,RArray
,RBool
,RClass
,RCollection
,RDouble
,RFloat
,RInt
,RInternal
,RList
,RLong
,RMap
,RObject
,RSet
,RString
,RTime
,RType
public interface _RTypeOperations
Simple base ""protected"" class. Essentially abstract.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
compare(RType rhs, Ice.Current __current)
Equals-like functionality for all RTypes.
-
-
-
Method Detail
-
compare
int compare(RType rhs, Ice.Current __current)
Equals-like functionality for all RTypes. A return value of 0 means they are equivalent and were almost certainly created by the same constructor call, e.g.rbool(true).compare(rbool(true)) == 0
This method was originally added (Oct 2008) to force the base RType class to be abstract in all languages.- Parameters:
__current
- The Current object for the invocation.
-
-