Package com.facebook.buck.core.cell
Class CellName
- java.lang.Object
-
- com.facebook.buck.core.cell.CellName
-
public abstract class CellName extends Object
Describes a cell name relative to another cell.
-
-
Field Summary
Fields Modifier and Type Field Description static CellName
ALL_CELLS_SPECIAL_NAME
static String
ALL_CELLS_SPECIAL_STRING
static CellName
ROOT_CELL_NAME
-
Constructor Summary
Constructors Constructor Description CellName()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected void
checkComponents()
Optional<String>
getLegacyName()
abstract String
getName()
static CellName
of(String name)
String
toString()
-
-
-
Field Detail
-
ALL_CELLS_SPECIAL_STRING
public static final String ALL_CELLS_SPECIAL_STRING
- See Also:
- Constant Field Values
-
ROOT_CELL_NAME
public static final CellName ROOT_CELL_NAME
-
ALL_CELLS_SPECIAL_NAME
public static final CellName ALL_CELLS_SPECIAL_NAME
-
-