org.graphstream.stream.file
Enum FileSinkImages.LayoutPolicy
java.lang.Object
java.lang.Enum<FileSinkImages.LayoutPolicy>
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.
NO_LAYOUT
public static final FileSinkImages.LayoutPolicy NO_LAYOUT
COMPUTED_IN_LAYOUT_RUNNER
public static final FileSinkImages.LayoutPolicy COMPUTED_IN_LAYOUT_RUNNER
COMPUTED_AT_NEW_IMAGE
public static final FileSinkImages.LayoutPolicy COMPUTED_AT_NEW_IMAGE
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 © 2011. All Rights Reserved.