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

org.ldaptive.beans.reflect.SetReflectionTranscoder Maven / Gradle / Ivy

Go to download

Mapping, persistence, and code generation API for reading and writing POJOs to an LDAP directory

The newest version!
/* See LICENSE for licensing and NOTICE for copyright. */
package org.ldaptive.beans.reflect;

import java.util.Collection;
import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.Set;
import java.util.TreeSet;

/**
 * Reflection transcoder for an object that implements {@link Set}.
 *
 * @author  Middleware Services
 */
public class SetReflectionTranscoder extends AbstractCollectionReflectionTranscoder
{


  /**
   * Creates a new set reflection transcoder.
   *
   * @param  c  class that is a set
   * @param  transcoder  to operate on elements of the set
   */
  public SetReflectionTranscoder(final Class c, final SingleValueReflectionTranscoder transcoder)
  {
    super(c, transcoder);
  }


  /**
   * Creates a new set reflection transcoder.
   *
   * @param  c  class that is a set
   * @param  transcoder  to operate on elements of the set
   */
  public SetReflectionTranscoder(final Class c, final ArrayReflectionTranscoder transcoder)
  {
    super(c, transcoder);
  }


  @Override
  protected  Collection createCollection(final Class clazz)
  {
    final Class type = getType();
    final Set s;
    if (LinkedHashSet.class.isAssignableFrom(type)) {
      s = new LinkedHashSet<>();
    } else if (TreeSet.class.isAssignableFrom(type)) {
      s = new TreeSet<>();
    } else {
      s = new HashSet<>();
    }
    return s;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy