public enum PartyDetailsFixture extends Enum<PartyDetailsFixture>
| Enum Constant and Description | 
|---|
| PartyDetails | 
| Modifier and Type | Method and Description | 
|---|---|
| PartyDetails | createPartyDetails(Class clazz) | 
| static PartyDetailsFixture | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static PartyDetailsFixture[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PartyDetailsFixture PartyDetails
public static PartyDetailsFixture[] values()
for (PartyDetailsFixture c : PartyDetailsFixture.values()) System.out.println(c);
public static PartyDetailsFixture 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 PartyDetails createPartyDetails(Class clazz)
Copyright © 2004–2014 The Kuali Foundation. All rights reserved.