Class EnhancerConstants
- java.lang.Object
-
- org.hibernate.bytecode.enhance.spi.EnhancerConstants
-
public final class EnhancerConstants extends Object
Constants used during enhancement.
-
-
Field Summary
Fields Modifier and Type Field Description static StringENTITY_ENTRY_FIELD_NAMEName of the field used to hold theEntityEntrystatic StringENTITY_ENTRY_GETTER_NAMEName of the method used to read theEntityEntryfield.static StringENTITY_ENTRY_SETTER_NAMEName of the method used to write theEntityEntryfield.static StringENTITY_INSTANCE_GETTER_NAMEName of the method used to get reference of the entity instance (this in the case of enhanced classes).static StringINTERCEPTOR_FIELD_NAMEName of the field used to store thePersistentAttributeInterceptable.static StringINTERCEPTOR_GETTER_NAMEName of the method used to read the interceptorstatic StringINTERCEPTOR_SETTER_NAMEName of the method used to write the interceptorstatic StringNEXT_FIELD_NAMEName of the field used to hold the previousManagedEntity.static StringNEXT_GETTER_NAMEName of the method used to read the nextManagedEntityfieldstatic StringNEXT_SETTER_NAMEName of the method used to write the nextManagedEntityfieldstatic StringPERSISTENT_FIELD_READER_PREFIXPrefix for persistent-field reader methods.static StringPERSISTENT_FIELD_WRITER_PREFIXPrefix for persistent-field writer methods.static StringPREVIOUS_FIELD_NAMEName of the field used to hold the previousManagedEntity.static StringPREVIOUS_GETTER_NAMEName of the method used to read the previousManagedEntityfieldstatic StringPREVIOUS_SETTER_NAMEName of the method used to write the previousManagedEntityfieldstatic StringTRACKER_CHANGER_NAMEName of method to add changed fieldsstatic StringTRACKER_CLEAR_NAMEName of method to clear stored dirty attributesstatic StringTRACKER_COLLECTION_CHANGED_FIELD_NAMEName of method to get dirty collection field namesstatic StringTRACKER_COLLECTION_CHANGED_NAMEName of method to check if collection fields are dirtystatic StringTRACKER_COLLECTION_CLEAR_NAMEName of method to clear dirty attribute on collection fieldsstatic StringTRACKER_COLLECTION_GET_NAMEName of method to check if collection fields are dirtystatic StringTRACKER_COLLECTION_NAMEName of the field that holds the collection trackerstatic StringTRACKER_COMPOSITE_CLEAR_OWNERMethod to clear the owner of the embedded entitystatic StringTRACKER_COMPOSITE_FIELD_NAMEField to hold the track the owner of the embeddable entitystatic StringTRACKER_COMPOSITE_SET_OWNERMethod to set the owner of the embedded entitystatic StringTRACKER_FIELD_NAMEName of tracker fieldstatic StringTRACKER_GET_NAMEName of method to fetch dirty attributesstatic StringTRACKER_HAS_CHANGED_NAMEName of method to see if any fields has changedstatic StringTRACKER_SUSPEND_NAMEName of method to suspend dirty trackingstatic StringUSE_TRACKER_FIELD_NAMEstatic StringUSE_TRACKER_GETTER_NAMEstatic StringUSE_TRACKER_SETTER_NAME
-
-
-
Field Detail
-
PERSISTENT_FIELD_READER_PREFIX
public static final String PERSISTENT_FIELD_READER_PREFIX
Prefix for persistent-field reader methods.- See Also:
- Constant Field Values
-
PERSISTENT_FIELD_WRITER_PREFIX
public static final String PERSISTENT_FIELD_WRITER_PREFIX
Prefix for persistent-field writer methods.- See Also:
- Constant Field Values
-
ENTITY_INSTANCE_GETTER_NAME
public static final String ENTITY_INSTANCE_GETTER_NAME
Name of the method used to get reference of the entity instance (this in the case of enhanced classes).- See Also:
- Constant Field Values
-
ENTITY_ENTRY_FIELD_NAME
public static final String ENTITY_ENTRY_FIELD_NAME
Name of the field used to hold theEntityEntry- See Also:
- Constant Field Values
-
ENTITY_ENTRY_GETTER_NAME
public static final String ENTITY_ENTRY_GETTER_NAME
Name of the method used to read theEntityEntryfield.- See Also:
ENTITY_ENTRY_FIELD_NAME, Constant Field Values
-
ENTITY_ENTRY_SETTER_NAME
public static final String ENTITY_ENTRY_SETTER_NAME
Name of the method used to write theEntityEntryfield.- See Also:
ENTITY_ENTRY_FIELD_NAME, Constant Field Values
-
PREVIOUS_FIELD_NAME
public static final String PREVIOUS_FIELD_NAME
Name of the field used to hold the previousManagedEntity.Together, previous/next are used to define a "linked list"
- See Also:
NEXT_FIELD_NAME, Constant Field Values
-
PREVIOUS_GETTER_NAME
public static final String PREVIOUS_GETTER_NAME
Name of the method used to read the previousManagedEntityfield- See Also:
PREVIOUS_FIELD_NAME, Constant Field Values
-
PREVIOUS_SETTER_NAME
public static final String PREVIOUS_SETTER_NAME
Name of the method used to write the previousManagedEntityfield- See Also:
PREVIOUS_FIELD_NAME, Constant Field Values
-
NEXT_FIELD_NAME
public static final String NEXT_FIELD_NAME
Name of the field used to hold the previousManagedEntity.Together, previous/next are used to define a "linked list"
- See Also:
PREVIOUS_FIELD_NAME, Constant Field Values
-
NEXT_GETTER_NAME
public static final String NEXT_GETTER_NAME
Name of the method used to read the nextManagedEntityfield- See Also:
NEXT_FIELD_NAME, Constant Field Values
-
NEXT_SETTER_NAME
public static final String NEXT_SETTER_NAME
Name of the method used to write the nextManagedEntityfield- See Also:
NEXT_FIELD_NAME, Constant Field Values
-
INTERCEPTOR_FIELD_NAME
public static final String INTERCEPTOR_FIELD_NAME
Name of the field used to store thePersistentAttributeInterceptable.- See Also:
- Constant Field Values
-
INTERCEPTOR_GETTER_NAME
public static final String INTERCEPTOR_GETTER_NAME
Name of the method used to read the interceptor- See Also:
INTERCEPTOR_FIELD_NAME, Constant Field Values
-
INTERCEPTOR_SETTER_NAME
public static final String INTERCEPTOR_SETTER_NAME
Name of the method used to write the interceptor- See Also:
INTERCEPTOR_FIELD_NAME, Constant Field Values
-
TRACKER_FIELD_NAME
public static final String TRACKER_FIELD_NAME
Name of tracker field- See Also:
- Constant Field Values
-
TRACKER_CHANGER_NAME
public static final String TRACKER_CHANGER_NAME
Name of method to add changed fields- See Also:
- Constant Field Values
-
TRACKER_HAS_CHANGED_NAME
public static final String TRACKER_HAS_CHANGED_NAME
Name of method to see if any fields has changed- See Also:
- Constant Field Values
-
TRACKER_GET_NAME
public static final String TRACKER_GET_NAME
Name of method to fetch dirty attributes- See Also:
- Constant Field Values
-
TRACKER_CLEAR_NAME
public static final String TRACKER_CLEAR_NAME
Name of method to clear stored dirty attributes- See Also:
- Constant Field Values
-
TRACKER_SUSPEND_NAME
public static final String TRACKER_SUSPEND_NAME
Name of method to suspend dirty tracking- See Also:
- Constant Field Values
-
TRACKER_COLLECTION_GET_NAME
public static final String TRACKER_COLLECTION_GET_NAME
Name of method to check if collection fields are dirty- See Also:
- Constant Field Values
-
TRACKER_COLLECTION_CHANGED_NAME
public static final String TRACKER_COLLECTION_CHANGED_NAME
Name of method to check if collection fields are dirty- See Also:
- Constant Field Values
-
TRACKER_COLLECTION_NAME
public static final String TRACKER_COLLECTION_NAME
Name of the field that holds the collection tracker- See Also:
- Constant Field Values
-
TRACKER_COLLECTION_CHANGED_FIELD_NAME
public static final String TRACKER_COLLECTION_CHANGED_FIELD_NAME
Name of method to get dirty collection field names- See Also:
- Constant Field Values
-
TRACKER_COLLECTION_CLEAR_NAME
public static final String TRACKER_COLLECTION_CLEAR_NAME
Name of method to clear dirty attribute on collection fields- See Also:
- Constant Field Values
-
TRACKER_COMPOSITE_FIELD_NAME
public static final String TRACKER_COMPOSITE_FIELD_NAME
Field to hold the track the owner of the embeddable entity- See Also:
- Constant Field Values
-
TRACKER_COMPOSITE_SET_OWNER
public static final String TRACKER_COMPOSITE_SET_OWNER
Method to set the owner of the embedded entity- See Also:
- Constant Field Values
-
TRACKER_COMPOSITE_CLEAR_OWNER
public static final String TRACKER_COMPOSITE_CLEAR_OWNER
Method to clear the owner of the embedded entity- See Also:
- Constant Field Values
-
USE_TRACKER_FIELD_NAME
public static final String USE_TRACKER_FIELD_NAME
- See Also:
- Constant Field Values
-
USE_TRACKER_GETTER_NAME
public static final String USE_TRACKER_GETTER_NAME
- See Also:
- Constant Field Values
-
USE_TRACKER_SETTER_NAME
public static final String USE_TRACKER_SETTER_NAME
- See Also:
- Constant Field Values
-
-