Class LayoutFillOrder
- java.lang.Object
-
- com.google.ar.sceneform.lullmodel.LayoutFillOrder
-
public final class LayoutFillOrder extends java.lang.Object
The directions a layout will grow in. This controls the ordering of elements within wrapping rows, but not the horizontal alignment of those rows as a whole (which is controlled by LayoutHorizontalAlignment).
-
-
Field Summary
Fields Modifier and Type Field Description static int
DownLeft
The first entity is added rightmost, and subsequent entities go down (and then left if wrapping is enabled).static int
DownRight
The first entity is added leftmost, and subsequent entities go down (and then right if wrapping is enabled).static int
LeftDown
The first entity is added rightmost, and subsequent entities go to the left (and then down if wrapping is enabled).static int
LeftUp
The first entity is added rightmost, and subsequent entities go to the left (and then up if wrapping is enabled).static java.lang.String[]
names
static int
RightDown
The first entity is added leftmost, and subsequent entities go to the right (and then down if wrapping is enabled).static int
RightUp
The first entity is added leftmost, and subsequent entities go to the right (and then up if wrapping is enabled).static int
UpLeft
The first entity is added rightmost, and subsequent entities go up (and then left if wrapping is enabled).static int
UpRight
The first entity is added leftmost, and subsequent entities go up (and then right if wrapping is enabled).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
name(int e)
-
-
-
Field Detail
-
RightDown
public static final int RightDown
The first entity is added leftmost, and subsequent entities go to the right (and then down if wrapping is enabled).- See Also:
- Constant Field Values
-
LeftDown
public static final int LeftDown
The first entity is added rightmost, and subsequent entities go to the left (and then down if wrapping is enabled).- See Also:
- Constant Field Values
-
DownRight
public static final int DownRight
The first entity is added leftmost, and subsequent entities go down (and then right if wrapping is enabled).- See Also:
- Constant Field Values
-
DownLeft
public static final int DownLeft
The first entity is added rightmost, and subsequent entities go down (and then left if wrapping is enabled).- See Also:
- Constant Field Values
-
RightUp
public static final int RightUp
The first entity is added leftmost, and subsequent entities go to the right (and then up if wrapping is enabled).- See Also:
- Constant Field Values
-
LeftUp
public static final int LeftUp
The first entity is added rightmost, and subsequent entities go to the left (and then up if wrapping is enabled).- See Also:
- Constant Field Values
-
UpRight
public static final int UpRight
The first entity is added leftmost, and subsequent entities go up (and then right if wrapping is enabled).- See Also:
- Constant Field Values
-
UpLeft
public static final int UpLeft
The first entity is added rightmost, and subsequent entities go up (and then left if wrapping is enabled).- See Also:
- Constant Field Values
-
names
public static final java.lang.String[] names
-
-