public enum PropertyType extends Enum<PropertyType>
Property
.
Properties can either be their standard form or value form. Note that this is different than a property
class like Property
or VertexProperty
. This enumeration is used to denote those aspects of a
property that can not be realized by class alone.Modifier and Type | Method and Description |
---|---|
abstract boolean |
forProperties() |
abstract boolean |
forValues() |
static PropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyType PROPERTY
public static final PropertyType VALUE
public static PropertyType[] values()
for (PropertyType c : PropertyType.values()) System.out.println(c);
public static PropertyType 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 abstract boolean forProperties()
public abstract boolean forValues()
Copyright © 2013–2020 Apache Software Foundation. All rights reserved.