Codota Logo
XSDByte.getName
Code IndexAdd Codota to your IDE (free)

How to use
getName
method
in
openllet.core.datatypes.types.real.XSDByte

Best Java code snippets using openllet.core.datatypes.types.real.XSDByte.getName (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
origin: Galigator/openllet

  @Override
  protected Number fromLexicalForm(final String lexicalForm) throws InvalidLiteralException
  {
    try
    {
      final int n = DatatypeConverter.parseInt(lexicalForm);
      if (n < Byte.MIN_VALUE || n > Byte.MAX_VALUE)
        throw new InvalidLiteralException(getName(), lexicalForm);
      return Byte.valueOf((byte) n);
    }
    catch (final NumberFormatException e)
    {
      throw new InvalidLiteralException(getName(), lexicalForm, e);
    }
  }
}
origin: Galigator/openllet

  @Override
  protected Number fromLexicalForm(final String lexicalForm) throws InvalidLiteralException
  {
    try
    {
      final int n = DatatypeConverter.parseInt(lexicalForm);
      if (n < Byte.MIN_VALUE || n > Byte.MAX_VALUE)
        throw new InvalidLiteralException(getName(), lexicalForm);
      return Byte.valueOf((byte) n);
    }
    catch (final NumberFormatException e)
    {
      throw new InvalidLiteralException(getName(), lexicalForm, e);
    }
  }
}
origin: Galigator/openllet

kb.addRange(p, ATermUtils.makeRestrictedDatatype(XSDInteger.getInstance().getName(), new ATermAppl[] { ATermUtils.makeFacetRestriction(Facet.XSD.MIN_INCLUSIVE.getName(), ATermUtils.makeTypedLiteral(Byte.toString(MIN), XSDByte.getInstance().getName())), ATermUtils.makeFacetRestriction(Facet.XSD.MAX_INCLUSIVE.getName(), ATermUtils.makeTypedLiteral(Byte.toString(MAX), XSDByte.getInstance().getName())) }));
openllet.core.datatypes.types.realXSDBytegetName

Popular methods of XSDByte

  • getInstance

Popular in Java

  • Making http requests using okhttp
  • getSharedPreferences (Context)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • Menu (java.awt)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • Collectors (java.util.stream)
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Runner (org.openjdk.jmh.runner)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now