Interface RuntimeMapPropertyInfo
-
- All Superinterfaces:
AnnotationSource
,MapPropertyInfo<Type,Class>
,PropertyInfo<Type,Class>
,RuntimePropertyInfo
public interface RuntimeMapPropertyInfo extends RuntimePropertyInfo, MapPropertyInfo<Type,Class>
- Author:
- Kohsuke Kawaguchi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RuntimeNonElement
getKeyType()
Type of the key of the map.RuntimeNonElement
getValueType()
Type of the value of the map.-
Methods inherited from interface com.sun.xml.bind.v2.model.annotation.AnnotationSource
hasAnnotation, readAnnotation
-
Methods inherited from interface com.sun.xml.bind.v2.model.core.MapPropertyInfo
getXmlName, isCollectionNillable
-
Methods inherited from interface com.sun.xml.bind.v2.model.core.PropertyInfo
displayName, getAdapter, getExpectedMimeType, getName, getSchemaType, id, inlineBinaryData, isCollection, kind, parent
-
Methods inherited from interface com.sun.xml.bind.v2.model.runtime.RuntimePropertyInfo
elementOnlyContent, getAccessor, getIndividualType, getRawType, ref
-
-
-
-
Method Detail
-
getKeyType
RuntimeNonElement getKeyType()
Description copied from interface:MapPropertyInfo
Type of the key of the map. K ofHashMap<K,V>
- Specified by:
getKeyType
in interfaceMapPropertyInfo<Type,Class>
- Returns:
- never null.
-
getValueType
RuntimeNonElement getValueType()
Description copied from interface:MapPropertyInfo
Type of the value of the map. V ofHashMap<K,V>
- Specified by:
getValueType
in interfaceMapPropertyInfo<Type,Class>
- Returns:
- never null.
-
-