PHP Classes

File: tests/resources/generated/ValidApiPhonebookSortOption.php

Recommend this page to a friend!
  Classes of WsdlToPhp   PHP SOAP Package Generator   tests/resources/generated/ValidApiPhonebookSortOption.php   Download  
File: tests/resources/generated/ValidApiPhonebookSortOption.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: PHP SOAP Package Generator
Generate package to call SOAP services using WSDL
Author: By
Last change: issue-35 - fix #35: allow property value to be null
when value should be an enumeration value
Date: 8 years ago
Size: 1,387 bytes
 

Contents

Class file image Download
<?php

namespace Std\Opt\EnumType;

/**
 * This class stands for PhonebookSortOption EnumType
 * @package Api
 * @subpackage Enumerations
 * @release 1.1.0
 */
class ApiPhonebookSortOption
{
   
/**
     * Constant for value 'Default'
     * @return string 'Default'
     */
   
const VALUE_DEFAULT = 'Default';
   
/**
     * Constant for value 'Relevance'
     * @return string 'Relevance'
     */
   
const VALUE_RELEVANCE = 'Relevance';
   
/**
     * Constant for value 'Distance'
     * @return string 'Distance'
     */
   
const VALUE_DISTANCE = 'Distance';
   
/**
     * Return true if value is allowed
     * @uses self::getValidValues()
     * @param mixed $value value
     * @return bool true|false
     */
   
public static function valueIsValid($value)
    {
        return (
$value === null) || in_array($value, self::getValidValues(), true);
    }
   
/**
     * Return allowed values
     * @uses self::VALUE_DEFAULT
     * @uses self::VALUE_RELEVANCE
     * @uses self::VALUE_DISTANCE
     * @return string[]
     */
   
public static function getValidValues()
    {
        return array(
           
self::VALUE_DEFAULT,
           
self::VALUE_RELEVANCE,
           
self::VALUE_DISTANCE,
        );
    }
   
/**
     * Method returning the class name
     * @return string __CLASS__
     */
   
public function __toString()
    {
        return
__CLASS__;
    }
}