public enum RouteFlags extends Enum<RouteFlags>
Enum Constant and Description |
---|
CAPTURE |
CHILD_INHERIT |
NONE |
Modifier and Type | Method and Description |
---|---|
int |
toInteger()
Convert RouteFlags to the NFD code.
|
static RouteFlags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RouteFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RouteFlags NONE
public static final RouteFlags CHILD_INHERIT
public static final RouteFlags CAPTURE
public static RouteFlags[] values()
for (RouteFlags c : RouteFlags.values()) System.out.println(c);
public static RouteFlags 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 final int toInteger()
Copyright © 2016. All rights reserved.