001package org.biopax.paxtools.query.algorithm;
002
003/**
004 * Specifies whether the length limit is a normal limit or shortest_plus_k limit. PathsFromToQuery
005 * use this as a parameter.
006 *
007 * @author Ozgun Babur
008 */
009public enum LimitType
010{
011        NORMAL,
012        SHORTEST_PLUS_K
013}