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

de.jaggl.sqlbuilder.domain.PlainGroupable Maven / Gradle / Ivy

There is a newer version: 2.7.2
Show newest version
package de.jaggl.sqlbuilder.domain;

import de.jaggl.sqlbuilder.utils.Indentation;
import lombok.AllArgsConstructor;
import lombok.ToString;

/**
 * @author Martin Schumacher
 *
 * @since 2.0.0
 */
@AllArgsConstructor
@ToString
public class PlainGroupable implements Groupable
{
    private String value;

    @Override
    public String getValue(BuildingContext context, Indentation indentation)
    {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy