org.eclipse.ditto.placeholders.PipelineElementDeleted Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ditto-placeholders Show documentation
Show all versions of ditto-placeholders Show documentation
Eclipse Ditto is a framework for creating and managing digital twins in the IoT.
/*
* Copyright (c) 2021 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.eclipse.ditto.placeholders;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.function.Function;
import java.util.function.Supplier;
import javax.annotation.concurrent.Immutable;
/**
* A unique pipeline element signifying deletion of the entire string containing the pipeline.
*/
@Immutable
final class PipelineElementDeleted implements PipelineElement {
static final PipelineElement INSTANCE = new PipelineElementDeleted();
private PipelineElementDeleted() {
// no-op
}
@Override
public Type getType() {
return Type.DELETED;
}
@Override
public PipelineElement onResolved(final Function stringProcessor) {
return this;
}
@Override
public PipelineElement onUnresolved(final Supplier nextPipelineElement) {
return this;
}
@Override
public PipelineElement onDeleted(final Supplier nextPipelineElement) {
return nextPipelineElement.get();
}
@Override
public PipelineElement concat(final PipelineElement pipelineElement) {
return this;
}
@Override
public List evaluate(final PipelineElementVisitor visitor) {
return Collections.singletonList(visitor.deleted());
}
@Override
public Iterator iterator() {
return Collections.emptyIterator();
}
@Override
public String toString() {
return getClass().getSimpleName();
}
}