
io.sundr.codegen.model.ClassRefFluent 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 ClassRefFluent> extends AbstractTypeRefFluent{
public TypeDef getDefinition(); public A withDefinition(TypeDef definition); public ClassRefFluent.DefinitionNested withNewDefinition(); public ClassRefFluent.DefinitionNested withNewDefinitionLike(TypeDef item); public ClassRefFluent.DefinitionNested editDefinition(); public int getDimensions(); public A withDimensions(int dimensions); public A addToArguments(TypeRef... items); public A removeFromArguments(TypeRef... items); public java.util.List getArguments(); public A withArguments(java.util.List arguments); public A withArguments(TypeRef... arguments); public A addToVoidRefArguments(VoidRef... items); public A removeFromVoidRefArguments(VoidRef... items); public ClassRefFluent.VoidRefArgumentsNested addNewVoidRefArgument(); public ClassRefFluent.VoidRefArgumentsNested addNewVoidRefArgumentLike(VoidRef item); public A addToWildcardRefArguments(WildcardRef... items); public A removeFromWildcardRefArguments(WildcardRef... items); public ClassRefFluent.WildcardRefArgumentsNested addNewWildcardRefArgument(); public ClassRefFluent.WildcardRefArgumentsNested addNewWildcardRefArgumentLike(WildcardRef item); public A addToPrimitiveRefArguments(PrimitiveRef... items); public A removeFromPrimitiveRefArguments(PrimitiveRef... items); public ClassRefFluent.PrimitiveRefArgumentsNested addNewPrimitiveRefArgument(); public ClassRefFluent.PrimitiveRefArgumentsNested addNewPrimitiveRefArgumentLike(PrimitiveRef item); public A addToTypeParamRefArguments(TypeParamRef... items); public A removeFromTypeParamRefArguments(TypeParamRef... items); public ClassRefFluent.TypeParamRefArgumentsNested addNewTypeParamRefArgument(); public ClassRefFluent.TypeParamRefArgumentsNested addNewTypeParamRefArgumentLike(TypeParamRef item); public A addToClassRefArguments(ClassRef... items); public A removeFromClassRefArguments(ClassRef... items); public ClassRefFluent.ClassRefArgumentsNested addNewClassRefArgument(); public ClassRefFluent.ClassRefArgumentsNested addNewClassRefArgumentLike(ClassRef item);
interface DefinitionNested extends Nested,TypeDefFluent>{
public N endDefinition(); public N and();
}
public interface VoidRefArgumentsNested extends Nested,VoidRefFluent>{
public N endVoidRefArgument(); public N and();
}
public interface WildcardRefArgumentsNested extends Nested,WildcardRefFluent>{
public N endWildcardRefArgument(); public N and();
}
public interface PrimitiveRefArgumentsNested extends Nested,PrimitiveRefFluent>{
public N endPrimitiveRefArgument(); public N and();
}
public interface TypeParamRefArgumentsNested extends Nested,TypeParamRefFluent>{
public N endTypeParamRefArgument(); public N and();
}
interface ClassRefArgumentsNested extends Nested,ClassRefFluent>{
public N endClassRefArgument(); public N and();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy