001package org.biopax.paxtools.model.level3;
002
003/**
004 * This enum is used for specifying the direction of a Conversion.
005 * @see Conversion#getConversionDirection()
006 *
007 */
008public enum ConversionDirectionType
009{
010        LEFT_TO_RIGHT,
011        RIGHT_TO_LEFT,
012        REVERSIBLE
013}