public function DenormalizerInterface::supportsDenormalization

Checks whether the given class is supported for denormalization by this normalizer

Parameters

mixed $data Data to denormalize from.:

string $type The class to which the data should be denormalized.:

string $format The format being deserialized from.:

Return value

Boolean

5 methods override DenormalizerInterface::supportsDenormalization()
CustomNormalizer::supportsDenormalization in drupal/core/vendor/symfony/serializer/Symfony/Component/Serializer/Normalizer/CustomNormalizer.php
Checks if the given class implements the NormalizableInterface.
GetSetMethodNormalizer::supportsDenormalization in drupal/core/vendor/symfony/serializer/Symfony/Component/Serializer/Normalizer/GetSetMethodNormalizer.php
Checks whether the given class is supported for denormalization by this normalizer
NormalizerBase::supportsDenormalization in drupal/core/modules/hal/lib/Drupal/hal/Normalizer/NormalizerBase.php
Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization()
Serializer::supportsDenormalization in drupal/core/vendor/symfony/serializer/Symfony/Component/Serializer/Serializer.php
Checks whether the given class is supported for denormalization by this normalizer
TestDenormalizer::supportsDenormalization in drupal/core/vendor/symfony/serializer/Symfony/Component/Serializer/Tests/Normalizer/TestDenormalizer.php
Checks whether the given class is supported for denormalization by this normalizer

File

drupal/core/vendor/symfony/serializer/Symfony/Component/Serializer/Normalizer/DenormalizerInterface.php, line 42

Class

DenormalizerInterface
Defines the interface of denormalizers.

Namespace

Symfony\Component\Serializer\Normalizer

Code

public function supportsDenormalization($data, $type, $format = null);