public enum JavaBeanTester extends Enum<JavaBeanTester>
| Modifier and Type | Method and Description |
|---|---|
static <T> JavaBeanTesterBuilder<T,?> |
builder(Class<T> clazz)
Configure JavaBeanTester using Fluent API.
|
static <T,E> JavaBeanTesterBuilder<T,E> |
builder(Class<T> clazz,
Class<E> extension)
Configure JavaBeanTester using Fluent API.
|
static JavaBeanTester |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavaBeanTester[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static JavaBeanTester[] values()
for (JavaBeanTester c : JavaBeanTester.values()) System.out.println(c);
public static JavaBeanTester valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static <T> JavaBeanTesterBuilder<T,?> builder(Class<T> clazz)
T - the generic typeclazz - the clazzpublic static <T,E> JavaBeanTesterBuilder<T,E> builder(Class<T> clazz, Class<E> extension)
T - the generic typeE - the element typeclazz - the clazzextension - the extensionCopyright © 2012–2020 hazendaz. All rights reserved.