public enum Domain extends Enum<Domain>
property
predicates. For instance, an object's
implementation may manipulate MODULO
values, but those values are
also numerically REAL
or IMAGINARY
. Instead, these lemma
are hints regarding the general domain of values produced by specific
implementation strategies, such as real number vectors, functions
, or more amorphous algebraic
structures.Enum Constant and Description |
---|
ALGEBRAIC
An abstract, algebraic structure with no additional known properties
|
COMPLEX
|
EMPTY
The empty set,
null or void . |
FUNCTION
A domain of functions
|
IMAGINARY
A vector into the set of imaginary numbers
|
MODULO
A modulo, or finite ring of real numbers
|
REAL
A vector into the set of real numbers
|
TEXT
A character tuple
|
UNKNOWN
Not enough is known about this domain
|
Modifier and Type | Method and Description |
---|---|
static Domain |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Domain[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Domain ALGEBRAIC
public static final Domain EMPTY
null
or void
. Not that the empty set is a
member of every domain category.public static Domain[] values()
for (Domain c : Domain.values()) System.out.println(c);
public static Domain 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 © 2006-2012 Ware-Squared Software Development. All Rights Reserved.