gnu.io.rfc2217.FlowControlResumeCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nrjavaserial Show documentation
Show all versions of nrjavaserial Show documentation
A fork of the RXTX library with a focus on ease of use and embeddability in other libraries.
/*
* Copyright (C) 2010 Archie L. Cobbs. All rights reserved.
*
* $Id: FlowControlResumeCommand.java 39 2011-03-22 17:21:53Z archie.cobbs $
*/
package gnu.io.rfc2217;
import static gnu.io.rfc2217.RFC2217.COM_PORT_OPTION;
import static gnu.io.rfc2217.RFC2217.FLOWCONTROL_RESUME;
import static gnu.io.rfc2217.RFC2217.SERVER_OFFSET;
/**
* RFC 2217 {@code FLOWCONTROL-RESUME} command.
*
* @see RFC 2217
*/
public class FlowControlResumeCommand extends ComPortCommand {
/**
* Decoding constructor.
*
* @param bytes encoded option starting with the {@code COM-PORT-OPTION} byte
* NullPointerException if {@code bytes} is null
* IllegalArgumentException if {@code bytes} has length != 3
* IllegalArgumentException if {@code bytes[0]} is not {@link RFC2217#COM_PORT_OPTION}
* IllegalArgumentException if {@code bytes[1]} is not {@link RFC2217#FLOWCONTROL_RESUME} (client or server)
*/
public FlowControlResumeCommand(int[] bytes) {
super("FLOWCONTROL-RESUME", FLOWCONTROL_RESUME, bytes);
}
/**
* Encoding constructor.
*
* @param client true for the client-to-server command, false for the server-to-client command
*/
public FlowControlResumeCommand(boolean client) {
this(new int[] {
COM_PORT_OPTION,
client ? FLOWCONTROL_RESUME : FLOWCONTROL_RESUME + SERVER_OFFSET,
});
}
@Override
public String toString() {
return this.getName();
}
@Override
public void visit(ComPortCommandSwitch sw) {
sw.caseFlowControlResume(this);
}
@Override
int getMinPayloadLength() {
return 0;
}
@Override
int getMaxPayloadLength() {
return 0;
}
}