package gnu.dtools.ritopt; /** * LongOption.java * * Version: * $Id: LongOption.java 2488 2007-11-14 00:25:31Z coezbek $ */ /** * This class is used for options with long values. * * <hr> * * <pre> * Copyright (C) Damian Ryan Eads, 2001. All Rights Reserved. * * ritopt is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ritopt 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with ritopt; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * </pre> * * @author Damian Eads */ public class LongOption extends Option { /** * The value of this long option. */ private long value; /** * Constructs a long option that is initially set to zero. */ public LongOption() { this( 0 ); } /** * Constructs a long option by copying the long option passed. * * @param op The character option to copy. */ public LongOption( LongOption op ) { super( op ); op.value = op.getValue(); } /** * Constructs a long option initialized with the value passed. * * @param value The initial value of this long option. */ public LongOption( long value ) { this( value, null ); } /** * Constructs a long option initialized with the value and * long option passed. * * @param value The initial value of this long option. * @param longOption The long option associated with long option. */ public LongOption( long value, String longOption ) { this( value, longOption, '\0' ); } /** * Constructs a character option initialized with the value and * short option passed. * * @param value The initial value of this long option. * @param shortOption The short option associated with this option. */ public LongOption( long value, char shortOption ) { this( value, null, shortOption ); } /** * Constructs a long option initialized with the value, short * and long option passed. * * @param shortOption The short option associated with this option. * @param longOption The long option associated with this option. * @param value The initial value of this long option. */ public LongOption( long value, String longOption, char shortOption ) { super( longOption, shortOption ); this.value = value; } /** * Return the value as an object. * * @return This value as an option. */ public Object getObject() { return new Long( value ); } /** * Modify this option based on a string representation. * * @param value String representation of the object. * @exception OptionModificationException Thrown if an error occurs * during modification of an option. */ public void modify( String value ) throws OptionModificationException { try { this.value = Long.parseLong( value ); } catch ( NumberFormatException e ) { throw new OptionModificationException( "Error. A long must be" + " specified, not '" + value + "'." ); } } /** * Modify this option based on a string representation. * * @param value String representation of the object. * @exception OptionModificationException Thrown if an error occurs * during modification of an option. */ public void setValue( String value ) throws OptionModificationException { modify( value ); } /** * Modify this option using a long value. * * @param value A long value. */ public void setValue( long value ) { this.value = value; } /** * Return this option as a long. * * @return This option as a long. */ public long getValue() { return value; } /** * Return this option as a string. * * @return This option as a string. */ public String getStringValue() { return Long.toString( value ); } /** * Returns the type name of this option. For a LongOption, "LONG" * is returned. * * @return The type name of this option. */ public String getTypeName() { return "LONG"; } /** * Returns a string representation of this object. * * @return A string representation of this object. */ public String toString() { return getStringValue(); } } /** LongOption */