public enum FetchMode extends Enum<FetchMode>
EdgeIteratorState.fetchWayGeometry(FetchMode). See also docs/core/low-level-api.md| Enum Constant and Description | 
|---|
| ALL | 
| BASE_AND_PILLAR | 
| PILLAR_AND_ADJ | 
| PILLAR_ONLY | 
| TOWER_ONLY | 
| Modifier and Type | Method and Description | 
|---|---|
| static FetchMode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static FetchMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final FetchMode TOWER_ONLY
public static final FetchMode PILLAR_ONLY
public static final FetchMode BASE_AND_PILLAR
public static final FetchMode PILLAR_AND_ADJ
public static final FetchMode ALL
public static FetchMode[] values()
for (FetchMode c : FetchMode.values()) System.out.println(c);
public static FetchMode 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–2020. All rights reserved.