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

com.strobel.core.IFreezable Maven / Gradle / Ivy

There is a newer version: 2.5.0.Final
Show newest version
package com.strobel.core;

/**
 * @author Mike Strobel
 */
public interface IFreezable {
    boolean canFreeze();
    boolean isFrozen();
    void freeze()
        throws IllegalStateException;
    boolean tryFreeze();
    void freezeIfUnfrozen() throws IllegalStateException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy