org.apache.cayenne.gen
Enum ArtifactsGenerationMode
java.lang.Object
java.lang.Enum<ArtifactsGenerationMode>
org.apache.cayenne.gen.ArtifactsGenerationMode
- All Implemented Interfaces:
- Serializable, Comparable<ArtifactsGenerationMode>
public enum ArtifactsGenerationMode
- extends Enum<ArtifactsGenerationMode>
Code generator execution mode for a collection of artifacts.
- Since:
- 3.0
DATAMAP
public static final ArtifactsGenerationMode DATAMAP
ENTITY
public static final ArtifactsGenerationMode ENTITY
ALL
public static final ArtifactsGenerationMode ALL
values
public static ArtifactsGenerationMode[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ArtifactsGenerationMode c : ArtifactsGenerationMode.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ArtifactsGenerationMode valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
getLabel
public String getLabel()
Copyright © 2001-2012 Apache Cayenne. All Rights Reserved.