blob: 5bb30feb6f2678b6128654256a5fc4d8e7cf7c3c [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2007 The University of Manchester
*
* Modifications to the initial code base are copyright of their
* respective authors, or their employers as appropriate.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
******************************************************************************/
package net.sf.taverna.t2.reference;
/**
* Where possible ExternalReferenceSPI implementations should be able to
* determine whether the data they refer to is textual or binary in nature. This
* enumeration contains values for textual, binary and unknown data natures.
*
* @author Tom Oinn
*
*/
public enum ReferencedDataNature {
/**
* The data is binary, no character encoding will be specified.
*/
BINARY,
/**
* The data is textual, character encoding may be defined.
*/
TEXT,
/**
* Unknown data nature.
*/
UNKNOWN;
}