public enum AttributeImplicitName extends Enum<AttributeImplicitName>
| Enum Constant and Description |
|---|
AS_IS |
EXPLICIT_PREFERRED |
IMPLICIT_PREFERRED |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isExplicit() |
boolean |
isImplicit() |
boolean |
isNoChange() |
static AttributeImplicitName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeImplicitName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeImplicitName AS_IS
public static final AttributeImplicitName IMPLICIT_PREFERRED
public static final AttributeImplicitName EXPLICIT_PREFERRED
public static AttributeImplicitName[] values()
for (AttributeImplicitName c : AttributeImplicitName.values()) System.out.println(c);
public static AttributeImplicitName 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 boolean isNoChange()
public boolean isImplicit()
public boolean isExplicit()
Copyright © 2020. All rights reserved.