Package org.graphstream.stream.file
Enum FileSinkImages.LayoutPolicy
- All Implemented Interfaces:
Serializable
,Comparable<FileSinkImages.LayoutPolicy>
,java.lang.constant.Constable
- 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.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPUTED_FULLY_AT_NEW_IMAGE
COMPUTED_IN_LAYOUT_RUNNER
COMPUTED_ONCE_AT_NEW_IMAGE
NO_LAYOUT
-
Method Summary
Modifier and Type Method Description 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, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-