Tabnine Logo
FieldNotFound.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
quickfix.FieldNotFound
constructor

Best Java code snippets using quickfix.FieldNotFound.<init> (Showing top 12 results out of 315)

origin: quickfix-j/quickfixj

StringField getField(int field) throws FieldNotFound {
  final StringField f = (StringField) fields.get(field);
  if (f == null) {
    throw new FieldNotFound(field);
  }
  return f;
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

StringField getField(int field) throws FieldNotFound {
  final StringField f = (StringField) fields.get(field);
  if (f == null) {
    throw new FieldNotFound(field);
  }
  return f;
}
origin: org.quickfixj/quickfixj-all

StringField getField(int field) throws FieldNotFound {
  final StringField f = (StringField) fields.get(field);
  if (f == null) {
    throw new FieldNotFound(field);
  }
  return f;
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

public Group getGroup(int num, int groupTag) throws FieldNotFound {
  List<Group> groupList = getGroups(groupTag);
  if (num > groupList.size()) {
    throw new FieldNotFound(groupTag + ", index=" + num);
  }
  return groupList.get(num - 1);
}
origin: quickfix-j/quickfixj

public Group getGroup(int num, int groupTag) throws FieldNotFound {
  List<Group> groupList = getGroups(groupTag);
  if (num > groupList.size()) {
    throw new FieldNotFound(groupTag + ", index=" + num);
  }
  return groupList.get(num - 1);
}
origin: org.quickfixj/quickfixj-all

public Group getGroup(int num, int groupTag) throws FieldNotFound {
  List<Group> groupList = getGroups(groupTag);
  if (num > groupList.size()) {
    throw new FieldNotFound(groupTag + ", index=" + num);
  }
  return groupList.get(num - 1);
}
origin: quickfix-j/quickfixj

public Group getGroup(int num, Group group) throws FieldNotFound {
  final List<Group> groupList = getGroups(group.getFieldTag());
  if (num > groupList.size()) {
    throw new FieldNotFound(group.getFieldTag() + ", index=" + num);
  }
  final Group grp = groupList.get(num - 1);
  group.setFields(grp);
  group.setGroups(grp);
  return group;
}
origin: org.quickfixj/quickfixj-all

public BytesField getField(BytesField field) throws FieldNotFound {
  final Field<?> returnField = fields.get(field.getField());
  if (returnField == null) {
    throw new FieldNotFound(field.getField());
  } else if (returnField instanceof BytesField) {
    return (BytesField) returnField;
  } else {
    throw new FieldException(SessionRejectReason.INCORRECT_DATA_FORMAT_FOR_VALUE,
        field.getField());
  }
}
origin: quickfix-j/quickfixj

public BytesField getField(BytesField field) throws FieldNotFound {
  final Field<?> returnField = fields.get(field.getField());
  if (returnField == null) {
    throw new FieldNotFound(field.getField());
  } else if (returnField instanceof BytesField) {
    return (BytesField) returnField;
  } else {
    throw new FieldException(SessionRejectReason.INCORRECT_DATA_FORMAT_FOR_VALUE,
        field.getField());
  }
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

public Group getGroup(int num, Group group) throws FieldNotFound {
  final List<Group> groupList = getGroups(group.getFieldTag());
  if (num > groupList.size()) {
    throw new FieldNotFound(group.getFieldTag() + ", index=" + num);
  }
  final Group grp = groupList.get(num - 1);
  group.setFields(grp);
  group.setGroups(grp);
  return group;
}
origin: org.quickfixj/quickfixj-all

public Group getGroup(int num, Group group) throws FieldNotFound {
  final List<Group> groupList = getGroups(group.getFieldTag());
  if (num > groupList.size()) {
    throw new FieldNotFound(group.getFieldTag() + ", index=" + num);
  }
  final Group grp = groupList.get(num - 1);
  group.setFields(grp);
  group.setGroups(grp);
  return group;
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

public BytesField getField(BytesField field) throws FieldNotFound {
  final Field<?> returnField = fields.get(field.getField());
  if (returnField == null) {
    throw new FieldNotFound(field.getField());
  } else if (returnField instanceof BytesField) {
    return (BytesField) returnField;
  } else {
    throw new FieldException(SessionRejectReason.INCORRECT_DATA_FORMAT_FOR_VALUE,
        field.getField());
  }
}
quickfixFieldNotFound<init>

Popular methods of FieldNotFound

  • getMessage
  • printStackTrace

Popular in Java

  • Reactive rest calls using spring rest template
  • addToBackStack (FragmentTransaction)
  • findViewById (Activity)
  • getApplicationContext (Context)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • BoxLayout (javax.swing)
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now