There are 11 code examples for java.io.ObjectOutput.

The API names are highlighted below. You can use suckoo button to vote the code example(s) you like. The best code example will be ranked first next time. Thanks a lot for your feedback.

Project Name: hnlpengine-nlpengine Package: nlp.lang.he.morph.erel.io

Source Code: CollectionWriter.java (Click to view .java file)

Method Code:
vote
like

/** 
 * @exception ClassCastExceptionif the given ObjectOutput is not a Writer.
 */
public static CollectionWriter castc(ObjectOutput oout) throws IOException {
  return oout instanceof CollectionWriter ? (CollectionWriter)oout : new CollectionWriter(oout);
}
 

Project Name: hnlpengine-nlpengine Package: nlp.lang.he.morph.erel.io

Source Code: ObjectWriter.java (Click to view .java file)

Method Code:
vote
like

/** 
 * @exception ClassCastExceptionif the given ObjectOutput is not a Writer.
 */
public static ObjectWriter cast(ObjectOutput oout) throws IOException {
  return oout instanceof ObjectWriter ? (ObjectWriter)oout : new ObjectWriter(oout);
}
 

Project Name: hnlpengine-nlpengine Package: nlp.lang.he.morph.erel.mila

Source Code: WordTemplateVector.java (Click to view .java file)

Method Code:
vote
like

@Override public void writeExternal(ObjectOutput oout) throws IOException {
  CollectionWriter out=CollectionWriter.castc(oout);
  out.writeVector(this,"\r\n");
}
 

Project Name: hnlpengine-nlpengine Package: nlp.lang.he.morph.erel.mila

Source Code: FormExtended.java (Click to view .java file)

Method Code:
vote
like

@Override public void writeExternal(ObjectOutput out) throws IOException {
  out.writeBytes(mxrozt_cfufa());
}
 

Project Name: hnlpengine-nlpengine Package: nlp.lang.he.morph.erel.mila

Source Code: Lexicon.java (Click to view .java file)

Method Code:
vote
like

public void writeExternal(ObjectOutput out) throws IOException {
  out.writeBytes(toString());
}
 

Project Name: hnlpengine-nlpengine Package: nlp.lang.he.morph.erel.mila

Source Code: FormBasic.java (Click to view .java file)

Method Code:
vote
like

public void writeExternal(ObjectOutput out) throws IOException {
  out.writeBytes(mxrozt_cfufa());
}
 

Project Name: hnlpengine-nlpengine Package: nlp.lang.he.morph.erel.mila

Source Code: WordTemplate.java (Click to view .java file)

Method Code:
vote
like

public void writeExternal(ObjectOutput out) throws IOException {
  out.writeChars(evidence);
  out.writeChar(':');
  if (evidence.length() < 7)   out.writeChar('\t');
  out.writeByte(type);
  out.writeChar('\t');
  out.writeChars(syfa);
  information.writeExternal(out);
}
 

Project Name: hnlpengine-nlpengine Package: nlp.lang.he.morph.erel.sikui

Source Code: FuzzyVector.java (Click to view .java file)

Method Code:
vote
like

public void writeExternal(ObjectOutput out){
}
 

Project Name: hnlpengine-nlpengine Package: nlp.lang.he.morph.erel.sikui.copy

Source Code: FuzzyVector.java (Click to view .java file)

Method Code:
vote
like

public void writeExternal(ObjectOutput out){
}
 

Project Name: hnlpengine-nlpengine Package: nlp.lang.he.morph.erel.util

Source Code: ExternalizableVector.java (Click to view .java file)

Method Code:
vote
like

public void writeExternal(ObjectOutput oout) throws IOException {
  CollectionWriter out=CollectionWriter.castc(oout);
  out.writeVector(this);
}
 

Project Name: hnlpengine-nlpengine Package: nlp.lang.he.morph.erel.util

Source Code: SmallVector.java (Click to view .java file)

Method Code:
vote
like

public void writeExternal(ObjectOutput oout) throws IOException {
  CollectionWriter out=CollectionWriter.castc(oout);
  out.writeVector(this);
}