@PublicEvolving public static enum PipelineOptions.VertexDescriptionMode extends Enum<PipelineOptions.VertexDescriptionMode>
Enum Constant and Description |
---|
CASCADING
Organizes the description in a single line cascading mode, which is similar to name.
|
TREE
Organizes the description in a multi line tree mode.
|
Modifier and Type | Method and Description |
---|---|
static PipelineOptions.VertexDescriptionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PipelineOptions.VertexDescriptionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PipelineOptions.VertexDescriptionMode TREE
public static final PipelineOptions.VertexDescriptionMode CASCADING
public static PipelineOptions.VertexDescriptionMode[] values()
for (PipelineOptions.VertexDescriptionMode c : PipelineOptions.VertexDescriptionMode.values()) System.out.println(c);
public static PipelineOptions.VertexDescriptionMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2014–2024 The Apache Software Foundation. All rights reserved.