All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hfg.setting.FloatMapSetting Maven / Gradle / Ivy

There is a newer version: 20240423
Show newest version
package com.hfg.setting;



import com.hfg.xml.XMLTag;

import java.util.HashMap;
import java.util.Map;

//------------------------------------------------------------------------------
/**
 * An XML-serializable float map setting.
 *
 * @author J. Alex Taylor, hairyfatguy.com
 */
//------------------------------------------------------------------------------
// com.hfg XML/HTML Coding Library
//
// This library 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 library 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 library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
//
// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com
// [email protected]
//------------------------------------------------------------------------------

public class FloatMapSetting extends MapSettingImpl implements Setting>
{
   //###########################################################################
   // CONSTRUCTORS
   //###########################################################################

   //---------------------------------------------------------------------------
   public FloatMapSetting(String inName)
   {
      super(inName);
   }

   //---------------------------------------------------------------------------
   public FloatMapSetting(String inName, Map inValue)
   {
      super(inName, inValue);
   }

   //---------------------------------------------------------------------------
   /**
    * Copy constructor.
    * @param inObj2 the FloatMapSetting to clone
    */
   public FloatMapSetting(FloatMapSetting inObj2)
   {
      this(inObj2.name(), inObj2.getValue() == null ? null : new HashMap<>(inObj2.getValue()));
   }

   //---------------------------------------------------------------------------
   public FloatMapSetting(XMLTag inXMLTag)
   {
      super(inXMLTag);
   }

   //###########################################################################
   // PUBLIC METHODS
   //###########################################################################

   //---------------------------------------------------------------------------
   public FloatMapSetting setValue(Map inMap)
   {
      super.setObjectValue(inMap);
      return this;
   }

   //---------------------------------------------------------------------------
   @SuppressWarnings("unchecked")
   public void putStringValue(String inKey, String inValue)
   {
      Map map = (Map) super.getObjectValue();
      map.put(inKey, inValue != null ? Float.parseFloat(inValue) : null);
   }

   //---------------------------------------------------------------------------
   @Override
   @SuppressWarnings("unchecked")
   public Map getValue()
   {
      return (Map) super.getObjectValue();
   }

   //---------------------------------------------------------------------------
   @Override
   public FloatMapSetting clone()
   {
      return new FloatMapSetting(this);
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy