All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendaylight.yangtools.yang.binding.KeyedInstanceIdentifier Maven / Gradle / Ivy

/*
 * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.yangtools.yang.binding;

import org.opendaylight.yangtools.binding.DataObjectIdentifier;
import org.opendaylight.yangtools.binding.DataObjectReference;
import org.opendaylight.yangtools.binding.DataObjectReference.WithKey;
import org.opendaylight.yangtools.binding.DataObjectStep;
import org.opendaylight.yangtools.binding.EntryObject;
import org.opendaylight.yangtools.binding.Key;
import org.opendaylight.yangtools.binding.KeyStep;
import org.opendaylight.yangtools.binding.impl.DataObjectIdentifierWithKey;
import org.opendaylight.yangtools.binding.impl.DataObjectReferenceWithKey;

/**
 * An {@link InstanceIdentifier}, which has a list key attached at its last path element.
 *
 * @param  Target data type
 * @param  Target key type
 */
public final class KeyedInstanceIdentifier, K extends Key>
        extends InstanceIdentifier implements WithKey {
    @java.io.Serial
    private static final long serialVersionUID = 2L;

    KeyedInstanceIdentifier(final Iterable> pathArguments, final boolean wildcarded) {
        super(pathArguments, wildcarded);
    }

    @Override
    public KeyStep lastStep() {
        return getLast(steps());
    }

    @Override
    @Deprecated(since = "14.0.0")
    public KeyedBuilder builder() {
        return toBuilder();
    }

    @Override
    public KeyedBuilder toBuilder() {
        return new KeyedBuilder<>(this);
    }

    @Override
    public DataObjectIdentifier.WithKey toIdentifier() {
        return toReference().toIdentifier();
    }

    @Override
    public DataObjectReference.WithKey toReference() {
        final var steps = steps();
        return isExact() ? new DataObjectIdentifierWithKey<>(null, steps) : new DataObjectReferenceWithKey<>(steps);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy