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

com.distelli.persistence.TableStatus Maven / Gradle / Ivy

There is a newer version: 3.8.16
Show newest version
package com.distelli.persistence;

public enum TableStatus
{
    UPDATING,
    CREATING,
    DELETING,
    ACTIVE;

    private static final TableStatus[] values = values();

    public static TableStatus valueOf(int ordinal) {
        if ( ordinal < 0 || ordinal >= values.length ) return null;
        return values[ordinal];
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy