KotlinPropertyAndImports.java
/*
* Copyright 2006-2026 the original author or 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
*
* https://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 org.mybatis.generator.runtime.dynamicsql.kotlin.elements;
import java.util.HashSet;
import java.util.Objects;
import java.util.Set;
import org.jspecify.annotations.Nullable;
import org.mybatis.generator.api.dom.kotlin.KotlinProperty;
public class KotlinPropertyAndImports {
private final KotlinProperty property;
private final Set<String> imports;
private KotlinPropertyAndImports(Builder builder) {
property = Objects.requireNonNull(builder.property);
imports = builder.imports;
}
public KotlinProperty getProperty() {
return property;
}
public Set<String> getImports() {
return imports;
}
public static Builder withProperty(KotlinProperty property) {
return new Builder().withProperty(property);
}
public static class Builder {
private @Nullable KotlinProperty property;
private final Set<String> imports = new HashSet<>();
public Builder withProperty(KotlinProperty property) {
this.property = property;
return this;
}
public Builder withImports(Set<String> imports) {
this.imports.addAll(imports);
return this;
}
public KotlinPropertyAndImports build() {
return new KotlinPropertyAndImports(this);
}
}
}