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

org.opendaylight.yangtools.binding.runtime.api.RuntimeGeneratedUnion Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2021 PANTHEON.tech, s.r.o. 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.binding.runtime.api;

import com.google.common.annotations.Beta;
import java.util.List;
import org.eclipse.jdt.annotation.NonNull;
import org.opendaylight.yangtools.binding.model.api.GeneratedTransferObject;

/**
 * A {@link GeneratedTransferObject} created for run-time representation of a {@code union}.
 */
@Beta
public interface RuntimeGeneratedUnion extends GeneratedTransferObject {
    /**
     * List of property names corresponding to individual {@code type} statements within this union. The ordering of
     * the returned list matches the ordering of the type statements.
     *
     * @return A list of property names.
     */
    @NonNull List typePropertyNames();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy