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

com.activitystream.model.relations.Direction Maven / Gradle / Ivy

Go to download

AS-SDK is a java library to allow easy interoperability with Activity Stream.

There is a newer version: 0.1.25
Show newest version
package com.activitystream.model.relations;

public enum Direction {
    OUT,
    IN,
    BOTH;

    public static final Direction[] proper = new Direction[]{OUT, IN};

    private Direction() {
    }

    public Direction opposite() {
        if (this.equals(OUT)) {
            return IN;
        } else {
            return this.equals(IN) ? OUT : BOTH;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy