2 * Copyright (c) 2021 PANTHEON.tech, s.r.o. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
8 package org.opendaylight.yangtools.yang.parser.spi.meta;
10 import com.google.common.annotations.Beta;
11 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
14 import org.opendaylight.yangtools.yang.parser.api.YangParserConfiguration;
17 * A specialization of {@link AbstractInternedStatementSupport} for {@link String} arguments.
19 * @param <D> Declared Statement representation
20 * @param <E> Effective Statement representation
23 public abstract class AbstractInternedStringStatementSupport<D extends DeclaredStatement<String>,
24 E extends EffectiveStatement<String, D>> extends AbstractInternedStatementSupport<String, D, E> {
25 protected AbstractInternedStringStatementSupport(final StatementDefinition publicDefinition,
26 final StatementPolicy<String, D> policy, final YangParserConfiguration config) {
27 super(publicDefinition, policy, config);
31 public final String parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {