All Packages Class Hierarchy This Package Previous Next Index
Class aioli.vtp.PlusArity
java.lang.Object
|
+----aioli.vtp.PlusArity
- public class PlusArity
- extends Object
- implements Arity
-
PlusArity()
-
-
atomp()
- Checks if it is an atom list.
-
fixedp()
- Checks if it is an fixed list.
-
getarity()
- When the arity is fixed returns the number
of sons accepted.
-
gettype()
- Returns the type of arity.
-
pluslistp()
-
Checks if it is a plus list.
-
starlistp()
-
Checks if it is a star list.
PlusArity
public PlusArity()
starlistp
public boolean starlistp()
- Checks if it is a star list.
- Returns:
- Always false.
pluslistp
public boolean pluslistp()
- Checks if it is a plus list.
- Returns:
- Always true.
atomp
public boolean atomp()
- Checks if it is an atom list.
- Returns:
- Always false.
fixedp
public boolean fixedp()
- Checks if it is an fixed list.
- Returns:
- Always false.
getarity
public int getarity()
- When the arity is fixed returns the number
of sons accepted.
- Returns:
- Always 0.
gettype
public int gettype()
- Returns the type of arity.
- Returns:
- atomarity.TREE.
- See Also:
- Arity
All Packages Class Hierarchy This Package Previous Next Index