java.lang.Object | |
↳ | com.atlassian.bitbucket.property.PropertyMap |
Immutable collection of properties mapped by string keys. Allows for storing any object as a property value.
It is strongly encouraged that the property values can be marshalled to/from JSON, or they will not be included in REST responses.
Nested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
PropertyMap.Builder |
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
EMPTY |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Convenience method to return the property value as an instance of
Iterable with element type E . | |||||||||||
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Convenience method to return the property value as an instance of Iterable
with element type E
.
key | property key |
---|---|
iterableType | class representing the expected type of the iterable |
elementType | class representing the expected type of the elements |
I
, or null
, if this property map does not contain a
property with key key
ClassCastException | if the property exists, but is not of expected type iterableType
|
---|