枚举 GraphAlgebra.LogicalPlan.Operator.OprCase
- java.lang.Object
-
- java.lang.Enum<GraphAlgebra.LogicalPlan.Operator.OprCase>
-
- com.alibaba.graphscope.gaia.proto.GraphAlgebra.LogicalPlan.Operator.OprCase
-
- 所有已实现的接口:
com.google.protobuf.Internal.EnumLite,Serializable,Comparable<GraphAlgebra.LogicalPlan.Operator.OprCase>
public static enum GraphAlgebra.LogicalPlan.Operator.OprCase extends Enum<GraphAlgebra.LogicalPlan.Operator.OprCase> implements com.google.protobuf.Internal.EnumLite
-
-
方法概要
所有方法 静态方法 实例方法 具体方法 已过时的方法 修饰符和类型 方法 说明 static GraphAlgebra.LogicalPlan.Operator.OprCaseforNumber(int value)intgetNumber()static GraphAlgebra.LogicalPlan.Operator.OprCasevalueOf(int value)已过时。static GraphAlgebra.LogicalPlan.Operator.OprCasevalueOf(String name)返回带有指定名称的该类型的枚举常量。static GraphAlgebra.LogicalPlan.Operator.OprCase[]values()按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
-
-
-
枚举常量详细资料
-
PROJECT
public static final GraphAlgebra.LogicalPlan.Operator.OprCase PROJECT
-
SELECT
public static final GraphAlgebra.LogicalPlan.Operator.OprCase SELECT
-
JOIN
public static final GraphAlgebra.LogicalPlan.Operator.OprCase JOIN
-
UNION
public static final GraphAlgebra.LogicalPlan.Operator.OprCase UNION
-
GROUP_BY
public static final GraphAlgebra.LogicalPlan.Operator.OprCase GROUP_BY
-
ORDER_BY
public static final GraphAlgebra.LogicalPlan.Operator.OprCase ORDER_BY
-
DEDUP
public static final GraphAlgebra.LogicalPlan.Operator.OprCase DEDUP
-
UNFOLD
public static final GraphAlgebra.LogicalPlan.Operator.OprCase UNFOLD
-
APPLY
public static final GraphAlgebra.LogicalPlan.Operator.OprCase APPLY
-
SEG_APPLY
public static final GraphAlgebra.LogicalPlan.Operator.OprCase SEG_APPLY
-
SCAN
public static final GraphAlgebra.LogicalPlan.Operator.OprCase SCAN
-
LIMIT
public static final GraphAlgebra.LogicalPlan.Operator.OprCase LIMIT
-
AS
public static final GraphAlgebra.LogicalPlan.Operator.OprCase AS
-
INTERSECT
public static final GraphAlgebra.LogicalPlan.Operator.OprCase INTERSECT
-
SINK
public static final GraphAlgebra.LogicalPlan.Operator.OprCase SINK
-
ROOT
public static final GraphAlgebra.LogicalPlan.Operator.OprCase ROOT
-
SAMPLE
public static final GraphAlgebra.LogicalPlan.Operator.OprCase SAMPLE
-
BRANCH
public static final GraphAlgebra.LogicalPlan.Operator.OprCase BRANCH
-
VERTEX
public static final GraphAlgebra.LogicalPlan.Operator.OprCase VERTEX
-
EDGE
public static final GraphAlgebra.LogicalPlan.Operator.OprCase EDGE
-
PATH
public static final GraphAlgebra.LogicalPlan.Operator.OprCase PATH
-
PATTERN
public static final GraphAlgebra.LogicalPlan.Operator.OprCase PATTERN
-
OPR_NOT_SET
public static final GraphAlgebra.LogicalPlan.Operator.OprCase OPR_NOT_SET
-
-
方法详细资料
-
values
public static GraphAlgebra.LogicalPlan.Operator.OprCase[] values()
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。该方法可用于迭代 常量, 如下所示:for (GraphAlgebra.LogicalPlan.Operator.OprCase c : GraphAlgebra.LogicalPlan.Operator.OprCase.values()) System.out.println(c);
- 返回:
- 按照声明该枚举类型的常量的顺序返回的包含这些常量的数组
-
valueOf
public static GraphAlgebra.LogicalPlan.Operator.OprCase valueOf(String name)
返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)- 参数:
name- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException- 如果该枚举类型没有带有指定名称的常量NullPointerException- 如果参数为空值
-
valueOf
@Deprecated public static GraphAlgebra.LogicalPlan.Operator.OprCase valueOf(int value)
已过时。返回带有指定名称的该类型的枚举常量。 字符串必须与用于声明该类型的枚举常量的 标识符完全匹配。(不允许有多余 的空格字符。)- 参数:
value- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException- 如果该枚举类型没有带有指定名称的常量NullPointerException- 如果参数为空值
-
forNumber
public static GraphAlgebra.LogicalPlan.Operator.OprCase forNumber(int value)
-
getNumber
public int getNumber()
- 指定者:
getNumber在接口中com.google.protobuf.Internal.EnumLite
-
-