Interface TypeFlags


public interface TypeFlags
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Indicates an abstract type.
    static final int
    Indicates a final type.
    static final int
    No special flags.
    static final int
    Indicates an abstract value type, i.e. a type
    that introduces a value table, but can't be used for
    g_value_init()
  • Field Details

    • NONE

      static final int NONE
      No special flags. Since: 2.74
      See Also:
    • ABSTRACT

      static final int ABSTRACT
      Indicates an abstract type. No instances can be
      created for an abstract type
      See Also:
    • VALUE_ABSTRACT

      static final int VALUE_ABSTRACT
      Indicates an abstract value type, i.e. a type
      that introduces a value table, but can't be used for
      g_value_init()
      See Also:
    • FINAL

      static final int FINAL
      Indicates a final type. A final type is a non-derivable
      leaf node in a deep derivable type hierarchy tree. Since: 2.70
      See Also: