public enum LogicalValue extends Enum<LogicalValue>
| Enum Constant and Description |
|---|
ANY
Match ANY: '*'.
|
NA
Not Application: '-'.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getAbbreviation()
Gets the component abbreviation for the logical value.
|
static LogicalValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogicalValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalValue ANY
public static final LogicalValue NA
public static LogicalValue[] values()
for (LogicalValue c : LogicalValue.values()) System.out.println(c);
public static LogicalValue 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 String getAbbreviation()
Copyright © 2018–2025. All rights reserved.