001package com.hfg.bio;
002
003
004//------------------------------------------------------------------------------
005/**
006 * Physical property names.
007 * @author J. Alex Taylor, hairyfatguy.com
008 */
009//------------------------------------------------------------------------------
010// com.hfg XML/HTML Coding Library
011//
012// This library is free software; you can redistribute it and/or
013// modify it under the terms of the GNU Lesser General Public
014// License as published by the Free Software Foundation; either
015// version 2.1 of the License, or (at your option) any later version.
016//
017// This library is distributed in the hope that it will be useful,
018// but WITHOUT ANY WARRANTY; without even the implied warranty of
019// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
020// Lesser General Public License for more details.
021//
022// You should have received a copy of the GNU Lesser General Public
023// License along with this library; if not, write to the Free Software
024// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
025//
026// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com
027// jataylor@hairyfatguy.com
028//------------------------------------------------------------------------------
029
030public enum PhysicalProperty
031{
032   A214("Absorbance at 214nm"),
033   A280("Absorbance at 280nm"),
034   HPLC_INDEX(""),
035   HYDROPHOBICITY("");
036
037
038   //##########################################################################
039   // PRIVATE FIELDS
040   //##########################################################################
041
042   private String mDescription;
043
044
045   //##########################################################################
046   // CONSTRUCTORS
047   //##########################################################################
048
049   //--------------------------------------------------------------------------
050   private PhysicalProperty(String inDescription)
051   {
052      mDescription = inDescription;
053   }
054
055
056   //##########################################################################
057   // PUBLIC METHODS
058   //##########################################################################
059
060   //--------------------------------------------------------------------------
061   public String getDescription()
062   {
063      return mDescription;
064   }
065}