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

studio.raptor.ddal.common.util.ObjectUtil Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 studio.raptor.ddal.common.util;

import java.io.Serializable;

/**
 * @author Sam
 * @since 3.0.0
 */
public class ObjectUtil {

  /**
   * 

Singleton used as a {@code null} placeholder where * {@code null} has another meaning.

* *

For example, in a {@code HashMap} the * {@link java.util.HashMap#get(java.lang.Object)} method returns * {@code null} if the {@code Map} contains {@code null} or if there * is no matching key. The {@code Null} placeholder can be used to * distinguish between these two cases.

* *

Another example is {@code Hashtable}, where {@code null} * cannot be stored.

* *

This instance is Serializable.

*/ public static final Null NULL = new Null(); /** *

{@code ObjectUtils} instances should NOT be constructed in * standard programming. Instead, the static methods on the class should * be used, such as {@code ObjectUtils.defaultIfNull("a","b");}.

* *

This constructor is public to permit tools that require a JavaBean * instance to operate.

*/ public ObjectUtil() { super(); } /** *

Returns a default value if the object passed is {@code null}.

* *
   * ObjectUtils.defaultIfNull(null, null)      = null
   * ObjectUtils.defaultIfNull(null, "")        = ""
   * ObjectUtils.defaultIfNull(null, "zz")      = "zz"
   * ObjectUtils.defaultIfNull("abc", *)        = "abc"
   * ObjectUtils.defaultIfNull(Boolean.TRUE, *) = Boolean.TRUE
   * 
* * @param the type of the object * @param object the {@code Object} to test, may be {@code null} * @param defaultValue the default value to return, may be {@code null} * @return {@code object} if it is not {@code null}, defaultValue otherwise */ public static T defaultIfNull(final T object, final T defaultValue) { return object != null ? object : defaultValue; } /** *

Class used as a null placeholder where {@code null} * has another meaning.

* *

For example, in a {@code HashMap} the * {@link java.util.HashMap#get(java.lang.Object)} method returns * {@code null} if the {@code Map} contains {@code null} or if there is * no matching key. The {@code Null} placeholder can be used to distinguish * between these two cases.

* *

Another example is {@code Hashtable}, where {@code null} * cannot be stored.

*/ public static class Null implements Serializable { /** * Required for serialization support. Declare serialization compatibility with Commons Lang 1.0 * * @see java.io.Serializable */ private static final long serialVersionUID = 7092611880189329093L; /** * Restricted constructor - singleton. */ Null() { super(); } /** *

Ensure singleton.

* * @return the singleton value */ private Object readResolve() { return ObjectUtil.NULL; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy