Property | Type | Description | |
---|---|---|---|
$changeTrackingPolicy | integer | READ-ONLY: The policy used for change-tracking on entities of this class. | |
$customRepositoryClassName | string | (Optional). | |
$fieldMappings | array | The mapping definition array supports the following keys: - fieldName (string) The name of the field in the entity this mapping is associated with - id (boolean, optional) Marks this field as the identifier for this class. Used for references - type (string) The type of the field being mapped by this field mapping. Can by any of the allowed Doctrine/OXM/Types or a specific Class name. If used with collection=true, this will assume that each collection object is of the specified type. - xmlName (string, optional) The name of the xml node this class definition will be mapped to. - xmlNode (string) The type of xml object to map this field. Can be one of ('element', 'attribute', or 'text') - required (boolean, optional) Defines if this field is required or not. Checked during marshalling and unmarshalling. - nullable (boolean, optional) Defines if this field is required to be marshalled/unmarshalled if null. - getMethod (string, optional) Defines an optional get method name to use while getting and setting this field on the owning object. - setMethod (string, optional) Defines an optional set method name to use while getting and setting this field on the owning object. - collection (boolean, optional) Define the field as a "collection". This allows for the field to be an array of the above specified type. - direct (boolean, optional, defaults to true) Allow Doctrine OXM to access this field on the class with direct access. | |
$generatorType | integer | READ-ONLY: The Id generator type used by the class. | |
$idGenerator | READ-ONLY: The ID generator used for generating IDs for this class. | ||
$identifier | READ-ONLY: The field name of the class identifier. | ||
$isMappedSuperclass | boolean | READ-ONLY: Whether this class describes the mapping of a mapped superclass. | |
$isRoot | boolean | READ-ONLY: Whether this class describes the mapping xml root element. | |
$lifecycleCallbacks | array | READ-ONLY: The registered lifecycle callbacks for entities of this class. | |
$name | string | The name of the class | |
$parentClasses | array | READ-ONLY: The names of the parent classes (ancestors). | |
$reflClass | ReflectionClass | The ReflectionClass instance of the mapped class. | |
$rootXmlEntityName | string | READ-ONLY: The name of the entity class that is at the root of the mapped entity inheritance hierarchy. If the entity is not part of a mapped inheritance hierarchy this is the same as {@link $entityName}. | |
$xmlFieldMap | array | Mapping xml node names back to class fields keys are xml names | |
$xmlName | string | The xml node name to map this class to | |
$xmlNamespaces | array | The mapping definition array supports the following keys - url (required) The url containing this namespace definition. Only one URL can be present within the class which does not have a prefix. One can have any number of prefixed URL's. - prefix (optional) The prefix used by this namespace. Prefixes must be unique. |
Method | Description | |
---|---|---|
__construct ( string $entityName ) | Initializes a new ClassMetadata instance that will hold the object-xml mapping metadata of the class with the given name. | |
addInheritedFieldMapping ( array $fieldMapping ) | INTERNAL: Adds a field mapping without completing/validating it. | |
addLifecycleCallback ( string $callback, string $event ) | Adds a lifecycle callback for entities of this class. | |
getAssociationNames ( ) : array | A numerically indexed list of association names of this persistent class. | |
getAssociationTargetClass ( string $assocName ) : string | Returns the target class name of the given association. | |
getFieldMapping ( string $fieldName ) : array | Gets the mapping of a (regular) field that holds some data but not a reference to another object. | |
getFieldMappings ( ) : array | Returns an array of all field mappings | |
getFieldName ( string $xmlName ) : string | Gets the field name for a xml name. | |
getFieldNames ( ) : array | A numerically indexed list of field names of this persistent class. | |
getFieldXmlName ( $fieldName ) | ||
getFieldXmlNode ( $fieldName ) : string | Gets the type of an xml name. | |
getIdentifier ( ) : string | Gets the mapped identifier field of this class. | |
getName ( ) : string | The name of this XmlEntity class. | |
getParentClasses ( ) : array | ||
getReflectionClass ( ) : ReflectionClass | Gets the ReflectionClass instance of the mapped class. | |
getTypeOfField ( string $fieldName ) : string | Gets the type of a field. | |
getXmlName ( ) : string | Gets the xml node name used to map this class to an xml node | |
getXmlNamespaces ( ) : array | ||
getXmlNodeTypes ( ) : array | Returns all bind xml node types | |
hasAssociation ( string $fieldName ) : boolean | Checks whether the class has a mapped association (embed or reference) with the given field name. | |
hasField ( $fieldName ) : boolean | Checks whether the class has a (mapped) field with a certain name. | |
hasFieldWrapping ( $fieldName ) : boolean | ||
hasLifecycleCallbacks ( string $lifecycleEvent ) : boolean | Whether the class has any attached lifecycle listeners or callbacks for a lifecycle event. | |
hasReference ( string $fieldName ) : boolean | Checks whether the class has a mapped association with the given field name. | |
hasXmlField ( $xmlName ) : boolean | ||
invokeLifecycleCallbacks ( $lifecycleEvent, |
Dispatches the lifecycle event of the given entity to the registered lifecycle callbacks and lifecycle listeners. | |
isChangeTrackingDeferredExplicit ( ) : boolean | Whether the change tracking policy of this class is "deferred explicit". | |
isChangeTrackingDeferredImplicit ( ) : boolean | Whether the change tracking policy of this class is "deferred implicit". | |
isChangeTrackingNotify ( ) : boolean | Whether the change tracking policy of this class is "notify". | |
isCollection ( $fieldName ) : boolean | ||
isCollectionValuedAssociation ( string $fieldName ) : boolean | Checks whether the class has a mapped reference or embed for the specified field and is a single valued association. | |
isDirect ( $fieldName ) : boolean | ||
isIdGeneratorAuto ( ) : boolean | Checks whether the class will generate a new \XmlId instance for us. | |
isIdGeneratorIncrement ( ) : boolean | Checks whether the class will use a collection to generate incremented identifiers. | |
isIdGeneratorNone ( ) : boolean | Checks whether the class uses no id generator. | |
isIdGeneratorUuid ( ) : boolean | Checks whether the class will generate a uuid id. | |
isIdentifier ( string $fieldName ) : boolean | Checks whether a field is part of the identifier/primary key field(s). | |
isInheritedField ( $fieldName ) : boolean | Checks whether a mapped field is inherited from an entity superclass. | |
isNullable ( string $fieldName ) : boolean | ||
isRequired ( $fieldName ) : boolean | ||
isSingleValuedAssociation ( string $fieldName ) : boolean | Checks whether the class has a mapped reference or embed for the specified field and is a single valued association. | |
mapField ( array $mapping ) : void | ||
setChangeTrackingPolicy ( integer $policy ) | Sets the change tracking policy used by this class. | |
setCustomRepositoryClass ( $repositoryClassName ) | Registers a custom repository class for the document class. | |
setIdGenerator ( AbstractIdGenerator $generator ) | Sets the ID generator used to generate IDs for instances of this class. | |
setIdGeneratorType ( $generatorType ) | Sets the type of Id generator to use for the mapped class. | |
setIdentifier ( string $identifier ) | INTERNAL: Sets the mapped identifier field of this class. | |
setLifecycleCallbacks ( array $callbacks ) | Sets the lifecycle callbacks for entities of this class. | |
setName ( string $entityName ) | ||
setParentClasses ( array $classNames ) | Sets the parent class names. | |
setXmlName ( $xmlName ) : string | Set the xml node name to be used by this class mapping | |
setXmlNamespaces ( array $xmlNamespaces ) : void |
Method | Description | |
---|---|---|
inferGetter ( string $fieldName ) : string | ||
inferSetter ( string $fieldName ) : string |
public __construct ( string $entityName ) | ||
$entityName | string | The name of the entity class the new instance is used for. |
public addInheritedFieldMapping ( array $fieldMapping ) | ||
$fieldMapping | array |
public addLifecycleCallback ( string $callback, string $event ) | ||
$callback | string | |
$event | string |
public getAssociationNames ( ) : array | ||
return | array |
public getAssociationTargetClass ( string $assocName ) : string | ||
$assocName | string | |
return | string |
public getFieldMapping ( string $fieldName ) : array | ||
$fieldName | string | The field name. |
return | array | The field mapping. |
public getFieldMappings ( ) : array | ||
return | array |
public getFieldName ( string $xmlName ) : string | ||
$xmlName | string | xml name |
return | string | field name |
public getFieldNames ( ) : array | ||
return | array |
public getFieldXmlNode ( $fieldName ) : string | ||
return | string | one of ("node", "attribute", "text") |
public getIdentifier ( ) : string | ||
return | string | $identifier |
public getReflectionClass ( ) : ReflectionClass | ||
return | ReflectionClass |
public getTypeOfField ( string $fieldName ) : string | ||
$fieldName | string | |
return | string |
public getXmlName ( ) : string | ||
return | string |
public static getXmlNodeTypes ( ) : array | ||
return | array |
public hasAssociation ( string $fieldName ) : boolean | ||
$fieldName | string | |
return | boolean |
public hasLifecycleCallbacks ( string $lifecycleEvent ) : boolean | ||
$lifecycleEvent | string | |
return | boolean |
public hasReference ( string $fieldName ) : boolean | ||
$fieldName | string | |
return | boolean |
protected inferGetter ( string $fieldName ) : string | ||
$fieldName | string | |
return | string |
protected inferSetter ( string $fieldName ) : string | ||
$fieldName | string | |
return | string |
public invokeLifecycleCallbacks ( $lifecycleEvent, |
||
$entity | The XmlEntity on which the event occured. | |
$arguments | array |
public isChangeTrackingDeferredExplicit ( ) : boolean | ||
return | boolean |
public isChangeTrackingDeferredImplicit ( ) : boolean | ||
return | boolean |
public isChangeTrackingNotify ( ) : boolean | ||
return | boolean |
public isCollectionValuedAssociation ( string $fieldName ) : boolean | ||
$fieldName | string | |
return | boolean | TRUE if the association exists and is single-valued, FALSE otherwise. |
public isIdGeneratorAuto ( ) : boolean | ||
return | boolean | TRUE if the class uses the AUTO generator, FALSE otherwise. |
public isIdGeneratorIncrement ( ) : boolean | ||
return | boolean | TRUE if the class uses the INCREMENT generator, FALSE otherwise. |
public isIdGeneratorNone ( ) : boolean | ||
return | boolean | TRUE if the class does not use any id generator, FALSE otherwise. |
public isIdGeneratorUuid ( ) : boolean | ||
return | boolean | TRUE if the class uses the UUID generator, FALSE otherwise. |
public isIdentifier ( string $fieldName ) : boolean | ||
$fieldName | string | The field name |
return | boolean | TRUE if the field is part of the table identifier/primary key field(s), FALSE otherwise. |
public isInheritedField ( $fieldName ) : boolean | ||
return | boolean | TRUE if the field is inherited, FALSE otherwise. |
public isNullable ( string $fieldName ) : boolean | ||
$fieldName | string | |
return | boolean |
public isSingleValuedAssociation ( string $fieldName ) : boolean | ||
$fieldName | string | |
return | boolean | TRUE if the association exists and is single-valued, FALSE otherwise. |
public setChangeTrackingPolicy ( integer $policy ) | ||
$policy | integer |
public setCustomRepositoryClass ( $repositoryClassName ) |
public setIdGenerator ( AbstractIdGenerator $generator ) | ||
$generator | AbstractIdGenerator |
public setIdGeneratorType ( $generatorType ) |
public setIdentifier ( string $identifier ) | ||
$identifier | string |
public setLifecycleCallbacks ( array $callbacks ) | ||
$callbacks | array |
public setParentClasses ( array $classNames ) | ||
$classNames | array |
public setXmlName ( $xmlName ) : string | ||
return | string |
public setXmlNamespaces ( array $xmlNamespaces ) : void | ||
$xmlNamespaces | array | |
return | void |
public int $changeTrackingPolicy | ||
return | integer |
public string $customRepositoryClassName | ||
return | string |
public array $fieldMappings | ||
return | array |
public int $generatorType | ||
return | integer |
public AbstractIdGenerator,Doctrine\OXM\Id $idGenerator | ||
return |
public $identifier |
public bool $isMappedSuperclass | ||
return | boolean |
public bool $isRoot | ||
return | boolean |
public array $lifecycleCallbacks | ||
return | array |
public array $parentClasses | ||
return | array |
public ReflectionClass $reflClass | ||
return | ReflectionClass |
public string $rootXmlEntityName | ||
return | string |
public array $xmlFieldMap | ||
return | array |
public string $xmlName | ||
return | string |
public array $xmlNamespaces | ||
return | array |