Example usage for java.io Serializable interface-usage

List of usage examples for java.io Serializable interface-usage

Introduction

In this page you can find the example usage for java.io Serializable interface-usage.

Usage

From source file com.enonic.cms.core.structure.menuitem.MenuItemContentEntity.java

public class MenuItemContentEntity implements Serializable {
    private MenuItemContentKey key;

    public MenuItemContentKey getKey() {
        return key;
    }

From source file com.enonic.cms.domain.structure.menuitem.MenuItemContentEntity.java

public class MenuItemContentEntity implements Serializable {
    private MenuItemContentKey key;

    public MenuItemContentKey getKey() {
        return key;
    }

From source file com.knowledgetree.indexer.QueryHit.java

@SuppressWarnings("serial")
public class QueryHit implements Serializable {
    public long DocumentID;
    public float Rank;
    public String Title;
    public String Content;

From source file com.sharing.entities.Car.java

@Repository
public class Car implements Serializable {

    private static final long serialVersionUID = -7469392181863831431L;
    /**
     * ?  1? 2.? 3.? 4. 5.?? 6.?? 7.

From source file com.almende.eve.rpc.jsonrpc.JSONMessage.java

/**
 * The Class JSONMessage.
 */
public abstract class JSONMessage implements Serializable {
    private static final long serialVersionUID = -3324436908445901707L;
    protected static final String JSONRPC = "jsonrpc";

From source file ArraySet.java

class ArraySet extends AbstractSet implements Cloneable, Serializable {
    private ArrayList list;

    public ArraySet() {
        list = new ArrayList();
    }

From source file ArraySet.java

public class ArraySet extends AbstractSet implements Cloneable, Serializable {

    private ArrayList list;

    public ArraySet() {
        list = new ArrayList();

From source file com.enonic.cms.core.CaseInsensitiveString.java

/**
 * A class that should work exactely like String, except that when comparing to another String, the case is ignored on the equals method.
 * This is important because frameworks like Hibernate can use this instead of <code>java.lang.String</code>, as keys or other base values
 * where the comparator operation needs to be case insensitve.
 * <p/>
 * Not all methods of String are implemented yet.  If any other methods are needed, just implement them by calling the same method on the

From source file com.enonic.cms.domain.CaseInsensitiveString.java

/**
 * A class that should work exactely like String, except that when comparing to another String, the case is ignored on the equals method.
 * This is important because frameworks like Hibernate can use this instead of <code>java.lang.String</code>, as keys or other base values
 * where the comparator operation needs to be case insensitve.
 * <p/>
 * Not all methods of String are implemented yet.  If any other methods are needed, just implement them by calling the same method on the

From source file org.example.model.licensing.Edition.java

/**
 * Represents an edition of a software license.
 */
public class Edition implements Serializable {
    private final String acronym;
    private final String id;