@Authors(value="Nikolche Mihajlovski") @Since(value="2.0.0") public enum PropKind extends Enum<PropKind>
Enum Constant and Description |
---|
COLLECTION |
MAP |
NORMAL |
VAR |
Modifier and Type | Method and Description |
---|---|
static PropKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropKind NORMAL
public static final PropKind COLLECTION
public static final PropKind MAP
public static final PropKind VAR
public static PropKind[] values()
for (PropKind c : PropKind.values()) System.out.println(c);
public static PropKind 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 © 2014–2016 Nikolche Mihajlovski and contributors. All rights reserved.