public enum ParticleDirectionalSpread extends java.lang.Enum<ParticleDirectionalSpread> implements IParticlePositionPipe
Modifier and Type | Method and Description |
---|---|
java.util.List<ParticlePosition> |
pipe(ParticlePosition pos) |
static ParticleDirectionalSpread |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParticleDirectionalSpread[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
andThen, pipe
public static final ParticleDirectionalSpread SMALL
public static final ParticleDirectionalSpread MEDIUM
public static final ParticleDirectionalSpread LARGE
public static final ParticleDirectionalSpread MASSIVE
public static ParticleDirectionalSpread[] values()
for (ParticleDirectionalSpread c : ParticleDirectionalSpread.values()) System.out.println(c);
public static ParticleDirectionalSpread valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.util.List<ParticlePosition> pipe(ParticlePosition pos)
pipe
in interface IParticlePositionPipe