Uses of Interface
com.bc.ceres.binio.Type
-
Packages that use Type Package Description com.bc.ceres.binio The corebinioAPI.com.bc.ceres.binio.binx Provides the ability to read BinX schema files.com.bc.ceres.binio.expr Contains interfaces and classes which shall enable users to describe their data formats using an interpreted language by constructing an evaluatable tree of expressions. -
-
Uses of Type in com.bc.ceres.binio
Subinterfaces of Type in com.bc.ceres.binio Modifier and Type Interface Description interfaceCollectionTypeinterfaceCompoundTypeinterfaceSequenceTypeinterfaceVarSequenceTypeClasses in com.bc.ceres.binio that implement Type Modifier and Type Class Description classSimpleTypeMethods in com.bc.ceres.binio that return Type Modifier and Type Method Description TypeSequenceType. getElementType()TypeCompoundType. getMemberType(int memberIndex)TypeCompoundMember. getType()TypeDataFormat. getTypeDef(String name)TypeDataFormat. removeTypeDef(String name)Methods in com.bc.ceres.binio with parameters of type Type Modifier and Type Method Description voidDataFormat. addTypeDef(String name, Type type)static CompoundMemberTypeBuilder. MEMBER(String name, Type type)Creates a compound member.static SequenceTypeTypeBuilder. SEQUENCE(Type elementType, int elementCount)Creates a sequence type for the given element type and count.static VarSequenceTypeTypeBuilder. VAR_SEQUENCE(Type elementType, int memberIndex)Creates a dynamic sequence type whose element count is resolved by a compound member determined by the given member index.static VarSequenceTypeTypeBuilder. VAR_SEQUENCE(Type elementType, String memberName)Creates a dynamic sequence type whose element count is resolved by a compound member determined by the given member name. -
Uses of Type in com.bc.ceres.binio.binx
Methods in com.bc.ceres.binio.binx that return Type Modifier and Type Method Description TypeBinX. getDefinition(String name)TypeBinX. setDefinition(String name, Type value)Methods in com.bc.ceres.binio.binx with parameters of type Type Modifier and Type Method Description TypeBinX. setDefinition(String name, Type value) -
Uses of Type in com.bc.ceres.binio.expr
Methods in com.bc.ceres.binio.expr with parameters of type Type Modifier and Type Method Description static SelectionExpr.CaseExpressionBuilder. CASE(Object value, Type type)static SelectionExpr.DefaultExpressionBuilder. DEFAULT(Type type)static ChoiceExprExpressionBuilder. IF(Expression condition, Type type1, Type type2)static CompoundExpr.MemberExpressionBuilder. MEMBER(String name, Type type)static SequenceExprExpressionBuilder. SEQ(Type elementType, int elementCount)static SequenceExprExpressionBuilder. SEQ(Type elementType, Expression elementCount)
-