Package org.spongepowered.api.data.value
Interface SetValue.Immutable<E>
- Type Parameters:
E
- The type of elements supported
- All Superinterfaces:
CollectionValue<E,
,Set<E>> CollectionValue.Immutable<E,
,Set<E>, SetValue.Immutable<E>, SetValue.Mutable<E>> Iterable<E>
,SetValue<E>
,Value<Set<E>>
,Value.Immutable<Set<E>>
public static interface SetValue.Immutable<E>
extends SetValue<E>, CollectionValue.Immutable<E,Set<E>,SetValue.Immutable<E>,SetValue.Mutable<E>>
Represents a type of
CollectionValue.Immutable
backed by a
Set
. The reasoning is that a Set
retains no ordering of the
elements it contains.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.spongepowered.api.data.value.CollectionValue
CollectionValue.Immutable<E,
C extends Collection<E>, I extends CollectionValue.Immutable<E, C, I, M>, M extends CollectionValue.Mutable<E, C, M, I>>, CollectionValue.Mutable<E, C extends Collection<E>, M extends CollectionValue.Mutable<E, C, M, I>, I extends CollectionValue.Immutable<E, C, I, M>> Nested classes/interfaces inherited from interface org.spongepowered.api.data.value.SetValue
SetValue.Immutable<E>, SetValue.Mutable<E>
Nested classes/interfaces inherited from interface org.spongepowered.api.data.value.Value
Value.Factory, Value.Immutable<E>, Value.Mutable<E>
-
Method Summary
Modifier and TypeMethodDescriptiondefault SetValue.Immutable
<E> Retrieves an immutable form of this value.Retrieves a mutable form of this value.default SetValue.Mutable
<E> Retrieves a copy in the mutable form of this value.Methods inherited from interface org.spongepowered.api.data.value.CollectionValue
all, contains, containsAll, isEmpty, size
Methods inherited from interface org.spongepowered.api.data.value.CollectionValue.Immutable
transform, with, withAll, withElement, without, withoutAll, withoutAll
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Method Details
-
asMutable
SetValue.Mutable<E> asMutable()Description copied from interface:Value
Retrieves a mutable form of this value. Due to the vague nature of the value itself, some cases can already provide aValue.Mutable
instance where this would simply return itself. In other cases, where the retrieved value is anValue.Immutable
instance, a new mutable value is created with the same key and values.- Specified by:
asMutable
in interfaceCollectionValue<E,
Set<E>> - Specified by:
asMutable
in interfaceCollectionValue.Immutable<E,
Set<E>, SetValue.Immutable<E>, SetValue.Mutable<E>> - Specified by:
asMutable
in interfaceSetValue<E>
- Specified by:
asMutable
in interfaceValue<E>
- Specified by:
asMutable
in interfaceValue.Immutable<E>
- Returns:
- A mutable value
-
asMutableCopy
Description copied from interface:Value
Retrieves a copy in the mutable form of this value. The new is created with the same key and values.- Specified by:
asMutableCopy
in interfaceCollectionValue<E,
Set<E>> - Specified by:
asMutableCopy
in interfaceCollectionValue.Immutable<E,
Set<E>, SetValue.Immutable<E>, SetValue.Mutable<E>> - Specified by:
asMutableCopy
in interfaceSetValue<E>
- Specified by:
asMutableCopy
in interfaceValue<E>
- Specified by:
asMutableCopy
in interfaceValue.Immutable<E>
- Returns:
- A mutable value
-
asImmutable
Description copied from interface:Value
Retrieves an immutable form of this value. Due to the vague nature of the value itself, some cases can already provide aValue.Immutable
instance where this would simply return itself. In other cases, where the retrieved value is aValue.Mutable
instance, a new immutable value is created with the same key and values.- Specified by:
asImmutable
in interfaceCollectionValue<E,
Set<E>> - Specified by:
asImmutable
in interfaceCollectionValue.Immutable<E,
Set<E>, SetValue.Immutable<E>, SetValue.Mutable<E>> - Specified by:
asImmutable
in interfaceSetValue<E>
- Specified by:
asImmutable
in interfaceValue<E>
- Specified by:
asImmutable
in interfaceValue.Immutable<E>
- Returns:
- An immutable value
-