Primitive.php

Definition of Drupal\Core\TypedData\Primitive.

Namespace

Drupal\Core\TypedData

File

drupal/core/lib/Drupal/Core/TypedData/Primitive.php
View source
<?php

/**
 * @file
 * Definition of Drupal\Core\TypedData\Primitive.
 */
namespace Drupal\Core\TypedData;


/**
 * Class that holds constants for all primitive data types.
 */
final class Primitive {

  /**
   * The BOOLEAN primitive data type.
   */
  const BOOLEAN = 1;

  /**
   * The STRING primitive data type.
   */
  const STRING = 2;

  /**
   * The INTEGER primitive data type.
   */
  const INTEGER = 3;

  /**
   * The FLOAT primitive data type.
   */
  const FLOAT = 4;

  /**
   * The DATE primitive data type.
   */
  const DATE = 5;

  /**
   * The DURATION primitive data type.
   */
  const DURATION = 6;

  /**
   * The URI primitive data type.
   */
  const URI = 7;

  /**
   * The BINARY primitive data type.
   */
  const BINARY = 8;

}

Classes

Namesort descending Description
Primitive Class that holds constants for all primitive data types.