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

org.hisp.dhis.rules.functions.RuleFunction Maven / Gradle / Ivy

package org.hisp.dhis.rules.functions;

import org.hisp.dhis.rules.models.TimeInterval;
import org.joda.time.LocalDate;
import org.joda.time.format.DateTimeFormat;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

public abstract class RuleFunction
{
    static final String DATE_PATTERN = "yyyy-MM-dd";

    static public TimeInterval getTimeInterval( String start, String end )
    {
        if ( isEmpty( start ) || isEmpty( end ) )
        {
            return TimeInterval.empty();
        }

        LocalDate startDate = LocalDate.parse( start, DateTimeFormat.forPattern( DATE_PATTERN ) );
        LocalDate endDate = LocalDate.parse( end, DateTimeFormat.forPattern( DATE_PATTERN ) );

        return TimeInterval.fromTo( startDate, endDate );
    }

    static public String wrap( String input )
    {
        if ( input == null )
        {
            return "";
        }
        return input;
    }

    static boolean isEmpty( String input )
    {
        return input == null || input.length() == 0;
    }

    @Nonnull
    public double toDouble( @Nullable final String str, final double defaultValue )
    {
        if ( str == null )
        {
            return defaultValue;
        }

        try
        {
            return Double.parseDouble( str );
        }
        catch ( final NumberFormatException nfe )
        {
            return defaultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy