Module com.sun.xml.bind
Interface RuntimePropertyInfo
-
- All Superinterfaces:
AnnotationSource,PropertyInfo<Type,Class>
- All Known Subinterfaces:
RuntimeAttributePropertyInfo,RuntimeElementPropertyInfo,RuntimeMapPropertyInfo,RuntimeReferencePropertyInfo,RuntimeValuePropertyInfo
public interface RuntimePropertyInfo extends PropertyInfo<Type,Class>
PropertyInfothat exposes more information.- Author:
- Kohsuke Kawaguchi (kk@kohsuke.org)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanelementOnlyContent()Returns true if this property has an element-only content.AccessorgetAccessor()Gets theAccessorfor this property.TypegetIndividualType()Gets the type of the individual item.TypegetRawType()Gets the "raw" type of the field.Collection<? extends RuntimeTypeInfo>ref()-
Methods inherited from interface org.glassfish.jaxb.core.v2.model.annotation.AnnotationSource
hasAnnotation, readAnnotation
-
Methods inherited from interface org.glassfish.jaxb.core.v2.model.core.PropertyInfo
displayName, getAdapter, getExpectedMimeType, getName, getSchemaType, id, inlineBinaryData, isCollection, kind, parent
-
-
-
-
Method Detail
-
ref
Collection<? extends RuntimeTypeInfo> ref()
- Specified by:
refin interfacePropertyInfo<Type,Class>
-
getAccessor
Accessor getAccessor()
Gets theAccessorfor 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)
- Returns:
- never null.
- See Also:
Accessor.optimize(JAXBContextImpl)
-
elementOnlyContent
boolean elementOnlyContent()
Returns true if this property has an element-only content. False otherwise.
-
getRawType
Type getRawType()
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 asCollection<Integer>, this method returnsCollection<Integer>.- Returns:
- always non-null.
-
getIndividualType
Type getIndividualType()
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 asgetRawType(). For acollection property, this is the type used to store individual value. So ifgetRawType()isCollection<Integer>, this method will returnInteger.- Returns:
- always non-null.
-
-