@Beta public enum YangNaryOperator extends Enum<YangNaryOperator>
| Enum Constant and Description |
|---|
AND
Logical 'and' operator on operands.
|
OR
Logical 'or' operator on operands.
|
UNION
Set union operator on operands.
|
| Modifier and Type | Method and Description |
|---|---|
YangExpr |
exprWith(Collection<YangExpr> exprs) |
String |
toString() |
static YangNaryOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YangNaryOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YangNaryOperator AND
public static final YangNaryOperator OR
public static final YangNaryOperator UNION
public static YangNaryOperator[] values()
for (YangNaryOperator c : YangNaryOperator.values()) System.out.println(c);
public static YangNaryOperator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<YangNaryOperator>public YangExpr exprWith(Collection<YangExpr> exprs)
Copyright © 2019 OpenDaylight. All rights reserved.