public static enum CHAlgoFactoryDecorator.EdgeBasedCHMode extends Enum<CHAlgoFactoryDecorator.EdgeBasedCHMode>
| Enum Constant and Description |
|---|
EDGE_AND_NODE
for encoders with enabled turn costs edge-based CH will be performed and node-based CH preparation will be
performed for all encoders
|
EDGE_OR_NODE
for encoders with enabled turn costs edge-based CH and otherwise node-based CH preparation will be performed
|
OFF
no edge-based CH preparation will be performed
|
| Modifier and Type | Method and Description |
|---|---|
static CHAlgoFactoryDecorator.EdgeBasedCHMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CHAlgoFactoryDecorator.EdgeBasedCHMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CHAlgoFactoryDecorator.EdgeBasedCHMode OFF
public static final CHAlgoFactoryDecorator.EdgeBasedCHMode EDGE_OR_NODE
public static final CHAlgoFactoryDecorator.EdgeBasedCHMode EDGE_AND_NODE
public static CHAlgoFactoryDecorator.EdgeBasedCHMode[] values()
for (CHAlgoFactoryDecorator.EdgeBasedCHMode c : CHAlgoFactoryDecorator.EdgeBasedCHMode.values()) System.out.println(c);
public static CHAlgoFactoryDecorator.EdgeBasedCHMode 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 © 2012–2019. All rights reserved.