PowerQueryFormulaItemType

Inheritance: java.lang.Object

public final class PowerQueryFormulaItemType

Represents the type of a Power Query formula item.

Fields

FieldDescription
FUNCTIONThe item is a function (contains => arrow).
LISTThe item is a list (starts with {).
LITERALThe item is a literal value (string, number, boolean, null).
PARAMETERThe item is a parameter.
UNKNOWNUnknown or default type.

Methods

MethodDescription
equals(Object arg0)
getClass()
hashCode()
notify()
notifyAll()
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

FUNCTION

public static final int FUNCTION

The item is a function (contains => arrow).

LIST

public static final int LIST

The item is a list (starts with {).

LITERAL

public static final int LITERAL

The item is a literal value (string, number, boolean, null).

PARAMETER

public static final int PARAMETER

The item is a parameter.

UNKNOWN

public static final int UNKNOWN

Unknown or default type.

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int