Java Object Array Convert To convertObjectToIntegerIfNecessary(final Object configValue)

Here you can find the source of convertObjectToIntegerIfNecessary(final Object configValue)

Description

convert Object To Integer If Necessary

License

Apache License

Declaration

private static Object convertObjectToIntegerIfNecessary(final Object configValue) 

Method Source Code

//package com.java2s;
/*// www  .  j a  v  a2  s.c  om
 * Copyright (C) 2011 Everit Kft. (http://www.everit.org)
 *
 * 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.
 */

public class Main {
    private static Object convertObjectToIntegerIfNecessary(final Object configValue) {
        if (configValue instanceof String) {
            return Integer.valueOf((String) configValue);
        }
        return configValue;
    }
}

Related

  1. convertObjectArrayToByte(Object[] array)
  2. convertObjectGUIToByteString(byte[] objectGUID)
  3. convertObjectToBean(Object obj, Class clazz)
  4. convertObjectToBoolean(Object value)
  5. convertObjectToInt(Object value)
  6. convertObjectToSqlSyntaxe(Object value)
  7. objectArrayToIntArray(Object[] objectArray)
  8. objectArrayToObjectArray(Object[] objArray)
  9. objectArrayToRVector(Object[] rValues)