Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.gqlstatus;
public enum GqlMessageParams {
action,
actualComponentCount,
actualCount,
actualParameters,
aliasName,
allocator,
arg,
cause,
className,
clause,
clazz, // class is a keyword and cannot be used
cmd,
command,
commandName,
component,
compositeDb,
compositeSessionDb,
constituentOrComposite,
constraintDescriptorOrName,
constraintName,
context,
coordinate,
coordinates,
crs,
crsDimensions,
crsLength,
databaseAlias,
databaseName,
db,
db1,
db2,
dbName,
desc,
desiredPrimaries,
enginetype,
entity,
entityId,
entityOneId,
entityTwoId,
expectedComponentCount,
expectedCount,
expectedInput,
expectedParameter,
expectedTemporalType,
explainValidValues,
expr,
expression,
failingQueryPart,
feature,
featureDescr,
field,
fieldName,
fun,
function,
graph,
graphFunction,
in,
indexConstrName,
indexConstrPat,
indexDescr,
indexDescriptorOrName,
indexDim,
indexName,
input,
input1,
input2,
integerType,
isOrColon,
javaClass,
javaField,
javaMethod,
javaType,
key,
keys,
keyword,
label,
labelExpr,
labelList,
labelOrRelType,
labelOrRelTypeOrPropKey,
labelOrType,
labelOrTypeName,
latestTransactionId,
limit,
lower,
mandatoryKeys,
matchMode,
maxPrimaries,
maxSecondaries,
methodName,
msg,
msgType,
name,
namedDatabaseId,
nbr,
nbrAllocations,
nbrSeedingServers,
node,
nodeOrRel,
nodeOrRelationship,
number,
numberType,
oldDatabaseName,
oldestAcceptableTxId,
operation,
option1,
option2,
otherName,
outputName,
param,
param1,
param2,
param3,
paramFmt,
paramList,
pat,
port,
positionNum,
predList,
preparserInput1,
preparserInput2,
prettifiedHint,
primaryConstrainedServers,
proc,
procFun,
procOrFun,
procOrFunc,
procOrFuncNameOrId,
propKey,
property,
propkey,
propkeyList,
providedArgument,
provider,
quantifiedOrParenthesized,
query1,
query2,
relType,
relationship,
reltype,
replacement,
routingEnabledSetting,
routingPolicy,
runtime,
sanitizedLabelExpression,
schemaDescriptor,
selector,
selectorType,
selectorType2,
server,
serverId,
serverIdString,
serverList,
servers,
sessionDb,
setting,
shortestPathFunc,
sig,
sourceAliasString,
spatial,
stateName,
syntax,
temporal,
text,
thing,
thing1,
thing2,
time,
tokenId,
tokenName,
tokenType,
transactionId,
type,
type1,
type2,
typeOrLabelOrProp,
unit,
unsupportedParts,
upper,
url,
useClause,
validOptions,
validValuesList,
value,
valueType,
values,
var,
varList,
varName,
variable,
vars,
vectorsDim,
workaround,
wrapped,
wrappedError,
xmode;
public String toParamFormat() {
return "$" + this.name();
}
}