Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
yamin8000 committed Jan 1, 2022
1 parent bfc0fa0 commit 0b46d46
Showing 1 changed file with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package io.githhub.TradersTeam.grand_node_java_client.enums;

public enum IEdmExpression {
None(0),
BinaryConstant(1),
BooleanConstant(2),
DateTimeOffsetConstant(3),
DecimalConstant(4),
FloatingConstant(5),
GuidConstant(6),
IntegerConstant(7),
StringConstant(8),
DurationConstant(9),
Null(10),
Record(11),
Collection(12),
Path(13),
If(14),
Cast(15),
IsType(16),
FunctionApplication(17),
LabeledExpressionReference(18),
Labeled(19),
PropertyPath(20),
NavigationPropertyPath(21),
DateConstant(22),
TimeOfDayConstant(23),
EnumMember(24),
AnnotationPath(25);

final int value;

IEdmExpression(final int value) {
this.value = value;
}
}

0 comments on commit 0b46d46

Please sign in to comment.