-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSubSpecInterface.php
executable file
·69 lines (59 loc) · 1.44 KB
/
SubSpecInterface.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
/**
* MARCspec is the specification of a reference, encoded as string, to a set of data
* from within a MARC record.
*
* @author Carsten Klee <[email protected]>
* @package CK\MARCspec
* @copyright For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CK\MARCspec;
/**
* MARCspec subspec interface
*/
interface SubspecInterface
{
/**
* Constructor for SubSpec
*
* @param null|MARCspecInterface|ComparisonString $leftSubTerm
* @param null|string $operator
* @param MARCspecInterface|ComparisonString $rightSubTerm
*/
public function __construct($leftSubTerm, $operator, $rightSubTerm);
/**
* Get subspecs operator
*
* @return string The operator
*/
public function getOperator();
/**
* Get subspecs operator
*
* @return null|MARCspecInterface|ComparisonString The left hand subterm
*/
public function getLeftSubTerm();
/**
* Get subspecs operator
*
* @return MARCspecInterface|ComparisonString The right hand subterm
*/
public function getRightSubTerm();
/**
* encodes SubSpec as string
*
* @api
*
* @return string
*/
public function __toString();
/**
* Serialize SubSpec as JSON
*
* @api
*
* @return array
*/
public function jsonSerialize();
} // EOI