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

org.apache.poi.xwpf.converter.core.openxmlformats.styles.paragraph.ParagraphIndentationHangingValueProvider Maven / Gradle / Ivy

package org.apache.poi.xwpf.converter.core.openxmlformats.styles.paragraph;

import java.math.BigInteger;

import org.apache.poi.xwpf.converter.core.utils.DxaUtil;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTInd;

public class ParagraphIndentationHangingValueProvider
    extends AbstractIndentationParagraphValueProvider
{

    public static final ParagraphIndentationHangingValueProvider INSTANCE = new ParagraphIndentationHangingValueProvider();

    @Override
    public Float getValue( CTInd ind )
    {
        BigInteger hanging = ind.getHanging();
        if ( hanging != null )
        {
            return DxaUtil.dxa2points( hanging );
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy