All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.z3.enumerations.Z3_param_kind Maven / Gradle / Ivy

There is a newer version: 4.13.4
Show newest version
/**
 *  Automatically generated file
 **/

package com.microsoft.z3.enumerations;

/**
 * Z3_param_kind
 **/
public enum Z3_param_kind {
    Z3_PK_UINT (0),
    Z3_PK_BOOL (1),
    Z3_PK_DOUBLE (2),
    Z3_PK_SYMBOL (3),
    Z3_PK_STRING (4),
    Z3_PK_OTHER (5),
    Z3_PK_INVALID (6);

    private final int intValue;

    Z3_param_kind(int v) {
        this.intValue = v;
    }

    public static final Z3_param_kind fromInt(int v) {
        for (Z3_param_kind k: values()) 
            if (k.intValue == v) return k;
        return values()[0];
    }

    public final int toInt() { return this.intValue; }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy