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

org.gnome.gtk.ScrollablePolicy Maven / Gradle / Ivy

There is a newer version: 0.11.2
Show newest version
// This file was automatically generated by Java-GI. Do not edit this file
// directly! Visit  for more information.
//
// The API documentation in this file was derived from GObject-Introspection
// metadata and may include text or comments from the original C sources.
//
// Copyright (c), upstream authors as identified in the GObject-Introspection
// metadata.
//
// This generated file is distributed under the same license as the original
// GObject-Introspection data, unless otherwise specified. Users of this file
// are responsible for complying with any licenses or terms required by the
// original authors.
//
// THIS FILE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
//
package org.gnome.gtk;

import io.github.jwharm.javagi.base.Enumeration;
import io.github.jwharm.javagi.interop.Interop;
import java.lang.IllegalStateException;
import java.lang.Override;
import javax.annotation.processing.Generated;
import org.gnome.glib.Type;

/**
 * Defines the policy to be used in a scrollable widget when updating
 * the scrolled window adjustments in a given orientation.
 */
@Generated("io.github.jwharm.JavaGI")
public enum ScrollablePolicy implements Enumeration {
    /**
     * Scrollable adjustments are based on the minimum size
     */
    MINIMUM(0),

    /**
     * Scrollable adjustments are based on the natural size
     */
    NATURAL(1);

    static {
        Gtk.javagi$ensureInitialized();
    }

    private final int value;

    /**
     * Create a new ScrollablePolicy for the provided value
     *
     * @param value the enum value
     */
    private ScrollablePolicy(int value) {
        this.value = value;
    }

    /**
     * Create a new ScrollablePolicy for the provided value
     *
     * @param value the enum value
     * @return the enum for the provided value
     */
    public static ScrollablePolicy of(int value) {
        return switch(value) {
            case 0 -> MINIMUM;
            case 1 -> NATURAL;
            default -> throw new IllegalStateException("Unexpected value: " + value);
        } ;
    }

    /**
     * Get the numeric value of this enum
     *
     * @return the enum value
     */
    @Override
    public int getValue() {
        return value;
    }

    /**
     * Get the GType of the ScrollablePolicy class
     *
     * @return the GType
     */
    public static Type getType() {
        return Interop.getType("gtk_scrollable_policy_get_type");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy