| com.sun.xml.bind.v2.model.runtime.RuntimePropertyInfo
elementOnlyContent | public boolean elementOnlyContent()(Code) | | Returns true if this property has an element-only content. False otherwise.
|
getAccessor | Accessor getAccessor()(Code) | | Gets the
Accessor for this property.
Even for a multi-value property, this method returns an accessor
to that property. IOW, the accessor works against the raw type.
This methods returns unoptimized accessor (because optimization
accessors are often combined into bigger pieces, and optimization
generally works better if you can look at a bigger piece, as opposed
to individually optimize a smaller components)
never null. See Also: Accessor.optimize |
getIndividualType | Type getIndividualType()(Code) | | Gets the type of the individual item.
The individual type is the signature of the property used to store individual
values. For a non-collection field, this is the same as
RuntimePropertyInfo.getRawType() .
For acollection property, this is the type used to store individual value.
So if
RuntimePropertyInfo.getRawType() is
Collection , this method will
return
Integer .
always non-null. |
getRawType | Type getRawType()(Code) | | Gets the "raw" type of the field.
The raw type is the actual signature of the property.
For example, if the field is the primitive int, this will be the primitive int.
If the field is Object, this will be Object.
If the property is the collection and typed as
Collection ,
this method returns
Collection .
always non-null. |
|
|