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

fr.ouestfrance.querydsl.postgrest.model.CountItem Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package fr.ouestfrance.querydsl.postgrest.model;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

import java.util.HashMap;

@Getter
@Setter
@NoArgsConstructor
public class CountItem extends HashMap {

    public static CountItem of(int count) {
        CountItem countItem = new CountItem();
        countItem.put("count", String.valueOf(count));
        return countItem;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy