Package org.bitcoinj.utils
Class BaseTaggableObject
java.lang.Object
org.bitcoinj.utils.BaseTaggableObject
- All Implemented Interfaces:
 TaggableObject
- Direct Known Subclasses:
 Wallet
Deprecated.
Applications should use another mechanism to persist application state data
A simple implementation of 
TaggableObject that uses a hashmap that is
 synchronized on this object's Java monitor.- 
Field Summary
Fields - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptioncom.google.protobuf.ByteStringDeprecated.getTags()Deprecated.com.google.protobuf.ByteStringmaybeGetTag(String tag) Deprecated.voidDeprecated. 
- 
Field Details
- 
tags
Deprecated. 
 - 
 - 
Constructor Details
- 
BaseTaggableObject
public BaseTaggableObject()Deprecated. 
 - 
 - 
Method Details
- 
maybeGetTag
Deprecated.Description copied from interface:TaggableObjectReturns the immutable byte array associated with the given tag name, or null if there is none.- Specified by:
 maybeGetTagin interfaceTaggableObject
 - 
getTag
Deprecated.Description copied from interface:TaggableObjectReturns the immutable byte array associated with the given tag name, or throwsIllegalArgumentExceptionif that tag wasn't set yet.- Specified by:
 getTagin interfaceTaggableObject
 - 
setTag
Deprecated.Description copied from interface:TaggableObjectAssociates the given immutable byte array with the string tag. See the docs for TaggableObject to learn more.- Specified by:
 setTagin interfaceTaggableObject
 - 
getTags
Deprecated.Description copied from interface:TaggableObjectReturns a copy of all the tags held by this object.- Specified by:
 getTagsin interfaceTaggableObject
 
 -