fromString static method
Implementation
static LayrzProtocolMode fromString(String value) {
switch (value) {
case 'TCP':
return LayrzProtocolMode.tcp;
case 'HTTP':
default:
return LayrzProtocolMode.http;
}
}
static LayrzProtocolMode fromString(String value) {
switch (value) {
case 'TCP':
return LayrzProtocolMode.tcp;
case 'HTTP':
default:
return LayrzProtocolMode.http;
}
}