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

com.nfwork.dbfound.json.converter.BooleanObjectArrayConverter Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
/*
 * Copyright 2002-2006 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.nfwork.dbfound.json.converter;

import java.lang.reflect.Array;

/**
 * Converts an array to a Boolean[].
 *
 * @author Andres Almiray
 */
@SuppressWarnings("unchecked")
public class BooleanObjectArrayConverter extends AbstractArrayConverter
{
   private static final Class BOOLEAN_ARRAY_CLASS = Boolean[].class;
   private boolean defaultValue;

   public BooleanObjectArrayConverter()
   {
      super( false );
   }

   public BooleanObjectArrayConverter( boolean defaultValue )
   {
      super( true );
      this.defaultValue = defaultValue;
   }

   public Object convert( Object array )
   {
      if( array == null ){
         return null;
      }

      if( BOOLEAN_ARRAY_CLASS.isAssignableFrom( array.getClass() ) ){
         // no conversion needed
         return (Boolean[]) array;
      }

      if( array.getClass()
            .isArray() ){
         int length = Array.getLength( array );
         int dims = getDimensions( array.getClass() );
         int[] dimensions = createDimensions( dims, length );
         Object result = Array.newInstance( Boolean.class, dimensions );
         BooleanConverter converter = isUseDefault() ? new BooleanConverter( defaultValue )
               : new BooleanConverter();
         if( dims == 1 ){
            for( int index = 0; index < length; index++ ){
               Array.set( result, index,
                     new Boolean( converter.convert( Array.get( array, index ) ) ) );
            }
         }else{
            for( int index = 0; index < length; index++ ){
               Array.set( result, index, convert( Array.get( array, index ) ) );
            }
         }
         return result;
      }else{
         throw new ConversionException( "argument is not an array: " + array.getClass() );
      }
   }

   public boolean getDefaultValue()
   {
      return defaultValue;
   }

   public void setDefaultValue( boolean defaultValue )
   {
      this.defaultValue = defaultValue;
      setUseDefault( true );
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy