public enum PredicateAsNounConversionType extends Enum<PredicateAsNounConversionType>
| Enum Constant and Description |
|---|
POSSESSIVE
Predicate is combined with possessive form of subject.
|
REDUCED_RELATIVE_CLAUSE
Relative clause that is not marked by an explicit relative pronoun or
complementizer such as who, which or that.
|
RELATIVE_CLAUSE_COMPLEMENTIZER
Relative clause is bound by complementizer that.
|
RELATIVE_CLAUSE_PRONOUN
Relative clause is bound by relative pronoun which.
|
| Modifier and Type | Method and Description |
|---|---|
static PredicateAsNounConversionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PredicateAsNounConversionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PredicateAsNounConversionType POSSESSIVE
public static final PredicateAsNounConversionType RELATIVE_CLAUSE_PRONOUN
public static final PredicateAsNounConversionType RELATIVE_CLAUSE_COMPLEMENTIZER
public static final PredicateAsNounConversionType REDUCED_RELATIVE_CLAUSE
public static PredicateAsNounConversionType[] values()
for (PredicateAsNounConversionType c : PredicateAsNounConversionType.values()) System.out.println(c);
public static PredicateAsNounConversionType 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 © 2020. All rights reserved.