| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-extbase/Classes/Persistence/Generic/ |
| Current File : //var/www/surf/TYPO3/vendor/typo3/cms-extbase/Classes/Persistence/Generic/PropertyType.php |
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Extbase\Persistence\Generic;
/**
* The property types supported by the JCR standard.
*
* The STRING property type is used to store strings.
* BINARY properties are used to store binary data.
* The LONG property type is used to store integers.
* The DECIMAL property type is used to store precise decimal numbers.
* The DOUBLE property type is used to store floating point numbers.
* The DATE property type is used to store time and date information. See 4.2.6.1 Date in the specification.
* The BOOLEAN property type is used to store boolean values.
* A NAME is a pairing of a namespace and a local name. When read, the namespace is mapped to the current prefix. See 4.2.6.2 Name in the specification.
* A PATH property is an ordered list of path elements. A path element is a NAME with an optional index. When read, the NAMEs within the path are mapped to their current prefix. A path may be absolute or relative. See 4.2.6.3 Path in the specification.
* A REFERENCE property stores the identifier of a referenceable node (one having type mix:referenceable), which must exist within the same workspace or session as the REFERENCE property. A REFERENCE property enforces this referential integrity by preventing (in level 2 implementations) the removal of its target node. See 4.2.6.4 Reference in the specification.
* A WEAKREFERENCE property stores the identifier of a referenceable node (one having type mix:referenceable). A WEAKREFERENCE property does not enforce referential integrity. See 4.2.6.5 Weak Reference in the specification.
* A URI property is identical to STRING property except that it only accepts values that conform to the syntax of a URI-reference as defined in RFC 3986. See also 4.2.6.6 URI in the specification.
* UNDEFINED can be used within a property definition (see 4.7.5 Property Definitions) to specify that the property in question may be of any type. However, it cannot be the actual type of any property instance. For example it will never be returned by Property.getType() and (in level 2 implementations) it cannot be assigned as the type when creating a new property.
*
* @internal only to be used within Extbase, not part of TYPO3 Core API.
*/
class PropertyType
{
/**
* This constant can be used within a property definition to specify that
* the property in question may be of any type.
* However, it cannot be the actual type of any property instance. For
* example, it will never be returned by Property#getType and it cannot be
* assigned as the type when creating a new property.
*/
public const UNDEFINED = 0;
/**
* The STRING property type is used to store strings.
*/
public const STRING = 1;
/**
* BINARY properties are used to store binary data.
*/
public const BINARY = 2;
/**
* The LONG property type is used to store integers.
*/
public const LONG = 3;
/**
* The DOUBLE property type is used to store floating point numbers.
*/
public const DOUBLE = 4;
/**
* The DATE property type is used to store time and date information.
*/
public const DATE = 5;
/**
* The BOOLEAN property type is used to store boolean values.
*/
public const BOOLEAN = 6;
/**
* A NAME is a pairing of a namespace and a local name. When read, the
* namespace is mapped to the current prefix.
*
* WE DO NOT USE THIS IN EXTBASE!
*/
public const NAME = 7;
/**
* A PATH property is an ordered list of path elements. A path element is a
* NAME with an optional index. When read, the NAMEs within the path are
* mapped to their current prefix. A path may be absolute or relative.
*
* WE DO NOT USE THIS IN EXTBASE!
*/
public const PATH = 8;
/**
* A REFERENCE property stores the identifier of a referenceable node (one
* having type mix:referenceable), which must exist within the same
* workspace or session as the REFERENCE property. A REFERENCE property
* enforces this referential integrity by preventing the removal of its
* target node.
*/
public const REFERENCE = 9;
/**
* A WEAKREFERENCE property stores the identifier of a referenceable node
* (one having type mix:referenceable). A WEAKREFERENCE property does not
* enforce referential integrity.
*
* WE DO NOT USE THIS IN EXTBASE!
*/
public const WEAKREFERENCE = 10;
/**
* A URI property is identical to STRING property except that it only
* accepts values that conform to the syntax of a URI-reference as defined
* in RFC 3986.
*
* WE DO NOT USE THIS IN EXTBASE!
*/
public const URI = 11;
/**
* The DECIMAL property type is used to store precise decimal numbers.
*
* WE DO NOT USE THIS IN EXTBASE!
*/
public const DECIMAL = 12;
/**
* The INTEGER property type is used to store precise decimal numbers.
*
* WE DO NOT USE THIS IN EXTBASE!
*/
public const INTEGER = 13;
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_UNDEFINED = 'undefined';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_STRING = 'String';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_BINARY = 'Binary';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_LONG = 'Long';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_DOUBLE = 'Double';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_DATE = 'Date';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_BOOLEAN = 'Boolean';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_NAME = 'Name';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_PATH = 'Path';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_REFERENCE = 'Reference';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_WEAKREFERENCE = 'WeakReference';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_URI = 'URI';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_DECIMAL = 'Decimal';
/**
* String constant for type name as used in serialization.
*/
public const TYPENAME_INTEGER = 'Integer';
/**
* Make instantiation impossible...
*/
private function __construct() {}
/**
* Returns the name of the specified type, as used in serialization.
*
* @param int $type type the property type
* @return string name of the specified type
*/
public static function nameFromValue($type)
{
switch ((int)$type) {
case self::STRING:
$name = self::TYPENAME_STRING;
break;
case self::BINARY:
$name = self::TYPENAME_BINARY;
break;
case self::BOOLEAN:
$name = self::TYPENAME_BOOLEAN;
break;
case self::LONG:
$name = self::TYPENAME_LONG;
break;
case self::DOUBLE:
$name = self::TYPENAME_DOUBLE;
break;
case self::DECIMAL:
$name = self::TYPENAME_DECIMAL;
break;
case self::INTEGER:
$name = self::TYPENAME_INTEGER;
break;
case self::DATE:
$name = self::TYPENAME_DATE;
break;
case self::NAME:
$name = self::TYPENAME_NAME;
break;
case self::PATH:
$name = self::TYPENAME_PATH;
break;
case self::REFERENCE:
$name = self::TYPENAME_REFERENCE;
break;
case self::WEAKREFERENCE:
$name = self::TYPENAME_WEAKREFERENCE;
break;
case self::URI:
$name = self::TYPENAME_URI;
break;
default:
// case self::UNDEFINED:
$name = self::TYPENAME_UNDEFINED;
}
return $name;
}
/**
* Returns the numeric constant value of the type with the specified name.
*
* @param string $name The name of the property type
* @return int The numeric constant value
*/
public static function valueFromName($name)
{
switch ($name) {
case self::TYPENAME_STRING:
$value = self::STRING;
break;
case self::TYPENAME_BINARY:
$value = self::BINARY;
break;
case self::TYPENAME_LONG:
$value = self::LONG;
break;
case self::TYPENAME_DOUBLE:
$value = self::DOUBLE;
break;
case self::TYPENAME_DECIMAL:
$value = self::DECIMAL;
break;
case self::TYPENAME_INTEGER:
$value = self::INTEGER;
break;
case self::TYPENAME_DATE:
$value = self::DATE;
break;
case self::TYPENAME_BOOLEAN:
$value = self::BOOLEAN;
break;
case self::TYPENAME_NAME:
$value = self::NAME;
break;
case self::TYPENAME_PATH:
$value = self::PATH;
break;
case self::TYPENAME_REFERENCE:
$value = self::REFERENCE;
break;
case self::TYPENAME_WEAKREFERENCE:
$value = self::WEAKREFERENCE;
break;
case self::TYPENAME_URI:
$value = self::URI;
break;
default:
// case self::TYPENAME_UNDEFINED:
$value = self::UNDEFINED;
}
return $value;
}
/**
* Returns the numeric constant value of the type for the given PHP type
* name as returned by gettype().
*
* @param string $type
* @return int
*/
public static function valueFromType($type)
{
switch (strtolower($type)) {
case 'string':
$value = \TYPO3\CMS\Extbase\Persistence\Generic\PropertyType::STRING;
break;
case 'boolean':
$value = \TYPO3\CMS\Extbase\Persistence\Generic\PropertyType::BOOLEAN;
break;
case 'integer':
$value = \TYPO3\CMS\Extbase\Persistence\Generic\PropertyType::LONG;
break;
case 'float':
case 'double':
$value = \TYPO3\CMS\Extbase\Persistence\Generic\PropertyType::DOUBLE;
break;
case 'int':
$value = \TYPO3\CMS\Extbase\Persistence\Generic\PropertyType::INTEGER;
break;
case 'datetime':
$value = \TYPO3\CMS\Extbase\Persistence\Generic\PropertyType::DATE;
break;
default:
$value = \TYPO3\CMS\Extbase\Persistence\Generic\PropertyType::UNDEFINED;
}
return $value;
}
}