cz.cuni.jagrlib.piece
Enum ClusterDotDither.DotType

java.lang.Object
  extended by java.lang.Enum<ClusterDotDither.DotType>
      extended by cz.cuni.jagrlib.piece.ClusterDotDither.DotType
All Implemented Interfaces:
Serializable, Comparable<ClusterDotDither.DotType>
Enclosing class:
ClusterDotDither

protected static enum ClusterDotDither.DotType
extends Enum<ClusterDotDither.DotType>

Implemented internal dot shapes.


Enum Constant Summary
LEVEL_SET
          External level-set.
RECTANGLE
          Rectangle dot (with or w/o external function).
ROUND
          Round dot (lacking special treatment of the scale end).
ROUND_SQUARE
          Round dot with square transition.
 
Method Summary
static ClusterDotDither.DotType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ClusterDotDither.DotType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ROUND

public static final ClusterDotDither.DotType ROUND
Round dot (lacking special treatment of the scale end).


ROUND_SQUARE

public static final ClusterDotDither.DotType ROUND_SQUARE
Round dot with square transition.


RECTANGLE

public static final ClusterDotDither.DotType RECTANGLE
Rectangle dot (with or w/o external function).


LEVEL_SET

public static final ClusterDotDither.DotType LEVEL_SET
External level-set.

Method Detail

values

public static ClusterDotDither.DotType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ClusterDotDither.DotType c : ClusterDotDither.DotType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ClusterDotDither.DotType valueOf(String name)
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 name
NullPointerException - if the argument is null