
io.sundr.codegen.model.WildcardRefFluent Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2016 The original authors.
*
* 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 io.sundr.codegen.model;
import io.sundr.builder.Nested;
public interface WildcardRefFluent> extends AbstractTypeRefFluent{
public A addToBounds(TypeRef... items); public A removeFromBounds(TypeRef... items); public java.util.List getBounds(); public A withBounds(java.util.List bounds); public A withBounds(TypeRef[] bounds); public A addToVoidRefBounds(VoidRef... items); public A removeFromVoidRefBounds(VoidRef... items); public WildcardRefFluent.VoidRefBoundsNested addNewVoidRefBound(); public WildcardRefFluent.VoidRefBoundsNested addNewVoidRefBoundLike(VoidRef item); public A addToWildcardRefBounds(WildcardRef... items); public A removeFromWildcardRefBounds(WildcardRef... items); public WildcardRefFluent.WildcardRefBoundsNested addNewWildcardRefBound(); public WildcardRefFluent.WildcardRefBoundsNested addNewWildcardRefBoundLike(WildcardRef item); public A addToPrimitiveRefBounds(PrimitiveRef... items); public A removeFromPrimitiveRefBounds(PrimitiveRef... items); public WildcardRefFluent.PrimitiveRefBoundsNested addNewPrimitiveRefBound(); public WildcardRefFluent.PrimitiveRefBoundsNested addNewPrimitiveRefBoundLike(PrimitiveRef item); public A addToTypeParamRefBounds(TypeParamRef... items); public A removeFromTypeParamRefBounds(TypeParamRef... items); public WildcardRefFluent.TypeParamRefBoundsNested addNewTypeParamRefBound(); public WildcardRefFluent.TypeParamRefBoundsNested addNewTypeParamRefBoundLike(TypeParamRef item); public A addToClassRefBounds(ClassRef... items); public A removeFromClassRefBounds(ClassRef... items); public WildcardRefFluent.ClassRefBoundsNested addNewClassRefBound(); public WildcardRefFluent.ClassRefBoundsNested addNewClassRefBoundLike(ClassRef item);
public interface VoidRefBoundsNested extends Nested,VoidRefFluent>{
public N endVoidRefBound(); public N and();
}
public interface WildcardRefBoundsNested extends Nested,WildcardRefFluent>{
public N endWildcardRefBound(); public N and();
}
public interface PrimitiveRefBoundsNested extends Nested,PrimitiveRefFluent>{
public N endPrimitiveRefBound(); public N and();
}
public interface TypeParamRefBoundsNested extends Nested,TypeParamRefFluent>{
public N endTypeParamRefBound(); public N and();
}
interface ClassRefBoundsNested extends Nested,ClassRefFluent>{
public N endClassRefBound(); public N and();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy