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

org.apache.poi.wp.usermodel.HeaderFooterType Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
==================================================================== */

package org.apache.poi.wp.usermodel;

/**
 * @since POI v3.16 beta 1
 */
public enum HeaderFooterType {

    /**
     * This is the default header or Footer, It is displayed on every page where
     * a more specific header or footer is not specified. It is always displayed
     * on ODD pages that are not the first page of the section.
     */
    DEFAULT(2),

    /**
     * This is an even page header or footer, it is displayed on even pages that
     * are not the first page of the section.
     */
    EVEN(1),

    /**
     * This is a first page header or footer It is displayed on the first page
     * of the section.
     */
    FIRST(3);
    
    private final int code;
    
    private HeaderFooterType(int i) {
        code = i;
    }
    
    public int toInt() {
        return code;
    }
    
    public static HeaderFooterType forInt(int i) {
        for (HeaderFooterType type : values()) {
            if (type.code == i) {
                return type;
            }
        }
        throw new IllegalArgumentException("Invalid HeaderFooterType code: " + i);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy