public class Item extends Object
CompositeType
, TabularType
, and ArrayType
.
The normal creation throws a checked exception, making it impossible to use
them in a static initializer. The constructors are also not very suitable for
static construction.
An Item instance describes an item in a Composite Type. It groups the triplet
of name, description, and Open Type. These Item instances allows the
definitions of an item to stay together.Constructor and Description |
---|
Item(String name,
String description,
OpenType type,
String... restrictions)
Create a triple of name, description, and type.
|
Modifier and Type | Method and Description |
---|---|
static ArrayType |
arrayType(int dim,
OpenType elementType)
Return a new Array Type.
|
static CompositeType |
compositeType(String name,
String description,
Item... items)
Create a Composite Type
|
static CompositeType |
extend(CompositeType parent,
String name,
String description,
Item... items)
Extend a Composite Type by adding new items.
|
static TabularType |
tabularType(String name,
String description,
CompositeType rowType,
String... index)
Create a Tabular Type.
|
public Item(String name, String description, OpenType type, String... restrictions)
name
- The name of the item.description
- The description of the item.type
- The Open Type of this item.restrictions
- Ignored, contains list of restrictionspublic static TabularType tabularType(String name, String description, CompositeType rowType, String... index)
name
- The name of the Tabular Type.description
- The description of the Tabular Type.rowType
- The Open Type for a rowindex
- The names of the items that form the index .RuntimeException
- when the Tabular Type throws an
OpenDataExceptionpublic static CompositeType compositeType(String name, String description, Item... items)
name
- The name of the Tabular Type.description
- The description of the Tabular Type.items
- The items that describe the composite type.RuntimeException
- when the Tabular Type throws an
OpenDataExceptionpublic static ArrayType arrayType(int dim, OpenType elementType)
dim
- The dimensionelementType
- The element typepublic static CompositeType extend(CompositeType parent, String name, String description, Item... items)
parent
- The parent type, can be null
name
- The name of the typedescription
- The description of the typeitems
- The items that should be added/override to the parent typeRuntimeException
- when an OpenDataException is thrownCopyright © OSGi Alliance (2000, 2015). All Rights Reserved. Licensed under the OSGi Specification License, Version 2.0