org.jclouds.docker.internal.NullSafeCopies Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brooklyn-clocker-patches Show documentation
Show all versions of brooklyn-clocker-patches Show documentation
Patched classes required for Clocker. Will be removed when dependencies are updated and merged.
/*
* 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 org.jclouds.docker.internal;
import java.util.List;
import java.util.Map;
import org.jclouds.javax.annotation.Nullable;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
public class NullSafeCopies {
public static Map copyOf(@Nullable Map map) {
return map != null ? ImmutableMap.copyOf(map) : ImmutableMap. of();
}
public static List copyOf(@Nullable List list) {
return list != null ? ImmutableList.copyOf(list) : ImmutableList. of();
}
public static List copyOf(@Nullable Iterable list) {
return list != null ? ImmutableList.copyOf(list) : ImmutableList. of();
}
public static List copyOf(@Nullable E[] array) {
return array != null ? ImmutableList.copyOf(array) : ImmutableList. of();
}
/**
* Copies given List with keeping null value if provided.
*
* @param list
* instance to copy (maybe null
)
* @return if the parameter is not-null
then immutable copy;
* null
otherwise
*/
public static List copyWithNullOf(@Nullable List list) {
return list != null ? ImmutableList.copyOf(list) : null;
}
/**
* Copies given Map with keeping null value if provided.
*
* @param map
* instance to copy (maybe null
)
* @return if the parameter is not-null
then immutable copy;
* null
otherwise
*/
public static Map copyWithNullOf(@Nullable Map map) {
return map != null ? ImmutableMap.copyOf(map) : null;
}
/**
* Copies given {@link Iterable} into immutable {@link List} with keeping null value if provided.
*
* @param iterable
* instance to copy (maybe null
)
* @return if the parameter is not-null
then immutable copy;
* null
otherwise
*/
public static List copyWithNullOf(@Nullable Iterable iterable) {
return iterable != null ? ImmutableList.copyOf(iterable) : null;
}
/**
* Copies given array into immutable {@link List} with keeping null value if provided.
*
* @param array
* instance to copy (maybe null
)
* @return if the parameter is not-null
then immutable copy;
* null
otherwise
*/
public static List copyWithNullOf(@Nullable E[] array) {
return array != null ? ImmutableList.copyOf(array) : null;
}
private NullSafeCopies() {
}
}