public static enum DseFunctionMetadata.Monotonicity extends Enum<DseFunctionMetadata.Monotonicity>
| Enum Constant and Description | 
|---|
| FULLY_MONOTONICIndicates that the function is fully monotonic on all of its arguments. | 
| NOT_MONOTONICIndicates that the function is not monotonic. | 
| PARTIALLY_MONOTONICIndicates that the function is partially monotonic, meaning that partial application over
 some of the its arguments is monotonic. | 
| Modifier and Type | Method and Description | 
|---|---|
| static DseFunctionMetadata.Monotonicity | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static DseFunctionMetadata.Monotonicity[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DseFunctionMetadata.Monotonicity FULLY_MONOTONIC
public static final DseFunctionMetadata.Monotonicity PARTIALLY_MONOTONIC
public static final DseFunctionMetadata.Monotonicity NOT_MONOTONIC
public static DseFunctionMetadata.Monotonicity[] values()
for (DseFunctionMetadata.Monotonicity c : DseFunctionMetadata.Monotonicity.values()) System.out.println(c);
public static DseFunctionMetadata.Monotonicity 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 © 2017–2025. All rights reserved.