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

cdc.mf.ea.EaConnectorDirection Maven / Gradle / Ivy

The newest version!
package cdc.mf.ea;

public enum EaConnectorDirection {
    NONE,
    FORWARD,
    BACKWARD,
    BOTH;

    public EaConnectorDirection opposite() {
        if (this == FORWARD) {
            return BACKWARD;
        } else if (this == BACKWARD) {
            return FORWARD;
        } else {
            return this;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy