Class BuiltinStatement
Declares a builtin identifier and its type
Implements
IEquatable<BuiltinStatement >
Inherited Members
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class BuiltinStatement : Statement, IEquatable<BuiltinStatement>
Constructors
BuiltinStatement(String, Identifier)
Initializes a new instance of the Builtin
Declaration
public BuiltinStatement(string type = null, Identifier id = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | Type of AST node. |
Identifier | id | id. |
Properties
Id
Gets or Sets Id
Declaration
public Identifier Id { get; set; }
Property Value
Type | Description |
---|---|
Identifier |
Type
Type of AST node
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System. |
Type of AST node |
Methods
Equals(BuiltinStatement)
Returns true if BuiltinStatement instances are equal
Declaration
public bool Equals(BuiltinStatement input)
Parameters
Type | Name | Description |
---|---|---|
Builtin |
input | Instance of BuiltinStatement to be compared |
Returns
Type | Description |
---|---|
System. |
Boolean |
Equals(Object)
Returns true if objects are equal
Declaration
public override bool Equals(object input)
Parameters
Type | Name | Description |
---|---|---|
System. |
input | Object to be compared |
Returns
Type | Description |
---|---|
System. |
Boolean |
Overrides
GetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System. |
Hash code |
Overrides
ToJson()
Returns the JSON string presentation of the object
Declaration
public override string ToJson()
Returns
Type | Description |
---|---|
System. |
JSON string presentation of the object |
Overrides
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System. |
String presentation of the object |
Overrides
Implements
IEquatable<>