Package org.openjdk.jmc.common.item
Interface IItem
-
- All Known Subinterfaces:
IQuantity
,ITypedQuantity<U>
- All Known Implementing Classes:
ItemBuilder.ArrayItem
,ItemBuilder.Item1
,ItemBuilder.Item11
,ItemBuilder.Item13
,ItemBuilder.Item15
,ItemBuilder.Item17
,ItemBuilder.Item3
,ItemBuilder.Item5
,ItemBuilder.Item7
,ItemBuilder.Item9
,ScalarQuantity
,ScalarQuantity.DoubleStored
,ScalarQuantity.LongStored
public interface IItem
An item of information. Item values are accessed by usingmember accessors
retrieved from the item type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IType<?>
getType()
The type of this item (analogous toObject.getClass()
).
-
-
-
Method Detail
-
getType
IType<?> getType()
The type of this item (analogous toObject.getClass()
).- Returns:
- the type of this item
-
-