Package org.fest.reflect.type

Examples of org.fest.reflect.type.Type


   * @return the starting point of the method chain.
   * @throws NullPointerException if the given name is <code>null</code>.
   * @throws IllegalArgumentException if the given name is empty.
   * @since 1.1
   */
  public static Type type(String name) { return new Type(name); }
View Full Code Here


   * @throws NullPointerException     if the given name is {@code null}.
   * @throws IllegalArgumentException if the given name is empty.
   * @since 1.1
   */
  public static @Nonnull Type type(@Nonnull String name) {
    return new Type(name);
  }
View Full Code Here

TOP

Related Classes of org.fest.reflect.type.Type

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.