001// *************************************************************************************************************************** 002// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file * 003// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * 004// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance * 005// * with the License. You may obtain a copy of the License at * 006// * * 007// * http://www.apache.org/licenses/LICENSE-2.0 * 008// * * 009// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an * 010// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * 011// * specific language governing permissions and limitations under the License. * 012// *************************************************************************************************************************** 013package org.apache.juneau.utils; 014 015import java.util.*; 016 017/** 018 * An extension of {@link LinkedHashSet} with a convenience {@link #append(Object)} method. 019 * 020 * <p> 021 * Primarily used for testing purposes for quickly creating populated sets. 022 * <p class='bcode w800'> 023 * <jc>// Example:</jc> 024 * Set<String> s = <jk>new</jk> ASet<String>().append(<js>"foo"</js>).append(<js>"bar"</js>); 025 * </p> 026 * 027 * @param <T> The entry type. 028 */ 029@SuppressWarnings({"serial","unchecked"}) 030public final class ASet<T> extends LinkedHashSet<T> { 031 032 /** 033 * Convenience method for creating a list of objects. 034 * 035 * @param t The initial values. 036 * @return A new list. 037 */ 038 public static <T> ASet<T> create(T...t) { 039 return new ASet<T>().appendAll(t); 040 } 041 042 /** 043 * Adds an entry to this set. 044 * 045 * @param t The entry to add to this set. 046 * @return This object (for method chaining). 047 */ 048 public ASet<T> append(T t) { 049 add(t); 050 return this; 051 } 052 053 /** 054 * Adds multiple entries to this set. 055 * 056 * @param t The entries to add to this set. 057 * @return This object (for method chaining). 058 */ 059 public ASet<T> appendAll(T...t) { 060 addAll(Arrays.asList(t)); 061 return this; 062 } 063 064 /** 065 * Adds a value to this set if the boolean value is <jk>true</jk> 066 * 067 * @param b The boolean value. 068 * @param t The value to add. 069 * @return This object (for method chaining). 070 */ 071 public ASet<T> appendIf(boolean b, T t) { 072 if (b) 073 append(t); 074 return this; 075 } 076}