Examples of UserType


Examples of org.apache.cassandra.db.marshal.UserType

        List<AbstractType<?>> types = new ArrayList<>(columnTypes.size());
        for (CQL3Type.Raw type : columnTypes)
            types.add(type.prepare(keyspace()).getType());

        return new UserType(name.getKeyspace(), name.getUserTypeName(), names, types);
    }
View Full Code Here

Examples of org.apache.derby.iapi.types.UserType

            modifiedColumns.clear(i);
        }
        columns = modifiedColumns;
      }
          curRow.setColumn(SYSCOLPERMSRowFactory.COLUMNS_COL_NUM,
            new UserType((Object) columns));
      ti.updateRow(uuidKey, curRow,
          SYSCOLPERMSRowFactory.COLPERMSID_INDEX_NUM,
           bArray,
           colsToUpdate,
           tc);
View Full Code Here

Examples of org.apache.derby.iapi.types.UserType

    /* Set up a couple of row templates for fetching CHARS */

    replaceRow[SYSSTATEMENTSRowFactory.SYSSTATEMENTS_VALID - 1] =
            new SQLBoolean(false);
    replaceRow[SYSSTATEMENTSRowFactory.SYSSTATEMENTS_CONSTANTSTATE - 1] =
            new UserType((Object) null);

    /* Scan the entire heap */
    ScanController sc =
            tc.openScan(
                ti.getHeapConglomerate(),
View Full Code Here

Examples of org.apache.derby.iapi.types.UserType

    /*
    ** 10th column is CONSTANTSTATE
    **
    ** CONSTANTSTATE is really a formatable StorablePreparedStatement.
    */
    row.setColumn(10, new UserType(preparedStatement));

    /* 11th column is INITIALLY_COMPILABLE */
    row.setColumn(11, new SQLBoolean(initiallyCompilable));

    return row;
View Full Code Here

Examples of org.apache.lenya.ac.UserType

            userTypes = new HashSet();
            Configuration umConf = configuration.getChild(U_M_CHILD_TAG, false);
            if (umConf != null) {
                Configuration[] typeConfs = umConf.getChildren();
                for (int i = 0; i < typeConfs.length; i++) {
                    userTypes.add(new UserType(typeConfs[i].getValue(), typeConfs[i]
                            .getAttribute(U_T_CLASS_ATTRIBUTE), typeConfs[i]
                            .getAttribute(U_T_CREATE_ATTRIBUTE)));
                }
            } else {
                getLogger().debug(
View Full Code Here

Examples of org.apache.xmlbeans.UserType

    {
        BindingConfig config = state.getBindingConfig();

        if (config != null)
        {
            UserType utype = config.lookupUserTypeForQName(sImpl.getName());
            if (utype != null)
            {
                sImpl.setUserTypeName(utype.getJavaName());
                sImpl.setUserTypeHandlerName(utype.getStaticHandler());
            }
        }
    }
View Full Code Here

Examples of org.cedj.geekseek.web.rest.user.test.model.UserType

            .setBio("Bio");
    }

    @Override
    protected UserType createUpdateRepresentation() {
        return new UserType()
            .setName("Name 2")
            .setBio("Bio 2");
    }
View Full Code Here

Examples of org.hibernate.usertype.UserType

      }
      return gridType;
    }
    else if ( type instanceof CustomType ) {
      CustomType cType = (CustomType) type;
      final UserType userType = cType.getUserType();
      if ( userType instanceof EnumType ) {
        EnumType enumType = (EnumType) userType;
        //should we cache that (the key must be enumClass / isOrdinal
        return new org.hibernate.ogm.type.impl.EnumType( cType, enumType );
      }
View Full Code Here

Examples of org.jboss.test.ws.jaxws.samples.wssecurity.UserType

public class WSSClient {

    public static void main(String[] args) throws MalformedURLException, RemoteException {
        Hello hello = getEndpointPort();

        UserType userType = new UserType();
        userType.setMsg("Hello ESB");
        UserType retObj = hello.echoUserType(userType);
        System.out.println("Echo received '" + retObj.getMsg() "'.");
    }
View Full Code Here

Examples of org.rascalmpl.ast.UserType

    List<UserType> todo = new LinkedList<UserType>();
    todo.addAll(abstractDataTypes);
   
    int countdown = todo.size();
    while (!todo.isEmpty()) {
      UserType trial = todo.remove(0);
      --countdown;
      try {
        declareAbstractDataType(trial, env);
        countdown = todo.size();
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.