public enum PolygonIntersectionMode extends Enum<PolygonIntersectionMode>
| Enum Constant and Description |
|---|
AVERAGE |
INTERSECTION |
NONE |
UNION |
| Modifier and Type | Method and Description |
|---|---|
static PolygonIntersectionMode |
fromString(String key) |
String |
getKey() |
static PolygonIntersectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PolygonIntersectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolygonIntersectionMode AVERAGE
public static final PolygonIntersectionMode UNION
public static final PolygonIntersectionMode INTERSECTION
public static final PolygonIntersectionMode NONE
public static PolygonIntersectionMode[] values()
for (PolygonIntersectionMode c : PolygonIntersectionMode.values()) System.out.println(c);
public static PolygonIntersectionMode 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 nullpublic static PolygonIntersectionMode fromString(String key)
public String getKey()
Copyright © 2017. All rights reserved.