org.hisp.dhis.query.analytics.Dimension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dhis2-java-client Show documentation
Show all versions of dhis2-java-client Show documentation
DHIS 2 API client for Java.
package org.hisp.dhis.query.analytics;
import java.util.List;
import org.apache.commons.lang3.StringUtils;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class Dimension
{
public static final String DIMENSION_DX = "dx";
public static final String DIMENSION_PE = "pe";
public static final String DIMENSION_OU = "ou";
private String dimension;
private List items;
public Dimension()
{
}
public Dimension( String dimension, List items )
{
this.dimension = dimension;
this.items = items;
}
public String getDimensionValue()
{
return dimension.concat( ":" ).concat( StringUtils.join( items, ";" ) );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy