1. /*
  2. * Copyright 2003-2004 The Apache Software Foundation
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.apache.commons.collections.set;
  17. import java.util.SortedSet;
  18. import org.apache.commons.collections.functors.InstanceofPredicate;
  19. /**
  20. * Decorates another <code>SortedSet</code> to validate that elements
  21. * added are of a specific type.
  22. * <p>
  23. * The validation of additions is performed via an instanceof test against
  24. * a specified <code>Class</code>. If an object cannot be added to the
  25. * collection, an IllegalArgumentException is thrown.
  26. *
  27. * @since Commons Collections 3.0
  28. * @version $Revision: 1.4 $ $Date: 2004/05/07 23:28:38 $
  29. *
  30. * @author Stephen Colebourne
  31. * @author Matthew Hawthorne
  32. */
  33. public class TypedSortedSet {
  34. /**
  35. * Factory method to create a typed sorted set.
  36. * <p>
  37. * If there are any elements already in the set being decorated, they
  38. * are validated.
  39. *
  40. * @param set the set to decorate, must not be null
  41. * @param type the type to allow into the collection, must not be null
  42. * @throws IllegalArgumentException if set or type is null
  43. * @throws IllegalArgumentException if the set contains invalid elements
  44. */
  45. public static SortedSet decorate(SortedSet set, Class type) {
  46. return new PredicatedSortedSet(set, InstanceofPredicate.getInstance(type));
  47. }
  48. /**
  49. * Restrictive constructor.
  50. */
  51. protected TypedSortedSet() {
  52. }
  53. }