public static enum VertexMergerGroup.ResolutionRule extends Enum<VertexMergerGroup.ResolutionRule>
Enum Constant and Description |
---|
MaxValue
use the maximum z value
|
MeanValue
use the mean z value
|
MinValue
use the minimum z value
|
Modifier and Type | Method and Description |
---|---|
static VertexMergerGroup.ResolutionRule |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VertexMergerGroup.ResolutionRule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VertexMergerGroup.ResolutionRule MinValue
public static final VertexMergerGroup.ResolutionRule MeanValue
public static final VertexMergerGroup.ResolutionRule MaxValue
public static VertexMergerGroup.ResolutionRule[] values()
for (VertexMergerGroup.ResolutionRule c : VertexMergerGroup.ResolutionRule.values()) System.out.println(c);
public static VertexMergerGroup.ResolutionRule 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 © 2021. All rights reserved.