Class LayoutFillOrder
- java.lang.Object
-
- com.google.ar.sceneform.lullmodel.LayoutFillOrder
-
public final class LayoutFillOrder extends java.lang.ObjectThe 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 intDownLeftThe first entity is added rightmost, and subsequent entities go down (and then left if wrapping is enabled).static intDownRightThe first entity is added leftmost, and subsequent entities go down (and then right if wrapping is enabled).static intLeftDownThe first entity is added rightmost, and subsequent entities go to the left (and then down if wrapping is enabled).static intLeftUpThe first entity is added rightmost, and subsequent entities go to the left (and then up if wrapping is enabled).static java.lang.String[]namesstatic intRightDownThe first entity is added leftmost, and subsequent entities go to the right (and then down if wrapping is enabled).static intRightUpThe first entity is added leftmost, and subsequent entities go to the right (and then up if wrapping is enabled).static intUpLeftThe first entity is added rightmost, and subsequent entities go up (and then left if wrapping is enabled).static intUpRightThe 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.Stringname(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
-
-