Fuzion Logo
fuzion-lang.dev — The Fuzion Language Portal
JavaScript seems to be disabled. Functionality is limited.

Java/java/nio/IntBuffer_static.fz


# Fuzion interface to static members of Java class 'java.nio.IntBuffer'
#
# !!!!!!  DO NOT EDIT, GENERATED CODE !!!!!!
#
# This code was generated automatically using the fzjava tool V0.087 called 
# as follows:
#
#   ./build/bin/fzjava java.base -to=build/modules/java.base -verbose=0
#
public Java.java.nio.IntBuffer_static is

  # call Java static method 'public static java.nio.IntBuffer java.nio.IntBuffer.allocate(int)':
  #
  public allocate_I(arg0 i32) Java.java.nio.IntBuffer =>
    fuzion.java.call_static (Java.java.nio.IntBuffer) "java.nio.IntBuffer" "allocate" "(I)Ljava/nio/IntBuffer;" [(fuzion.java.i32_to_java_object Java.java.nio.IntBuffer_static.allocate_I.this.arg0)]

  # call Java static method 'public static java.nio.IntBuffer java.nio.IntBuffer.wrap(int[])':
  #
  public wrap__u00005b_I(arg0 Sequence (i32)) Java.java.nio.IntBuffer =>
    fuzion.java.call_static (Java.java.nio.IntBuffer) "java.nio.IntBuffer" "wrap" "([I)Ljava/nio/IntBuffer;" [(fuzion.java.array_to_java_object (i32) Java.java.nio.IntBuffer_static.wrap__u00005b_I.this.arg0)]

  # call Java static method 'public static java.nio.IntBuffer java.nio.IntBuffer.wrap(int[],int,int)':
  #
  public wrap__u00005b_III(arg0 Sequence (i32), arg1 i32, arg2 i32) Java.java.nio.IntBuffer =>
    fuzion.java.call_static (Java.java.nio.IntBuffer) "java.nio.IntBuffer" "wrap" "([III)Ljava/nio/IntBuffer;" [(fuzion.java.array_to_java_object (i32) Java.java.nio.IntBuffer_static.wrap__u00005b_III.this.arg0); (fuzion.java.i32_to_java_object Java.java.nio.IntBuffer_static.wrap__u00005b_III.this.arg1); (fuzion.java.i32_to_java_object Java.java.nio.IntBuffer_static.wrap__u00005b_III.this.arg2)]

  # short-hand to call Java method 'public static java.nio.IntBuffer java.nio.IntBuffer.allocate(int)':
  #
  public allocate(arg0 i32) (Java.java.nio.IntBuffer) =>
    allocate_I Java.java.nio.IntBuffer_static.allocate.this.arg0

  # short-hand to call Java method 'public static java.nio.IntBuffer java.nio.IntBuffer.wrap(int[])':
  #
  public wrap(arg0 Sequence (i32)) (Java.java.nio.IntBuffer) =>
    wrap__u00005b_I Java.java.nio.IntBuffer_static.wrap.this.arg0

  # short-hand to call Java method 'public static java.nio.IntBuffer java.nio.IntBuffer.wrap(int[],int,int)':
  #
  public wrap(arg0 Sequence (i32), arg1 i32, arg2 i32) (Java.java.nio.IntBuffer) =>
    wrap__u00005b_III Java.java.nio.IntBuffer_static.wrap.this.arg0 Java.java.nio.IntBuffer_static.wrap.this.arg1 Java.java.nio.IntBuffer_static.wrap.this.arg2