Package alexiil.mc.lib.attributes.misc
Class DestroyableRef<T>
java.lang.Object
alexiil.mc.lib.attributes.misc.DestroyableRef<T>
- All Implemented Interfaces:
 Reference<T>
A 
Reference that can be modified until destroy() is called, after which all calls to
 set(Object) and isValid(Object) will return false.- 
Constructor Details
- 
DestroyableRef
 
 - 
 - 
Method Details
- 
destroy
public void destroy()Preventsset(Object)from returning true in the future. - 
get
- Specified by:
 getin interfaceReference<T>- Returns:
 - The object referenced. Note that you should generally not modify the returned value directly - instead
         copy it before passing it to 
Reference.set(Object)orReference.isValid(Object)to see if your modifications are permitted. 
 - 
set
 - 
isValid
- Specified by:
 isValidin interfaceReference<T>- Returns:
 - True if 
Reference.set(Object)was called with the same value. 
 
 -