com.marklogic.client.impl.RawQueryDefinitionImpl Maven / Gradle / Ivy
/*
* Copyright 2013-2016 MarkLogic Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.marklogic.client.impl;
import com.marklogic.client.io.marker.StructureWriteHandle;
import com.marklogic.client.query.RawCombinedQueryDefinition;
import com.marklogic.client.query.RawQueryByExampleDefinition;
import com.marklogic.client.query.RawQueryDefinition;
import com.marklogic.client.query.RawStructuredQueryDefinition;
abstract public class RawQueryDefinitionImpl
extends AbstractQueryDefinition
implements RawQueryDefinition
{
static public class Combined
extends RawQueryDefinitionImpl
implements RawCombinedQueryDefinition {
Combined(StructureWriteHandle handle) {
super(handle);
}
Combined(StructureWriteHandle handle, String optionsName) {
super(handle, optionsName);
}
@Override
public RawCombinedQueryDefinition withHandle(StructureWriteHandle handle) {
setHandle(handle);
return this;
}
}
static public class Structured
extends RawQueryDefinitionImpl
implements RawStructuredQueryDefinition {
public Structured(StructureWriteHandle handle) {
super(handle);
}
public Structured(StructureWriteHandle handle, String optionsName) {
super(handle, optionsName);
}
@Override
public RawStructuredQueryDefinition withHandle(StructureWriteHandle handle) {
setHandle(handle);
return this;
}
}
static public class ByExample
extends RawQueryDefinitionImpl
implements RawQueryByExampleDefinition {
ByExample(StructureWriteHandle handle) {
super(handle);
}
ByExample(StructureWriteHandle handle, String optionsName) {
super(handle, optionsName);
}
@Override
public RawQueryByExampleDefinition withHandle(StructureWriteHandle handle) {
setHandle(handle);
return this;
}
}
private StructureWriteHandle handle;
RawQueryDefinitionImpl(StructureWriteHandle handle) {
super();
setHandle(handle);
}
RawQueryDefinitionImpl(StructureWriteHandle handle, String optionsName) {
this(handle);
setOptionsName(optionsName);
}
@Override
public StructureWriteHandle getHandle() {
return handle;
}
@Override
public void setHandle(StructureWriteHandle handle) {
this.handle = handle;
}
@Override
public String toString() {
if (handle == null) {
return "";
}
return handle.toString();
}
}