Package score
Interface VarDB<E>
-
- Type Parameters:
E- Variable type. It shall be readable and writable class.
public interface VarDB<E>A variable DB holds one value.- See Also:
ObjectReader,ObjectWriter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Eget()Returns the current value.EgetOrDefault(E defaultValue)Returns the current value ordefaultValueif the current value isnull.voidset(E value)Sets value.
-