org.graphstream.stream.file
Enum FileSinkImages.LayoutPolicy

java.lang.Object
  extended by java.lang.Enum<FileSinkImages.LayoutPolicy>
      extended by org.graphstream.stream.file.FileSinkImages.LayoutPolicy
All Implemented Interfaces:
Serializable, Comparable<FileSinkImages.LayoutPolicy>
Enclosing class:
FileSinkImages

public static enum FileSinkImages.LayoutPolicy
extends Enum<FileSinkImages.LayoutPolicy>

Layout policy. Specify how layout is computed. It can be computed in its own thread with a LayoutRunner but if image rendering takes too much time, node positions will be very different between two images. To have a better result, we can choose to compute layout when a new image is rendered. This will smooth the move of nodes in the movie.


Enum Constant Summary
COMPUTED_FULLY_AT_NEW_IMAGE
           
COMPUTED_IN_LAYOUT_RUNNER
           
COMPUTED_ONCE_AT_NEW_IMAGE
           
NO_LAYOUT
           
 
Method Summary
static FileSinkImages.LayoutPolicy valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FileSinkImages.LayoutPolicy[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NO_LAYOUT

public static final FileSinkImages.LayoutPolicy NO_LAYOUT

COMPUTED_IN_LAYOUT_RUNNER

public static final FileSinkImages.LayoutPolicy COMPUTED_IN_LAYOUT_RUNNER

COMPUTED_ONCE_AT_NEW_IMAGE

public static final FileSinkImages.LayoutPolicy COMPUTED_ONCE_AT_NEW_IMAGE

COMPUTED_FULLY_AT_NEW_IMAGE

public static final FileSinkImages.LayoutPolicy COMPUTED_FULLY_AT_NEW_IMAGE
Method Detail

values

public static FileSinkImages.LayoutPolicy[] 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 (FileSinkImages.LayoutPolicy c : FileSinkImages.LayoutPolicy.values())
    System.out.println(c);

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

valueOf

public static FileSinkImages.LayoutPolicy 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


Copyright © 2012. All Rights Reserved.