001 package org.bukkit.plugin.messaging;
002
003 /**
004 * Represents the different directions a plugin channel may go.
005 */
006 public enum PluginChannelDirection {
007
008 /**
009 * The plugin channel is being sent to the server from a client.
010 */
011 INCOMING,
012
013 /**
014 * The plugin channel is being sent to a client from the server.
015 */
016 OUTGOING
017 }