Enum Class ParticleSize
- All Implemented Interfaces:
Serializable,Comparable<ParticleSize>,Constable
Represents the Particle Size Display for a
ParticleShape.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents a detailed Particle Pentagon.Represents a large, detailed Particle Ring.Represents a large, detailed Particle Triangle.Represents a large Particle Ring.Represents a large Particle Square.Represents a large Particle Triangle.Represents a medium Particle Triangle.Represents a Particle Pentagon.Represents a Particle Pentagon Ring, a pentagon inside a ring.Represents a small, detailed Particle Ring.Represetns a small Particle Ring.Represents a small Particle Square.Represents a small Particle Triangle.Represents a Particle Ring, a square inside a ring. -
Method Summary
Modifier and TypeMethodDescriptionstatic ParticleSizeReturns the enum constant of this class with the specified name.static ParticleSize[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SMALL_RING
Represetns a small Particle Ring. -
SMALL_DETAILED_RING
Represents a small, detailed Particle Ring. -
LARGE_RING
Represents a large Particle Ring. -
LARGE_DETAILED_RING
Represents a large, detailed Particle Ring. -
SMALL_TRIANGLE
Represents a small Particle Triangle. -
MEDIUM_TRIANGLE
Represents a medium Particle Triangle. -
LARGE_TRIANGLE
Represents a large Particle Triangle. -
LARGE_DETAILED_TRIANGLE
Represents a large, detailed Particle Triangle. -
SMALL_SQUARE
Represents a small Particle Square. -
LARGE_SQUARE
Represents a large Particle Square. -
PENTAGON
Represents a Particle Pentagon. -
DETAILED_PENTAGON
Represents a detailed Particle Pentagon. -
SQUARE_RING
Represents a Particle Ring, a square inside a ring. -
PENTAGON_RING
Represents a Particle Pentagon Ring, a pentagon inside a ring.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-