Z3
Data Structures | Public Member Functions | Static Public Member Functions | Data Fields
Z3_parameter_kind Enum Reference

Public Member Functions

 Z3_parameter_kind (int v)
 
final int toInt ()
 

Static Public Member Functions

static final Z3_parameter_kind fromInt (int v)
 

Data Fields

 Z3_PARAMETER_INT =(0)
 
 Z3_PARAMETER_DOUBLE =(1)
 
 Z3_PARAMETER_RATIONAL =(2)
 
 Z3_PARAMETER_SYMBOL =(3)
 
 Z3_PARAMETER_SORT =(4)
 
 Z3_PARAMETER_AST =(5)
 
 Z3_PARAMETER_FUNC_DECL =(6)
 

Detailed Description

Z3_parameter_kind

Definition at line 13 of file Z3_parameter_kind.java.

Constructor & Destructor Documentation

§ Z3_parameter_kind()

Z3_parameter_kind ( int  v)
inline

Definition at line 24 of file Z3_parameter_kind.java.

24  {
25  this.intValue = v;
26  }

Member Function Documentation

§ fromInt()

static final Z3_parameter_kind fromInt ( int  v)
inlinestatic

Definition at line 38 of file Z3_parameter_kind.java.

Referenced by FuncDecl.getParameters().

38  {
39  Z3_parameter_kind k = Z3_parameter_kind_MappingHolder.intMapping.get(v);
40  if (k != null) return k;
41  throw new IllegalArgumentException("Illegal value " + v + " for Z3_parameter_kind");
42  }
Z3_parameter_kind
The different kinds of parameters that can be associated with function symbols.
Definition: z3_api.h:139

§ toInt()

final int toInt ( )
inline

Definition at line 44 of file Z3_parameter_kind.java.

44 { return this.intValue; }

Field Documentation

§ Z3_PARAMETER_AST

Z3_PARAMETER_AST =(5)

Definition at line 19 of file Z3_parameter_kind.java.

Referenced by FuncDecl.Parameter.getAST().

§ Z3_PARAMETER_DOUBLE

Z3_PARAMETER_DOUBLE =(1)

Definition at line 15 of file Z3_parameter_kind.java.

Referenced by FuncDecl.Parameter.getDouble().

§ Z3_PARAMETER_FUNC_DECL

Z3_PARAMETER_FUNC_DECL =(6)

Definition at line 20 of file Z3_parameter_kind.java.

Referenced by FuncDecl.Parameter.getFuncDecl().

§ Z3_PARAMETER_INT

Z3_PARAMETER_INT =(0)

Definition at line 14 of file Z3_parameter_kind.java.

Referenced by FuncDecl.Parameter.getInt().

§ Z3_PARAMETER_RATIONAL

Z3_PARAMETER_RATIONAL =(2)

Definition at line 16 of file Z3_parameter_kind.java.

Referenced by FuncDecl.Parameter.getRational().

§ Z3_PARAMETER_SORT

Z3_PARAMETER_SORT =(4)

Definition at line 18 of file Z3_parameter_kind.java.

Referenced by FuncDecl.Parameter.getSort().

§ Z3_PARAMETER_SYMBOL

Z3_PARAMETER_SYMBOL =(3)

Definition at line 17 of file Z3_parameter_kind.java.

Referenced by FuncDecl.Parameter.getSymbol().