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

com.blossomproject.generator.configuration.LongFieldBuilder Maven / Gradle / Ivy

package com.blossomproject.generator.configuration;

import com.blossomproject.generator.configuration.model.Field;
import com.blossomproject.generator.configuration.model.impl.DefaultField;

public class LongFieldBuilder extends FieldBuilder {

  LongFieldBuilder(FieldsBuilder parent, String name) {
    super(parent, name, Long.class, "bigint");
  }

  @Override
  Field build() {
    return new DefaultField(name, columnName, className, jdbcType, required, updatable, nullable,
      defaultValue, searchable);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy