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

Java/java/nio/ShortBuffer_static.fz


# Fuzion interface to static members of Java class 'java.nio.ShortBuffer'
#
# !!!!!!  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.ShortBuffer_static is

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

  # call Java static method 'public static java.nio.ShortBuffer java.nio.ShortBuffer.wrap(short[])':
  #
  public wrap__u00005b_S(arg0 Sequence (i16)) Java.java.nio.ShortBuffer =>
    fuzion.java.call_static (Java.java.nio.ShortBuffer) "java.nio.ShortBuffer" "wrap" "([S)Ljava/nio/ShortBuffer;" [(fuzion.java.array_to_java_object (i16) Java.java.nio.ShortBuffer_static.wrap__u00005b_S.this.arg0)]

  # call Java static method 'public static java.nio.ShortBuffer java.nio.ShortBuffer.wrap(short[],int,int)':
  #
  public wrap__u00005b_SII(arg0 Sequence (i16), arg1 i32, arg2 i32) Java.java.nio.ShortBuffer =>
    fuzion.java.call_static (Java.java.nio.ShortBuffer) "java.nio.ShortBuffer" "wrap" "([SII)Ljava/nio/ShortBuffer;" [(fuzion.java.array_to_java_object (i16) Java.java.nio.ShortBuffer_static.wrap__u00005b_SII.this.arg0); (fuzion.java.i32_to_java_object Java.java.nio.ShortBuffer_static.wrap__u00005b_SII.this.arg1); (fuzion.java.i32_to_java_object Java.java.nio.ShortBuffer_static.wrap__u00005b_SII.this.arg2)]

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

  # short-hand to call Java method 'public static java.nio.ShortBuffer java.nio.ShortBuffer.wrap(short[])':
  #
  public wrap(arg0 Sequence (i16)) (Java.java.nio.ShortBuffer) =>
    wrap__u00005b_S Java.java.nio.ShortBuffer_static.wrap.this.arg0

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