![JAR search and dependency download from the Maven repository](/logo.png)
com.legstar.coxb.transform.IHostTransformers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of legstar-coxbapi Show documentation
Show all versions of legstar-coxbapi Show documentation
Cobol Transformers Application Programming Interface.
The newest version!
/*******************************************************************************
* Copyright (c) 2015 LegSem.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser Public License v2.1
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* Contributors:
* LegSem - initial API and implementation
******************************************************************************/
package com.legstar.coxb.transform;
/**
* Classes implementing this interface group transformers for a given
* complex type.
*
*/
public interface IHostTransformers {
/**
* Transforms java data object to host data with a specific host character
* set.
*
* @param valueObject a java value object
* @param hostCharset the host character set
* @return a byte array with host data
* @throws HostTransformException if transformation fails
*/
byte[] toHost(
final Object valueObject, final String hostCharset)
throws HostTransformException;
/**
* Transforms java data object to host data.
*
* @param valueObject a java value object
* @return a byte array with host data
* @throws HostTransformException if transformation fails
*/
byte[] toHost(final Object valueObject) throws HostTransformException;
/**
* Transforms java data object to host data with a specific host character
* set.
*
* @param valueObject a java value object
* @param hostCharset the host character set
* @param status will contain information on the transformation after it is
* executed
* @return a byte array with host data
* @throws HostTransformException if transformation fails
*/
byte[] toHost(
final Object valueObject, final String hostCharset,
final HostTransformStatus status) throws HostTransformException;
/**
* Transforms java data object to host data.
*
* @param valueObject a java value object
* @param status will contain information on the transformation after it is
* executed
* @return a byte array with host data
* @throws HostTransformException if transformation fails
*/
byte[] toHost(final Object valueObject,
final HostTransformStatus status) throws HostTransformException;
/**
* Transforms host data to java data object with a specific host character
* set.
*
* @param hostData a byte array containing host data
* @param hostCharset the host character set
* @return a Java value object
* @throws HostTransformException if transformation fails
*/
Object toJava(final byte[] hostData, final String hostCharset)
throws HostTransformException;
/**
* Transforms host data to java data object.
*
* @param hostData a byte array containing host data
* @return a Java value object
* @throws HostTransformException if transformation fails
*/
Object toJava(final byte[] hostData) throws HostTransformException;
/**
* Transforms host data to java data object with a specific host character
* set.
*
* @param hostData a byte array containing host data
* @param hostCharset the host character set
* @param status will contain information on the transformation after it is
* executed
* @return a Java value object
* @throws HostTransformException if transformation fails
*/
Object toJava(final byte[] hostData, final String hostCharset,
final HostTransformStatus status)
throws HostTransformException;
/**
* Transforms host data to java data object.
*
* @param hostData a byte array containing host data
* @param status will contain information on the transformation after it is
* executed
* @return a Java value object
* @throws HostTransformException if transformation fails
*/
Object toJava(final byte[] hostData,
final HostTransformStatus status) throws HostTransformException;
/**
* Transforms host data to java data object with a specific host character
* set.
*
* @param hostData a byte array containing host data
* @param offset index of first byte to process in hostData
* @param hostCharset the host character set
* @return a Java value object
* @throws HostTransformException if transformation fails
*/
Object toJava(final byte[] hostData, final int offset,
final String hostCharset)
throws HostTransformException;
/**
* Transforms host data to java data object.
*
* @param hostData a byte array containing host data
* @param offset index of first byte to process in hostData
* @return a Java value object
* @throws HostTransformException if transformation fails
*/
Object toJava(final byte[] hostData, final int offset)
throws HostTransformException;
/**
* Transforms host data to java data object with a specific host character
* set.
*
* @param hostData a byte array containing host data
* @param offset index of first byte to process in hostData
* @param hostCharset the host character set
* @param status will contain information on the transformation after it is
* executed
* @return a Java value object
* @throws HostTransformException if transformation fails
*/
Object toJava(final byte[] hostData, final int offset,
final String hostCharset,
final HostTransformStatus status)
throws HostTransformException;
/**
* Transforms host data to java data object.
*
* @param hostData a byte array containing host data
* @param offset index of first byte to process in hostData
* @param status will contain information on the transformation after it is
* executed
* @return a Java value object
* @throws HostTransformException if transformation fails
*/
Object toJava(final byte[] hostData, final int offset,
final HostTransformStatus status) throws HostTransformException;
/**
* @return the transformer that turns a java data object into host data
*/
IJavaToHostTransformer getJavaToHost();
/**
* Sets the transformer that turns a java data object into
* host data.
*
* @param javaToHost the transformer that turns a java data object into
* host data to set
*/
void setJavaToHost(final IJavaToHostTransformer javaToHost);
/**
* Return the transformer that turns host data into a java data object.
*
* @return the transformer that turns host data into a java data object
*/
IHostToJavaTransformer getHostToJava();
/**
* Sets the transformer that turns host data into a java data object.
*
* @param hostToJava the transformer that turns host data into a java data
* object to set
*/
void setHostToJava(final IHostToJavaTransformer hostToJava);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy