Package com.sleepycat.persist.model

Examples of com.sleepycat.persist.model.FieldMetadata


                        }
                    }
                    if (compositeKeyFields != null) {
                        int nFields = compositeKeyFields.size();
                        for (int i = 0; i < nFields; i += 1) {
                            FieldMetadata fldMeta = compositeKeyFields.get(i);
                            if (fldMeta.getName().equals(name)) {
                                buf.append(" compositeKeyField=\"");
                                buf.append(i + 1);
                                buf.append('"');
                            }
                        }
View Full Code Here


                        }
                    }
                    if (compositeKeyFields != null) {
                        int nFields = compositeKeyFields.size();
                        for (int i = 0; i < nFields; i += 1) {
                            FieldMetadata fldMeta = compositeKeyFields.get(i);
                            if (fldMeta.getName().equals(name)) {
                                buf.append(" compositeKeyField=\"");
                                buf.append(i + 1);
                                buf.append('"');
                            }
                        }
View Full Code Here

            if (Modifier.isStatic(modifiers) || Modifier.isTransient(modifiers)) {
                continue;
            }

            // grab the field
            fields.add(new FieldMetadata(field.getName(), field.getType().getName(), type.getName()));
        }

        // create the class metadata
        Map<String, SecondaryKeyMetadata> secondaryKeyMap = new HashMap<String, SecondaryKeyMetadata>();
        if (secondaryKeys != null) {
View Full Code Here

TOP

Related Classes of com.sleepycat.persist.model.FieldMetadata

Copyright © 2018 www.massapicom. 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.