Package org.spongepowered.api.data
Interface DataManipulator.Mutable.Factory
- 
- Enclosing interface:
- DataManipulator.Mutable
 
 public static interface DataManipulator.Mutable.FactoryA factory to create newDataManipulator.Mutablemanipulators.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description DataManipulator.Mutableof()Creates an empty mutable manipulator that can be used as a sink accepting new values.DataManipulator.Mutableof(java.lang.Iterable<? extends Value<?>> values)Creates a new manipulator with all the provided values.DataManipulator.Mutableof(ValueContainer valueContainer)Creates a new manipulator with all the possible values from the givenValueContainer.
 
- 
- 
- 
Method Detail- 
ofDataManipulator.Mutable of() Creates an empty mutable manipulator that can be used as a sink accepting new values.- Returns:
- A new empty manipulator
 
 - 
ofDataManipulator.Mutable of(java.lang.Iterable<? extends Value<?>> values) Creates a new manipulator with all the provided values.- Parameters:
- values- the values to populate
- Returns:
- The new manipulator with the provided values
 
 - 
ofDataManipulator.Mutable of(ValueContainer valueContainer) Creates a new manipulator with all the possible values from the givenValueContainer.- Parameters:
- valueContainer- the value container containing all values
- Returns:
- The new manipulator with all values from the given container
 
 
- 
 
-