PocketMine-MP
5.21.2 git-b2aa6396c3cc2cafdd815eacc360e1ad89599899
Loading...
Searching...
No Matches
CommandEnum.php
1
<?php
2
3
/*
4
* This file is part of BedrockProtocol.
5
* Copyright (C) 2014-2022 PocketMine Team <https://github.com/pmmp/BedrockProtocol>
6
*
7
* BedrockProtocol is free software: you can redistribute it and/or modify
8
* it under the terms of the GNU Lesser General Public License as published by
9
* the Free Software Foundation, either version 3 of the License, or
10
* (at your option) any later version.
11
*/
12
13
declare(strict_types=1);
14
15
namespace
pocketmine\network\mcpe\protocol\types\command;
16
17
class
CommandEnum
{
24
public
function
__construct
(
25
private
string
$enumName,
26
private
array $enumValues,
27
private
bool
$isSoft =
false
28
){}
29
30
public
function
getName() : string{
31
return $this->enumName;
32
}
33
38
public
function
getValues
() : array{
39
return $this->enumValues;
40
}
41
45
public
function
isSoft
() : bool{
46
return $this->isSoft;
47
}
48
}
pocketmine\network\mcpe\protocol\types\command\CommandEnum
Definition
CommandEnum.php:17
pocketmine\network\mcpe\protocol\types\command\CommandEnum\isSoft
isSoft()
Definition
CommandEnum.php:45
pocketmine\network\mcpe\protocol\types\command\CommandEnum\getValues
getValues()
Definition
CommandEnum.php:38
pocketmine\network\mcpe\protocol\types\command\CommandEnum\__construct
__construct(private string $enumName, private array $enumValues, private bool $isSoft=false)
Definition
CommandEnum.php:24
vendor
pocketmine
bedrock-protocol
src
types
command
CommandEnum.php
Generated by
1.12.0