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 lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import org.apache.commons.lang3.StringUtils;
@Getter
@Setter
@RequiredArgsConstructor
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 final String dimension;
private final List items;
public String getDimensionValue()
{
return dimension.concat( ":" ).concat( StringUtils.join( items, ";" ) );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy