Enum ImmutableShortSetFactoryImpl
java.lang.Object
java.lang.Enum<ImmutableShortSetFactoryImpl>
org.eclipse.collections.impl.set.immutable.primitive.ImmutableShortSetFactoryImpl
- All Implemented Interfaces:
Serializable
,Comparable<ImmutableShortSetFactoryImpl>
,java.lang.constant.Constable
,ImmutableShortSetFactory
public enum ImmutableShortSetFactoryImpl extends Enum<ImmutableShortSetFactoryImpl> implements ImmutableShortSetFactory
ImmutableShortSetFactoryImpl is a factory implementation which creates instances of type
ImmutableShortSet
.
This file was automatically generated from template file immutablePrimitiveSetFactoryImpl.stg.- Since:
- 4.0.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
Modifier and Type Method Description ImmutableShortSet
empty()
ImmutableShortSet
of()
Same asImmutableShortSetFactory.empty()
.ImmutableShortSet
of(short one)
Same asImmutableShortSetFactory.with(short)
.ImmutableShortSet
of(short... items)
ImmutableShortSet
ofAll(Iterable<Short> iterable)
ImmutableShortSet
ofAll(ShortIterable items)
static ImmutableShortSetFactoryImpl
valueOf(String name)
Returns the enum constant of this type with the specified name.static ImmutableShortSetFactoryImpl[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.ImmutableShortSet
with()
Same asImmutableShortSetFactory.empty()
.ImmutableShortSet
with(short one)
ImmutableShortSet
with(short... items)
ImmutableShortSet
withAll(Iterable<Short> iterable)
ImmutableShortSet
withAll(ShortIterable items)
Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
empty
- Specified by:
empty
in interfaceImmutableShortSetFactory
-
of
Description copied from interface:ImmutableShortSetFactory
Same asImmutableShortSetFactory.empty()
.- Specified by:
of
in interfaceImmutableShortSetFactory
-
with
Description copied from interface:ImmutableShortSetFactory
Same asImmutableShortSetFactory.empty()
.- Specified by:
with
in interfaceImmutableShortSetFactory
-
of
Description copied from interface:ImmutableShortSetFactory
Same asImmutableShortSetFactory.with(short)
.- Specified by:
of
in interfaceImmutableShortSetFactory
-
with
- Specified by:
with
in interfaceImmutableShortSetFactory
-
of
Description copied from interface:ImmutableShortSetFactory
- Specified by:
of
in interfaceImmutableShortSetFactory
-
with
- Specified by:
with
in interfaceImmutableShortSetFactory
-
ofAll
Description copied from interface:ImmutableShortSetFactory
- Specified by:
ofAll
in interfaceImmutableShortSetFactory
-
withAll
- Specified by:
withAll
in interfaceImmutableShortSetFactory
-
ofAll
Description copied from interface:ImmutableShortSetFactory
- Specified by:
ofAll
in interfaceImmutableShortSetFactory
- Since:
- 10.0
-
withAll
- Specified by:
withAll
in interfaceImmutableShortSetFactory
- Since:
- 10.0
-