Skip to content

Latest commit

 

History

History
259 lines (173 loc) · 4.36 KB

File metadata and controls

259 lines (173 loc) · 4.36 KB
title AutoSizeMode
second_title Aspose.BarCode for Android via Java API Reference
description Specifies the different types of automatic sizing modes.
type docs
weight 67
url /androidjava/com.aspose.barcode.generation/autosizemode/

Inheritance: java.lang.Object, java.lang.Enum

public enum AutoSizeMode extends Enum<AutoSizeMode>

Specifies the different types of automatic sizing modes.

Fields

Field Description
INTERPOLATION Resizes barcode to specified size.
NEAREST Resizes barcode to nearest lowest possible size specified by ImageWidth and ImageHeight properties.
NONE Automatic resizing is disabled.

Methods

Method Description
valueOf(Class arg0, String arg1)
compareTo(E arg0)
equals(Object arg0)
getClass()
getDeclaringClass()
getValue()
hashCode()
name()
notify()
notifyAll()
ordinal()
toString()
valueOf(String name)
values()
wait()
wait(long arg0)
wait(long arg0, int arg1)

INTERPOLATION {#INTERPOLATION}

public static final AutoSizeMode INTERPOLATION

Resizes barcode to specified size. Size can be specified by ImageWidth and ImageHeight properties. Generated barcode may be invalid (not readable) after scaling.

NEAREST {#NEAREST}

public static final AutoSizeMode NEAREST

Resizes barcode to nearest lowest possible size specified by ImageWidth and ImageHeight properties. Preserves default aspect ratio.

NONE {#NONE}

public static final AutoSizeMode NONE

Automatic resizing is disabled.

valueOf(Class arg0, String arg1) {#-T-valueOf-java.lang.Class-T--java.lang.String-}

public static T <T>valueOf(Class<T> arg0, String arg1)

Parameters:

Parameter Type Description
arg0 java.lang.Class
arg1 java.lang.String

Returns: T

compareTo(E arg0) {#compareTo-E-}

public final int compareTo(E arg0)

Parameters:

Parameter Type Description
arg0 E

Returns: int

equals(Object arg0) {#equals-java.lang.Object-}

public final boolean equals(Object arg0)

Parameters:

Parameter Type Description
arg0 java.lang.Object

Returns: boolean

getClass() {#getClass--}

public final native Class<?> getClass()

Returns: java.lang.Class<?>

getDeclaringClass() {#getDeclaringClass--}

public final Class<E> getDeclaringClass()

Returns: java.lang.Class

getValue() {#getValue--}

public int getValue()

Returns: int

hashCode() {#hashCode--}

public final int hashCode()

Returns: int

name() {#name--}

public final String name()

Returns: java.lang.String

notify() {#notify--}

public final native void notify()

notifyAll() {#notifyAll--}

public final native void notifyAll()

ordinal() {#ordinal--}

public final int ordinal()

Returns: int

toString() {#toString--}

public String toString()

Returns: java.lang.String

valueOf(String name) {#valueOf-java.lang.String-}

public static AutoSizeMode valueOf(String name)

Parameters:

Parameter Type Description
name java.lang.String

Returns: AutoSizeMode

values() {#values--}

public static AutoSizeMode[] values()

Returns: com.aspose.barcode.generation.AutoSizeMode[]

wait() {#wait--}

public final void wait()

wait(long arg0) {#wait-long-}

public final native void wait(long arg0)

Parameters:

Parameter Type Description
arg0 long

wait(long arg0, int arg1) {#wait-long-int-}

public final void wait(long arg0, int arg1)

Parameters:

Parameter Type Description
arg0 long
arg1 int