code
stringlengths
2
1.05M
repo_name
stringlengths
5
101
path
stringlengths
4
991
language
stringclasses
3 values
license
stringclasses
5 values
size
int64
2
1.05M
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>knife environment &mdash; chef-client Man Pages</title> <link rel="stylesheet" href="_static/guide.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '', VERSION: '', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="_static/jquery.js"></script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> <link rel="shortcut icon" href="_static/chef.ico"/> </head> <body> <div style="background-color: #212c35; text-align: left; padding: 0px 0px 0px 0px"> <a href="http://docs.opscode.com/"><img src="_static/chef_html_logo.png" border="0" alt="Chef"/></a> </div> <div class="document"> <div class="documentwrapper"> <div class="body"> <div class="section" id="knife-environment"> <h1>knife environment<a class="headerlink" href="#knife-environment" title="Permalink to this headline">¶</a></h1> <p>An environment is a way to map an organization&#8217;s real-life workflow to what can be configured and managed when using server. Every organization begins with a single environment called the <tt class="docutils literal"><span class="pre">_default</span></tt> environment, which cannot be modified (or deleted). Additional environments can be created to reflect each organization&#8217;s patterns and workflow. For example, creating <tt class="docutils literal"><span class="pre">production</span></tt>, <tt class="docutils literal"><span class="pre">staging</span></tt>, <tt class="docutils literal"><span class="pre">testing</span></tt>, and <tt class="docutils literal"><span class="pre">development</span></tt> environments. Generally, an environment is also associated with one (or more) cookbook versions.</p> <p>The <strong>knife environment</strong> subcommand is used to manage environments within a single organization on the server.</p> <div class="admonition note"> <p class="first admonition-title">Note</p> <p class="last">Review the list of <a class="reference internal" href="knife_common_options.html"><em>common options</em></a> available to this (and all) Knife subcommands and plugins.</p> </div> <div class="section" id="compare"> <h2>compare<a class="headerlink" href="#compare" title="Permalink to this headline">¶</a></h2> <p>The <tt class="docutils literal"><span class="pre">compare</span></tt> argument is used to compare the cookbook version constraints that are set on one (or more) environments.</p> <p><strong>Syntax</strong></p> <p>This argument has the following syntax:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment compare <span class="o">[</span>ENVIRONMENT_NAME...<span class="o">]</span> <span class="o">(</span>options<span class="o">)</span> </pre></div> </div> <p><strong>Options</strong></p> <p>This argument has the following options:</p> <dl class="docutils"> <dt><tt class="docutils literal"><span class="pre">-a</span></tt>, <tt class="docutils literal"><span class="pre">--all</span></tt></dt> <dd>Indicates that all environments found at the specified path will be uploaded.</dd> <dt><tt class="docutils literal"><span class="pre">-m</span></tt>, <tt class="docutils literal"><span class="pre">--mismatch</span></tt></dt> <dd>Use to show only matching versions.</dd> </dl> <p><strong>Example</strong></p> <p>To compare cookbook versions for a single environment:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment compare development </pre></div> </div> <p>to return something similar to:</p> <div class="highlight-bash"><div class="highlight"><pre> development apache 2.3.1 windows 4.1.2 </pre></div> </div> <p>To compare cookbook versions for multiple environments:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment compare development staging </pre></div> </div> <p>to return something similar to:</p> <div class="highlight-bash"><div class="highlight"><pre> development staging apache 2.3.1 1.2.2 windows 4.1.2 1.0.0 postgresql 1.0.0 1.0.0 </pre></div> </div> <p>To compare all cookbook versions for all environments:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment compare --all </pre></div> </div> <p>to return something similar to:</p> <div class="highlight-bash"><div class="highlight"><pre> staging development <span class="nb">ulimit </span>latest latest redisio latest latest journly latest latest aws latest latest <span class="nb">test </span>latest latest unicorn latest latest sensu latest latest runit latest latest templater latest latest powershell latest latest openssl latest latest rbenv latest latest rabbitmq latest latest postgresql latest latest mysql latest latest ohai latest latest git latest latest erlang latest latest ssh_known_hosts latest latest nginx latest latest database latest latest yum latest latest xfs latest latest apt latest latest dmg latest latest chef_handler latest latest windows 1.0.0 4.1.2 </pre></div> </div> </div> <div class="section" id="create"> <h2>create<a class="headerlink" href="#create" title="Permalink to this headline">¶</a></h2> <p>The <tt class="docutils literal"><span class="pre">create</span></tt> argument is used to add an environment object to the server. When this argument is run, Knife will open $EDITOR to enable editing of the <tt class="docutils literal"><span class="pre">ENVIRONMENT</span></tt> description field (unless a description is specified as part of the command). When finished, Knife will add the environment to the server.</p> <div class="section" id="syntax"> <h3>Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h3> <p>This argument has the following syntax:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment create ENVIRONMENT_NAME -d DESCRIPTION </pre></div> </div> </div> <div class="section" id="options"> <h3>Options<a class="headerlink" href="#options" title="Permalink to this headline">¶</a></h3> <p>This argument has the following options:</p> <dl class="docutils"> <dt><tt class="docutils literal"><span class="pre">-d</span> <span class="pre">DESCRIPTION</span></tt>, <tt class="docutils literal"><span class="pre">--description</span> <span class="pre">DESCRIPTION</span></tt></dt> <dd>The description of the environment. This value will populate the description field for the environment on the server.</dd> </dl> </div> <div class="section" id="examples"> <h3>Examples<a class="headerlink" href="#examples" title="Permalink to this headline">¶</a></h3> <p>The following examples show how to use this Knife subcommand:</p> <p><strong>Create an environment</strong></p> <p>To create an environment named &#8220;dev&#8221; with a description of &#8220;The development environment.&#8221;:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment create dev -d <span class="s2">&quot;The development environment.&quot;</span> </pre></div> </div> </div> </div> <div class="section" id="delete"> <h2>delete<a class="headerlink" href="#delete" title="Permalink to this headline">¶</a></h2> <p>The <tt class="docutils literal"><span class="pre">delete</span></tt> argument is used to delete an environment from a server.</p> <div class="section" id="id1"> <h3>Syntax<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3> <p>This argument has the following syntax:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment delete ENVIRONMENT_NAME </pre></div> </div> </div> <div class="section" id="id2"> <h3>Options<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3> <p>This command does not have any specific options.</p> </div> <div class="section" id="id3"> <h3>Examples<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3> <p>The following examples show how to use this Knife subcommand:</p> <p><strong>Delete an environment</strong></p> <p>To delete an environment named &#8220;dev&#8221;, enter:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment delete dev </pre></div> </div> <p>Type <tt class="docutils literal"><span class="pre">Y</span></tt> to confirm a deletion.</p> </div> </div> <div class="section" id="edit"> <h2>edit<a class="headerlink" href="#edit" title="Permalink to this headline">¶</a></h2> <p>The <tt class="docutils literal"><span class="pre">edit</span></tt> argument is used to edit the attributes of an environment. When this argument is run, Knife will open $EDITOR to enable editing of <tt class="docutils literal"><span class="pre">ENVIRONMENT</span></tt> attributes. When finished, Knife will update the server with those changes.</p> <div class="section" id="id4"> <h3>Syntax<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3> <p>This argument has the following syntax:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment edit ENVIRONMENT_NAME </pre></div> </div> </div> <div class="section" id="id5"> <h3>Options<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3> <p>This command does not have any specific options.</p> </div> <div class="section" id="id6"> <h3>Examples<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3> <p>The following examples show how to use this Knife subcommand:</p> <p><strong>Edit an environment</strong></p> <p>To edit an environment named &#8220;devops&#8221;, enter:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment edit devops </pre></div> </div> </div> </div> <div class="section" id="from-file"> <h2>from file<a class="headerlink" href="#from-file" title="Permalink to this headline">¶</a></h2> <p>The <tt class="docutils literal"><span class="pre">from</span> <span class="pre">file</span></tt> argument is used to add or update an environment using a JSON or Ruby DSL description. It must be run with the <tt class="docutils literal"><span class="pre">create</span></tt> or <tt class="docutils literal"><span class="pre">edit</span></tt> arguments.</p> <div class="section" id="id7"> <h3>Syntax<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3> <p>This argument has the following syntax:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment <span class="o">[</span>create | edit<span class="o">]</span> from file FILE <span class="o">(</span>options<span class="o">)</span> </pre></div> </div> </div> <div class="section" id="id8"> <h3>Options<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3> <p>This argument has the following options:</p> <dl class="docutils"> <dt><tt class="docutils literal"><span class="pre">-a</span></tt>, <tt class="docutils literal"><span class="pre">--all</span></tt></dt> <dd>Indicates that all environments found at the specified path will be uploaded.</dd> </dl> </div> <div class="section" id="id9"> <h3>Examples<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3> <p>The following examples show how to use this Knife subcommand:</p> <p><strong>Create an environment from a JSON file</strong></p> <p>To add an environment using data contained in a JSON file:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment create devops from file <span class="s2">&quot;path to JSON file&quot;</span> </pre></div> </div> <p>or:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment edit devops from file <span class="s2">&quot;path to JSON file&quot;</span> </pre></div> </div> </div> </div> <div class="section" id="list"> <h2>list<a class="headerlink" href="#list" title="Permalink to this headline">¶</a></h2> <p>The <tt class="docutils literal"><span class="pre">list</span></tt> argument is used to list all of the environments that are currently available on the server.</p> <div class="section" id="id10"> <h3>Syntax<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3> <p>This argument has the following syntax:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment list -w </pre></div> </div> </div> <div class="section" id="id11"> <h3>Options<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3> <p>This argument has the following options:</p> <dl class="docutils"> <dt><tt class="docutils literal"><span class="pre">-w</span></tt>, <tt class="docutils literal"><span class="pre">--with-uri</span></tt></dt> <dd>Indicates that the corresponding URIs will be shown.</dd> </dl> </div> <div class="section" id="id12"> <h3>Examples<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3> <p>The following examples show how to use this Knife subcommand:</p> <p><strong>View a list of environments</strong></p> <p>To view a list of environments:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment list -w </pre></div> </div> </div> </div> <div class="section" id="show"> <h2>show<a class="headerlink" href="#show" title="Permalink to this headline">¶</a></h2> <p>The <tt class="docutils literal"><span class="pre">show</span></tt> argument is used to display information about the specified environment.</p> <div class="section" id="id13"> <h3>Syntax<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3> <p>This argument has the following syntax:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment show ENVIRONMENT_NAME </pre></div> </div> </div> <div class="section" id="id14"> <h3>Options<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3> <p>This argument has the following options:</p> <dl class="docutils"> <dt><tt class="docutils literal"><span class="pre">-a</span> <span class="pre">ATTR</span></tt>, <tt class="docutils literal"><span class="pre">--attribute</span> <span class="pre">ATTR</span></tt></dt> <dd>The attribute (or attributes) to show.</dd> </dl> </div> <div class="section" id="id15"> <h3>Examples<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3> <p>The following examples show how to use this Knife subcommand:</p> <p><strong>Show environments</strong></p> <p>To view information about the &#8220;dev&#8221; environment enter:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife environment show dev </pre></div> </div> <p>to return:</p> <div class="highlight-bash"><div class="highlight"><pre>% knife environment show dev chef_type: environment cookbook_versions: default_attributes: description: json_class: Chef::Environment name: dev override_attributes: <span class="se">\\</span> <span class="se">\\</span> <span class="se">\\</span> <span class="se">\\</span> </pre></div> </div> <p><strong>Show environments as JSON</strong></p> <p>To view information in JSON format, use the <tt class="docutils literal"><span class="pre">-F</span></tt> common option as part of the command like this:</p> <div class="highlight-bash"><div class="highlight"><pre><span class="nv">$ </span>knife role show devops -F json </pre></div> </div> <p>Other formats available include <tt class="docutils literal"><span class="pre">text</span></tt>, <tt class="docutils literal"><span class="pre">yaml</span></tt>, and <tt class="docutils literal"><span class="pre">pp</span></tt>.</p> </div> </div> </div> </div> </div> <div class="clearer"></div> </div> </body> </html>
ccope/chef
distro/common/html/knife_environment.html
HTML
apache-2.0
16,986
<div class="container"> <app-header></app-header> <h2>FAANG datasets</h2> <h3 class="col-md-10 col-md-offset-1 text-primary" *ngIf="hasActiveFilters()"> Active filters: <app-active-filter *ngIf="hasActiveFilters()"></app-active-filter> <button class="btn btn-default" type = "button" (click)="removeFilter()">Remove all filters</button> </h3> <div class="row"> <div class="col-md-2"> <div class="row"> <div class="col-md-12 col-sm-6 faang-filter"> <app-filter title="Standard" [filterSize]=6></app-filter> </div> <div class="col-md-12 col-sm-6 faang-filter"> <app-filter title="Species" [filterSize]=6></app-filter> </div> <div class="col-md-12 col-sm-6 faang-filter"> <app-filter title="Assay type" [filterSize]=3></app-filter> </div> <div class="col-md-12 col-sm-6 faang-filter"> <app-filter title="Archive" [filterSize]=6></app-filter> </div> <div class="col-md-12 col-sm-6 faang-filter"> <app-filter title="Paper published" [filterSize]=2></app-filter> </div> </div> </div> <div class="fails-table col-md-10"> <div *ngIf="(datasetListLong | async) as datasets; else loading"> <button class="btn btn-success" (click)="onDownloadData()">Dowload data</button> <app-export [data]="data" [filename]="'faang_data'" [options]="optionsCsv" *ngIf="downloadData"> Export as CSV file </app-export> <app-export [data]="data" [filename]="'faang_data'" [options]="optionsTabular" *ngIf="downloadData"> Export as Tabular file </app-export> <table class="table table-striped table-hover table-responsive"> <thead> <tr> <th *ngFor="let column of columnNames" style="cursor: pointer" (click)="onTableClick($event)" [id]="column"> {{ column }} <span [ngClass]="column === selectedColumn ? spanClass : defaultClass" *ngIf="column !== 'Number of Experiments' && column !== 'Number of Specimens' && column !== 'Number of Files' && column !== 'Standard' && column !== 'Paper published'" [id]="column"></span> </th> </tr> </thead> <tbody> <tr *ngFor="let dataset of datasets | sort: sort_field | filter: filter_field: 'dataset' | paginate: { itemsPerPage: 10, currentPage: p }"> <td><a style="cursor: pointer" [routerLink]="[dataset['datasetAccession']]">{{dataset['datasetAccession']}}</a></td> <td>{{dataset['title']}}</td> <td>{{dataset['species']}}</td> <td>{{dataset['archive']}}</td> <td>{{dataset['assayType']}}</td> <td>{{dataset['numberOfExperiments']}}</td> <td>{{dataset['numberOfSpecimens']}}</td> <td>{{dataset['numberOfFiles']}}</td> <td>{{dataset['standard']}}</td> <td *ngIf="wasPublished(dataset['paperPublished'])" [ngClass]="isGreen(dataset['paperPublished'])"> <span class="glyphicon glyphicon-ok-circle"></span> </td> <td *ngIf="!wasPublished(dataset['paperPublished'])" [ngClass]="isGreen(dataset['paperPublished'])"> <span class="glyphicon glyphicon-remove-circle"></span> </td> </tr> </tbody> </table> <pagination-controls (pageChange)="p = $event"></pagination-controls> </div> <ng-template #loading> <div> Loading... </div> <table class="table table-striped table-hover table-responsive"> <thead> <tr> <th *ngFor="let column of columnNames"> {{ column }} </th> </tr> </thead> <tbody> <tr *ngFor="let dataset of datasetListShort"> <td><a style="cursor: pointer" [routerLink]="[dataset['datasetAccession']]">{{dataset['datasetAccession']}}</a></td> <td>{{dataset['title']}}</td> <td>{{dataset['species']}}</td> <td>{{dataset['archive']}}</td> <td>{{dataset['assayType']}}</td> <td>{{dataset['numberOfExperiments']}}</td> <td>{{dataset['numberOfSpecimens']}}</td> <td>{{dataset['numberOfFiles']}}</td> <td>{{dataset['standard']}}</td> <td *ngIf="wasPublished(dataset['paperPublished'])" [ngClass]="isGreen(dataset['paperPublished'])"> <span class="glyphicon glyphicon-ok-circle"></span> </td> <td *ngIf="!wasPublished(dataset['paperPublished'])" [ngClass]="isGreen(dataset['paperPublished'])"> <span class="glyphicon glyphicon-remove-circle"></span> </td> </tr> </tbody> </table> <div> Loading... </div> </ng-template> <div class="alert alert-danger" *ngIf="error"><p>{{ error }}</p></div> </div> </div> </div>
FAANG/faang-portal-frontend
src/app/dataset/dataset.component.html
HTML
apache-2.0
5,013
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" /> <link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media="all"/> <link rel="stylesheet" href="../../../../../aui/css/aui-experimental.min.css" media="all"/> <!--[if IE 9]><link rel="stylesheet" href="../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]--> <style type="text/css" media="all"> @import url('../../../../../style.css'); @import url('../../../../../tree.css'); </style> <script src="../../../../../jquery-1.8.3.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script> <script src="../../../../../package-nodes-tree.js" type="text/javascript"></script> <script src="../../../../../clover-tree.js" type="text/javascript"></script> <script src="../../../../../clover.js" type="text/javascript"></script> <script src="../../../../../clover-descriptions.js" type="text/javascript"></script> <script src="../../../../../cloud.js" type="text/javascript"></script> <title>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title> </head> <body> <div id="page"> <header id="header" role="banner"> <nav class="aui-header aui-dropdown2-trigger-group" role="navigation"> <div class="aui-header-inner"> <div class="aui-header-primary"> <h1 id="logo" class="aui-header-logo aui-header-logo-clover"> <a href="http://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</span></a> </h1> </div> <div class="aui-header-secondary"> <ul class="aui-nav"> <li id="system-help-menu"> <a class="aui-nav-link" title="Open online documentation" target="_blank" href="http://openclover.org/documentation"> <span class="aui-icon aui-icon-small aui-iconfont-help">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <a href="http://cardatechnologies.com" target="_top"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </a> </div> <div class="aui-page-header-main" > <h1> <a href="http://cardatechnologies.com" target="_top"> ABA Route Transit Number Validator 1.0.1-SNAPSHOT </a> </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li> <li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li> <li><a href="test-Test_AbaRouteValidator_12.html">Class Test_AbaRouteValidator_12</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_25843_good </h1> <table class="aui"> <thead> <tr> <th>Test</th> <th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th> <th><label title="When the test execution was started">Start time</label></th> <th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th> <th><label title="A failure or error message if the test is not successful.">Message</label></th> </tr> </thead> <tbody> <tr> <td> <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_12.html?line=20296#src-20296" >testAbaNumberCheck_25843_good</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:41:05 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</div> <table class="aui aui-table-sortable"> <thead> <tr> <th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th> <th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_25843_good</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=11104#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a> </td> <td> <span class="sortValue">0.7352941</span>73.5% </td> <td class="align-middle" style="width: 100%" colspan="3"> <div> <div title="73.5% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:73.5%"></div></div></div> </td> </tr> </tbody> </table> </div> <!-- class="aui-page-panel-content-clover" --> <footer id="footer" role="contentinfo"> <section class="footer-body"> <ul> <li> Report generated by <a target="_new" href="http://openclover.org">OpenClover</a> v 4.4.1 on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT. </li> </ul> <ul> <li>OpenClover is free and open-source software. </li> </ul> </section> </footer> </section> <!-- class="aui-page-panel-content" --> </div> <!-- class="aui-page-panel-inner" --> </div> <!-- class="aui-page-panel" --> </div> <!-- id="page" --> </body> </html>
dcarda/aba.route.validator
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_12_testAbaNumberCheck_25843_good_8kg.html
HTML
apache-2.0
9,181
<!DOCTYPE html> <html> <head> <title>Good Thymes Virtual Grocery</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" media="all" href="../../css/gtvg.css"> </head> <body> <div> <img id="logo" src="../../images/gtvglogo.png" alt="GTVG logo" title="GTVG logo"> </div> <p id="welcome">Welcome to our grocery store, Sebastian!</p> <p id="date"> Today is: <span>13 February 2011</span> </p> <p>Please select an option</p> <ol id="menu"> <li><a href="product/list.html">Product List</a></li> <li><a href="order/list.html">Order List</a></li> <li><a href="subscribe.html">Subscribe to our Newsletter</a></li> <li><a href="userprofile.html">See User Profile</a></li> </ol> <p id="apptype">Now you are looking at a <span>template file</span>.</p> <div id="footer">&copy; 2011 The Static Templates</div> </body> </html>
thymeleaf/thymeleaf-tests
src/test/resources/templateparser/decoupled/gtvg/templates/home.html
HTML
apache-2.0
981
{% extends "project/base.html" %} {% set page_title = _("Tests for result files") %} {% block pnav %} {% from 'project/macros.html' import nav with context%} {{ nav('build') }} {% endblock %} {% block pbody %} {% from 'project/macros.html' import subnav_build with context%} {{ subnav_build('rtests') }} <script type="text/javascript" src="//www.google.com/jsapi"></script> <script type="text/javascript"> google.load("visualization", "1", {packages:["corechart"]}); google.setOnLoadCallback(drawChart); function drawChart() { var data = google.visualization.arrayToDataTable([ ['{{ _("Tests") }}', '#'], ['{{ _("Success") }} {{ summary["all_success"]}}', {{ summary["all_success"]}}], ['{{ _("Auto fixed") }} {{ summary["all_fixed"]}}', {{ summary["all_fixed"]}}], ['{{ _("Failed") }} {{ summary["all_failure"]}}', {{ summary["all_failure"]}}], ['{{ _("Error") }} {{ summary["all_error"]}}', {{ summary["all_error"]}}] ]); var options = { colors: ['#468847', '#3a87ad', '#b94a48', '#c09853'], }; var chart = new google.visualization.PieChart(document.getElementById('piechart')); chart.draw(data, options); } </script> <h3>{{ _('Summary') }}</h3> <p> <strong>{{ _('Fonts:') }}</strong> {{ summary['fonts']|join(', ') }} <br> </p> <h5>{{ _('Stats')}}</h5> <div id="piechart" style="width: 500px; height: 150px;"></div> <h5>{{ _('Blockers') }}</h5> <ul> {% for item in summary['fix_asap'] %} <li class="text-danger"> {{ item['font'] }} - {{item['methodName']}}: {{item['methodDoc']}}<br> {{ item['err_msg']}} </li> {% endfor %} </ul> <h3>{{ _('Test results') }}</h3> {% from 'project/macros.html' import showTests with context %} {{ showTests() }} {% endblock %}
vitalyvolkov/fontbakery
bakery/templates/project/rtests.html
HTML
apache-2.0
1,756
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_51) on Thu Apr 28 18:37:25 UTC 2016 --> <title>CassandraMetricsRegistry.MetricMBean (apache-cassandra API)</title> <meta name="date" content="2016-04-28"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="CassandraMetricsRegistry.MetricMBean (apache-cassandra API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/CassandraMetricsRegistry.MetricMBean.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/apache/cassandra/metrics/CassandraMetricsRegistry.JmxTimerMBean.html" title="interface in org.apache.cassandra.metrics"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/apache/cassandra/metrics/CassandraMetricsRegistry.MetricName.html" title="class in org.apache.cassandra.metrics"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/metrics/CassandraMetricsRegistry.MetricMBean.html" target="_top">Frames</a></li> <li><a href="CassandraMetricsRegistry.MetricMBean.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.cassandra.metrics</div> <h2 title="Interface CassandraMetricsRegistry.MetricMBean" class="title">Interface CassandraMetricsRegistry.MetricMBean</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Known Subinterfaces:</dt> <dd><a href="../../../../org/apache/cassandra/metrics/CassandraMetricsRegistry.JmxCounterMBean.html" title="interface in org.apache.cassandra.metrics">CassandraMetricsRegistry.JmxCounterMBean</a>, <a href="../../../../org/apache/cassandra/metrics/CassandraMetricsRegistry.JmxGaugeMBean.html" title="interface in org.apache.cassandra.metrics">CassandraMetricsRegistry.JmxGaugeMBean</a>, <a href="../../../../org/apache/cassandra/metrics/CassandraMetricsRegistry.JmxHistogramMBean.html" title="interface in org.apache.cassandra.metrics">CassandraMetricsRegistry.JmxHistogramMBean</a>, <a href="../../../../org/apache/cassandra/metrics/CassandraMetricsRegistry.JmxMeterMBean.html" title="interface in org.apache.cassandra.metrics">CassandraMetricsRegistry.JmxMeterMBean</a>, <a href="../../../../org/apache/cassandra/metrics/CassandraMetricsRegistry.JmxTimerMBean.html" title="interface in org.apache.cassandra.metrics">CassandraMetricsRegistry.JmxTimerMBean</a></dd> </dl> <dl> <dt>Enclosing class:</dt> <dd><a href="../../../../org/apache/cassandra/metrics/CassandraMetricsRegistry.html" title="class in org.apache.cassandra.metrics">CassandraMetricsRegistry</a></dd> </dl> <hr> <br> <pre>public static interface <span class="strong">CassandraMetricsRegistry.MetricMBean</span></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>javax.management.ObjectName</code></td> <td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/metrics/CassandraMetricsRegistry.MetricMBean.html#objectName()">objectName</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="objectName()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>objectName</h4> <pre>javax.management.ObjectName&nbsp;objectName()</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/CassandraMetricsRegistry.MetricMBean.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/apache/cassandra/metrics/CassandraMetricsRegistry.JmxTimerMBean.html" title="interface in org.apache.cassandra.metrics"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/apache/cassandra/metrics/CassandraMetricsRegistry.MetricName.html" title="class in org.apache.cassandra.metrics"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/metrics/CassandraMetricsRegistry.MetricMBean.html" target="_top">Frames</a></li> <li><a href="CassandraMetricsRegistry.MetricMBean.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2016 The Apache Software Foundation</small></p> </body> </html>
elisska/cloudera-cassandra
DATASTAX_CASSANDRA-2.2.6/javadoc/org/apache/cassandra/metrics/CassandraMetricsRegistry.MetricMBean.html
HTML
apache-2.0
8,429
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <html> <head> <title>PHPXRef 0.7.1 : Unnamed Project : Variable Reference: $lower</title> <link rel="stylesheet" href="../sample.css" type="text/css"> <link rel="stylesheet" href="../sample-print.css" type="text/css" media="print"> <style id="hilight" type="text/css"></style> <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> </head> <body bgcolor="#ffffff" text="#000000" link="#801800" vlink="#300540" alink="#ffffff"> <table class="pagetitle" width="100%"> <tr> <td valign="top" class="pagetitle"> [ <a href="../index.html">Index</a> ] </td> <td align="right" class="pagetitle"> <h2 style="margin-bottom: 0px">PHP Cross Reference of Unnamed Project</h2> </td> </tr> </table> <!-- Generated by PHPXref 0.7.1 at Thu Oct 23 18:57:41 2014 --> <!-- PHPXref (c) 2000-2010 Gareth Watts - gareth@omnipotent.net --> <!-- http://phpxref.sourceforge.net/ --> <script src="../phpxref.js" type="text/javascript"></script> <script language="JavaScript" type="text/javascript"> <!-- ext='.html'; relbase='../'; subdir='_variables'; filename='index.html'; cookiekey='phpxref'; handleNavFrame(relbase, subdir, filename); logVariable('lower'); // --> </script> <script language="JavaScript" type="text/javascript"> if (gwGetCookie('xrefnav')=='off') document.write('<p class="navlinks">[ <a href="javascript:navOn()">Show Explorer<\/a> ]<\/p>'); else document.write('<p class="navlinks">[ <a href="javascript:navOff()">Hide Explorer<\/a> ]<\/p>'); </script> <noscript> <p class="navlinks"> [ <a href="../nav.html" target="_top">Show Explorer</a> ] [ <a href="index.html" target="_top">Hide Navbar</a> ] </p> </noscript> [<a href="../index.html">Top level directory</a>]<br> <script language="JavaScript" type="text/javascript"> <!-- document.writeln('<table align="right" class="searchbox-link"><tr><td><a class="searchbox-link" href="javascript:void(0)" onMouseOver="showSearchBox()">Search</a><br>'); document.writeln('<table border="0" cellspacing="0" cellpadding="0" class="searchbox" id="searchbox">'); document.writeln('<tr><td class="searchbox-title">'); document.writeln('<a class="searchbox-title" href="javascript:showSearchPopup()">Search History +</a>'); document.writeln('<\/td><\/tr>'); document.writeln('<tr><td class="searchbox-body" id="searchbox-body">'); document.writeln('<form name="search" style="margin:0px; padding:0px" onSubmit=\'return jump()\'>'); document.writeln('<a class="searchbox-body" href="../_classes/index.html">Class<\/a>: '); document.writeln('<input type="text" size=10 value="" name="classname"><br>'); document.writeln('<a id="funcsearchlink" class="searchbox-body" href="../_functions/index.html">Function<\/a>: '); document.writeln('<input type="text" size=10 value="" name="funcname"><br>'); document.writeln('<a class="searchbox-body" href="../_variables/index.html">Variable<\/a>: '); document.writeln('<input type="text" size=10 value="" name="varname"><br>'); document.writeln('<a class="searchbox-body" href="../_constants/index.html">Constant<\/a>: '); document.writeln('<input type="text" size=10 value="" name="constname"><br>'); document.writeln('<a class="searchbox-body" href="../_tables/index.html">Table<\/a>: '); document.writeln('<input type="text" size=10 value="" name="tablename"><br>'); document.writeln('<input type="submit" class="searchbox-button" value="Search">'); document.writeln('<\/form>'); document.writeln('<\/td><\/tr><\/table>'); document.writeln('<\/td><\/tr><\/table>'); // --> </script> <div id="search-popup" class="searchpopup"><p id="searchpopup-title" class="searchpopup-title">title</p><div id="searchpopup-body" class="searchpopup-body">Body</div><p class="searchpopup-close"><a href="javascript:gwCloseActive()">[close]</a></p></div> <h3>Variable Cross Reference</h3> <h2><a href="index.html#lower">$lower</a></h2> <b>Defined at:</b><ul> <li><a href="../tests/simpletest/tag.php.html">/tests/simpletest/tag.php</A> -> <a href="../tests/simpletest/tag.php.source.html#l103"> line 103</A></li> </ul> <br><b>Referenced 8 times:</b><ul> <li><a href="../tests/simpletest/tag.php.html">/tests/simpletest/tag.php</a> -> <a href="../tests/simpletest/tag.php.source.html#l103"> line 103</a></li> <li><a href="../tests/simpletest/tag.php.html">/tests/simpletest/tag.php</a> -> <a href="../tests/simpletest/tag.php.source.html#l105"> line 105</a></li> <li><a href="../tests/simpletest/tag.php.html">/tests/simpletest/tag.php</a> -> <a href="../tests/simpletest/tag.php.source.html#l107"> line 107</a></li> <li><a href="../tests/simpletest/expectation.php.html">/tests/simpletest/expectation.php</a> -> <a href="../tests/simpletest/expectation.php.source.html#l329"> line 329</a></li> <li><a href="../tests/simpletest/expectation.php.html">/tests/simpletest/expectation.php</a> -> <a href="../tests/simpletest/expectation.php.source.html#l342"> line 342</a></li> <li><a href="../tests/simpletest/expectation.php.html">/tests/simpletest/expectation.php</a> -> <a href="../tests/simpletest/expectation.php.source.html#l353"> line 353</a></li> <li><a href="../tests/simpletest/expectation.php.html">/tests/simpletest/expectation.php</a> -> <a href="../tests/simpletest/expectation.php.source.html#l377"> line 377</a></li> <li><a href="../tests/simpletest/expectation.php.html">/tests/simpletest/expectation.php</a> -> <a href="../tests/simpletest/expectation.php.source.html#l392"> line 392</a></li> </ul> <!-- A link to the phpxref site in your customized footer file is appreciated ;-) --> <br><hr> <table width="100%"> <tr><td>Generated: Thu Oct 23 18:57:41 2014</td> <td align="right"><i>Cross-referenced by <a href="http://phpxref.sourceforge.net/">PHPXref 0.7.1</a></i></td> </tr> </table> </body></html>
inputx/code-ref-doc
bonfire/_variables/lower.html
HTML
apache-2.0
5,892
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_172) on Mon Aug 09 07:48:07 PDT 2021 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class com.smartsheet.api.models.enums.AccessScope (Smartsheet Java SDK 2.126.1 API)</title> <meta name="date" content="2021-08-09"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.smartsheet.api.models.enums.AccessScope (Smartsheet Java SDK 2.126.1 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../com/smartsheet/api/models/enums/AccessScope.html" title="enum in com.smartsheet.api.models.enums">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/smartsheet/api/models/enums/class-use/AccessScope.html" target="_top">Frames</a></li> <li><a href="AccessScope.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.smartsheet.api.models.enums.AccessScope" class="title">Uses of Class<br>com.smartsheet.api.models.enums.AccessScope</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../com/smartsheet/api/models/enums/AccessScope.html" title="enum in com.smartsheet.api.models.enums">AccessScope</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.smartsheet.api.models.enums">com.smartsheet.api.models.enums</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="com.smartsheet.api.models.enums"> <!-- --> </a> <h3>Uses of <a href="../../../../../../com/smartsheet/api/models/enums/AccessScope.html" title="enum in com.smartsheet.api.models.enums">AccessScope</a> in <a href="../../../../../../com/smartsheet/api/models/enums/package-summary.html">com.smartsheet.api.models.enums</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../com/smartsheet/api/models/enums/package-summary.html">com.smartsheet.api.models.enums</a> that return <a href="../../../../../../com/smartsheet/api/models/enums/AccessScope.html" title="enum in com.smartsheet.api.models.enums">AccessScope</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../com/smartsheet/api/models/enums/AccessScope.html" title="enum in com.smartsheet.api.models.enums">AccessScope</a></code></td> <td class="colLast"><span class="typeNameLabel">AccessScope.</span><code><span class="memberNameLink"><a href="../../../../../../com/smartsheet/api/models/enums/AccessScope.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../com/smartsheet/api/models/enums/AccessScope.html" title="enum in com.smartsheet.api.models.enums">AccessScope</a>[]</code></td> <td class="colLast"><span class="typeNameLabel">AccessScope.</span><code><span class="memberNameLink"><a href="../../../../../../com/smartsheet/api/models/enums/AccessScope.html#values--">values</a></span>()</code> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../com/smartsheet/api/models/enums/AccessScope.html" title="enum in com.smartsheet.api.models.enums">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/smartsheet/api/models/enums/class-use/AccessScope.html" target="_top">Frames</a></li> <li><a href="AccessScope.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2014&#x2013;2021 <a href="http://smartsheet.com">Smartsheet</a>. All rights reserved.</small></p> </body> </html>
smartsheet-platform/smartsheet-java-sdk
docs/com/smartsheet/api/models/enums/class-use/AccessScope.html
HTML
apache-2.0
7,712
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_03) on Mon Nov 19 21:41:23 CET 2007 --> <TITLE> Uses of Interface org.springframework.transaction.support.ResourceTransactionManager (Spring Framework API 2.5) </TITLE> <META NAME="date" CONTENT="2007-11-19"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.springframework.transaction.support.ResourceTransactionManager (Spring Framework API 2.5)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <a href="http://www.springframework.org/" target="_top">The Spring Framework</a></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/springframework/transaction/support/\class-useResourceTransactionManager.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ResourceTransactionManager.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Interface<br>org.springframework.transaction.support.ResourceTransactionManager</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.springframework.jca.cci.connection"><B>org.springframework.jca.cci.connection</B></A></TD> <TD>Provides a utility class for easy ConnectionFactory access, a PlatformTransactionManager for local CCI transactions, and various simple ConnectionFactory proxies/adapters.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.springframework.jdbc.datasource"><B>org.springframework.jdbc.datasource</B></A></TD> <TD>Provides a utility class for easy DataSource access, a PlatformTransactionManager for a single DataSource, and various simple DataSource implementations.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.springframework.jms.connection"><B>org.springframework.jms.connection</B></A></TD> <TD>Provides a PlatformTransactionManager implementation for a single JMS ConnectionFactory, and a SingleConnectionFactory adapter.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.springframework.orm.hibernate3"><B>org.springframework.orm.hibernate3</B></A></TD> <TD>Package providing integration of <a href="http://www.hibernate.org">Hibernate3</a> with Spring concepts.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.springframework.orm.jdo"><B>org.springframework.orm.jdo</B></A></TD> <TD>Package providing integration of JDO (Java Date Objects) with Spring concepts.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.springframework.orm.jpa"><B>org.springframework.orm.jpa</B></A></TD> <TD>Package providing integration of JPA (Java Persistence API) with Spring concepts.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.springframework.orm.toplink"><B>org.springframework.orm.toplink</B></A></TD> <TD>Package providing integration of <a href="http://www.oracle.com/technology/products/ias/toplink">Oracle TopLink</a> with Spring concepts.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.springframework.jca.cci.connection"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A> in <A HREF="../../../../../org/springframework/jca/cci/connection/package-summary.html">org.springframework.jca.cci.connection</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/springframework/jca/cci/connection/package-summary.html">org.springframework.jca.cci.connection</A> that implement <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/springframework/jca/cci/connection/CciLocalTransactionManager.html" title="class in org.springframework.jca.cci.connection">CciLocalTransactionManager</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="../../../../../org/springframework/transaction/PlatformTransactionManager.html" title="interface in org.springframework.transaction"><CODE>PlatformTransactionManager</CODE></A> implementation that manages local transactions for a single CCI ConnectionFactory.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.springframework.jdbc.datasource"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A> in <A HREF="../../../../../org/springframework/jdbc/datasource/package-summary.html">org.springframework.jdbc.datasource</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/springframework/jdbc/datasource/package-summary.html">org.springframework.jdbc.datasource</A> that implement <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/springframework/jdbc/datasource/DataSourceTransactionManager.html" title="class in org.springframework.jdbc.datasource">DataSourceTransactionManager</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="../../../../../org/springframework/transaction/PlatformTransactionManager.html" title="interface in org.springframework.transaction"><CODE>PlatformTransactionManager</CODE></A> implementation for a single JDBC <A HREF="http://java.sun.com/javase/6/docs/api/javax/sql/DataSource.html?is-external=true" title="class or interface in javax.sql"><CODE>DataSource</CODE></A>.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.springframework.jms.connection"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A> in <A HREF="../../../../../org/springframework/jms/connection/package-summary.html">org.springframework.jms.connection</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/springframework/jms/connection/package-summary.html">org.springframework.jms.connection</A> that implement <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/springframework/jms/connection/JmsTransactionManager.html" title="class in org.springframework.jms.connection">JmsTransactionManager</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="../../../../../org/springframework/transaction/PlatformTransactionManager.html" title="interface in org.springframework.transaction"><CODE>PlatformTransactionManager</CODE></A> implementation for a single JMS <A HREF="http://java.sun.com/j2ee/1.4/docs/api/javax/jms/ConnectionFactory.html?is-external=true" title="class or interface in javax.jms"><CODE>ConnectionFactory</CODE></A>.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/springframework/jms/connection/JmsTransactionManager102.html" title="class in org.springframework.jms.connection">JmsTransactionManager102</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A subclass of <A HREF="../../../../../org/springframework/jms/connection/JmsTransactionManager.html" title="class in org.springframework.jms.connection"><CODE>JmsTransactionManager</CODE></A> for the JMS 1.0.2 specification, not relying on JMS 1.1 methods like JmsTransactionManager itself.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.springframework.orm.hibernate3"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A> in <A HREF="../../../../../org/springframework/orm/hibernate3/package-summary.html">org.springframework.orm.hibernate3</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/springframework/orm/hibernate3/package-summary.html">org.springframework.orm.hibernate3</A> that implement <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/springframework/orm/hibernate3/HibernateTransactionManager.html" title="class in org.springframework.orm.hibernate3">HibernateTransactionManager</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="../../../../../org/springframework/transaction/PlatformTransactionManager.html" title="interface in org.springframework.transaction"><CODE>PlatformTransactionManager</CODE></A> implementation for a single Hibernate <A HREF="http://www.hibernate.org/hib_docs/v3/api/org/hibernate/SessionFactory.html?is-external=true" title="class or interface in org.hibernate"><CODE>SessionFactory</CODE></A>.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.springframework.orm.jdo"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A> in <A HREF="../../../../../org/springframework/orm/jdo/package-summary.html">org.springframework.orm.jdo</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/springframework/orm/jdo/package-summary.html">org.springframework.orm.jdo</A> that implement <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/springframework/orm/jdo/JdoTransactionManager.html" title="class in org.springframework.orm.jdo">JdoTransactionManager</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="../../../../../org/springframework/transaction/PlatformTransactionManager.html" title="interface in org.springframework.transaction"><CODE>PlatformTransactionManager</CODE></A> implementation for a single JDO <CODE>PersistenceManagerFactory</CODE>.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.springframework.orm.jpa"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A> in <A HREF="../../../../../org/springframework/orm/jpa/package-summary.html">org.springframework.orm.jpa</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/springframework/orm/jpa/package-summary.html">org.springframework.orm.jpa</A> that implement <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/springframework/orm/jpa/JpaTransactionManager.html" title="class in org.springframework.orm.jpa">JpaTransactionManager</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="../../../../../org/springframework/transaction/PlatformTransactionManager.html" title="interface in org.springframework.transaction"><CODE>PlatformTransactionManager</CODE></A> implementation for a single JPA <CODE>EntityManagerFactory</CODE>.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.springframework.orm.toplink"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A> in <A HREF="../../../../../org/springframework/orm/toplink/package-summary.html">org.springframework.orm.toplink</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../../org/springframework/orm/toplink/package-summary.html">org.springframework.orm.toplink</A> that implement <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support">ResourceTransactionManager</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/springframework/orm/toplink/TopLinkTransactionManager.html" title="class in org.springframework.orm.toplink">TopLinkTransactionManager</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="../../../../../org/springframework/transaction/PlatformTransactionManager.html" title="interface in org.springframework.transaction"><CODE>PlatformTransactionManager</CODE></A> implementation for a single TopLink <A HREF="../../../../../org/springframework/orm/toplink/SessionFactory.html" title="interface in org.springframework.orm.toplink"><CODE>SessionFactory</CODE></A>.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/springframework/transaction/support/ResourceTransactionManager.html" title="interface in org.springframework.transaction.support"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <a href="http://www.springframework.org/" target="_top">The Spring Framework</a></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/springframework/transaction/support/\class-useResourceTransactionManager.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ResourceTransactionManager.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright &copy; 2002-2007 <a href=http://www.springframework.org/ target=_top>The Spring Framework</a>.</i> </BODY> </HTML>
mattxia/spring-2.5-analysis
docs/api/org/springframework/transaction/support/class-use/ResourceTransactionManager.html
HTML
apache-2.0
22,507
<div class="header"> <div class="container spacedsides"> <span class="title">{{vm.config.applicationName}} - {{vm.config.version}}</span> </div> </div>
mvdcorput/VS2015-Project-templates
DNXMVC6TypeScriptAngular2Example/wwwroot/components/header/header.html
HTML
apache-2.0
174
<!DOCTYPE html> <html> <head> <!-- [[! Document Settings ]] --> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!-- [[! Page Meta ]] --> <title>Installing Kie Work Bench and Kie Server</title> <meta name="description" content="Ally Jarrett&#39;s Blog - Notes from the battleground; a collection of coding, process and technology articles for future reference..." /> <meta name="HandheldFriendly" content="True" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="shortcut icon" href="/assets/images/favicon.ico" > <!-- [[! Styles'n'Scripts ]] --> <link rel="stylesheet" type="text/css" href="/assets/css/screen.css" /> <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" /> <link rel="stylesheet" type="text/css" href="/assets/css/syntax.css" /> <!-- [[! highlight.js ]] --> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.3.0/styles/default.min.css"> <style>.hljs { background: none; }</style> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.3.0/highlight.min.js"></script> <script>hljs.initHighlightingOnLoad();</script> <!-- [[! Ghost outputs important style and meta data with this tag ]] --> <link rel="canonical" href="/" /> <meta name="referrer" content="origin" /> <link rel="next" href="/page2/" /> <meta property="og:site_name" content="Ally Jarrett&#39;s Blog" /> <meta property="og:type" content="website" /> <meta property="og:title" content="Ally Jarrett&#39;s Blog" /> <meta property="og:description" content="Notes from the battleground; a collection of coding, process and technology articles for future reference..." /> <meta property="og:url" content="/" /> <meta property="og:image" content="/assets/images/cover1.jpg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Ally Jarrett&#39;s Blog" /> <meta name="twitter:description" content="Notes from the battleground; a collection of coding, process and technology articles for future reference..." /> <meta name="twitter:url" content="/" /> <meta name="twitter:image:src" content="/assets/images/cover1.jpg" /> <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Website", "publisher": "Finding The Way Home", "url": "/", "image": "/assets/images/cover1.jpg", "description": "Notes from the battleground; a collection of coding, process and technology articles for future reference..." } </script> <meta name="generator" content="Jekyll 3.0.0" /> <link rel="alternate" type="application/rss+xml" title="Ally Jarrett&#39;s Blog" href="/feed.xml" /> </head> <body class="home-template nav-closed"> <div class="nav"> <h3 class="nav-title">Menu</h3> <a href="#" class="nav-close"> <span class="hidden">Close</span> </a> <ul> <li class="nav-home " role="presentation"><a href="/">Home</a></li> <li class="nav-about " role="presentation"><a href="/about">About</a></li> <li class="nav-blog " role="presentation"><a href="/tag/blog">Blog</a></li> <li class="nav-snippets " role="presentation"><a href="/tag/snippets">Code Snippets</a></li> <li class="nav-author " role="presentation"><a href="/author/ally">Author</a></li> <li class="nav-author " role="presentation"><a href="/author/contact">Contact</a></li> </ul> <a class="subscribe-button icon-feed" href="/feed.xml">Subscribe</a> </div> <span class="nav-cover"></span> <div class="site-wrapper"> <!-- [[! Everything else gets inserted here ]] --> <!-- < default --> <!-- The comment above "< default" means - insert everything in this file into --> <!-- the [body] of the default.hbs template, which contains our header/footer. --> <!-- Everything inside the #post tags pulls data from the post --> <!-- #post --> <header class="main-header post-head " style="background-image: url(/assets/images/cover4.jpg) "> <nav class="main-nav overlay clearfix"> <a class="blog-logo" href="/"><img src="/assets/images/ghost.png" alt="Blog Logo" /></a> <a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a> </nav> </header> <main class="content" role="main"> <article class="post tag-content"> <header class="post-header"> <h1 class="post-title">Installing Kie Work Bench and Kie Server</h1> <section class="post-meta"> <!-- <a href='/'>Ally Jarrett</a> --> <time class="post-date" datetime="2017-01-08">08 Jan 2017</time> <!-- [[tags prefix=" on "]] --> on <a href='/tag/blog'>Blog</a>, <a href='/tag/kie-wb'>Kie-wb</a>, <a href='/tag/kie-server'>Kie-server</a>, <a href='/tag/get-started'>Get-started</a>, <a href='/tag/installation'>Installation</a>, <a href='/tag/beginner'>Beginner</a>, <a href='/tag/JBoss-BPMS'>Jboss-bpms</a>, <a href='/tag/jBPM'>Jbpm</a> </section> </header> <section class="post-content"> <hr /> <h3>Intro. </h3> <p> This is my first blog post so rather than deepdiving off into some advanced subject I felt it worthwhile starting from the beginining on how to get started with the Kie-Workbench and Kie-Server platforms. Almost all of these steps are like for like with the JBoss BPM Suite platform so the idea being that these posts are relevant to both community and enterprise products. This initial post will be part of a 2 part series where I will demonstrating installing the platform, creating a basic git based jBPM project and deploying the project to the KIE Server. Finally we'll create a quick SOAP-UI project to demonstrate how to invoke the BPM Process running on the KIE Server both using XML and JSON! </p> <hr /> <h3>Overview of Steps </h3> <ul> <li> <a href="#download-wildfly">Download WildFly and KIE Resources </a></li> <li> <a href="#install-wildfly">Install &amp; Configure WildFly </a></li> <li> <a href="#install-kie">Install &amp; Configure KIE-WB and KIE-Server </a></li> <li> <a href="#create-project">Create new BPM Project </a></li> </ul> <hr /> <h3 id="download-wildfly">Download WildFly, Kie-WB &amp; Kie-Server</h3> <p> We're going to be using the latest and greatest stable builds which are feature complete, click the links below to download the specified versions: <ul> <li> <a href="http://download.jboss.org/wildfly/10.1.0.Final/wildfly-10.1.0.Final.zip">JBoss WildFly (EAP) 10.1.0-Final</a></li> <li> <a href="https://repo1.maven.org/maven2/org/kie/kie-wb-distribution-wars/6.5.0.Final/kie-wb-distribution-wars-6.5.0.Final-wildfly10.war">JBoss KIE WorkBench (BPM Suite) 6.5.0-Final</li> <li> <a href="http://repo1.maven.org/maven2/org/kie/server/kie-server/6.5.0.Final/kie-server-6.5.0.Final-ee7.war">JBoss KIE Server (BPM Suite) 6.5.0-Final</a></li> </ul> </p> <hr /> <h3 id="install-wildfly">Install &amp; Configure WildFly</h3> <p> For clarity sake, this blog was performed on a OSX (Unix/Linux like), for Windows users the steps should be pretty fairly self explanatory. </p> <p> <kbd>Step 1. </kbd> &nbsp; Unzip WildFly into a directory of your choosing. <pre> $ unzip wildfly-10.1.0.Final.zip -d /Users/ajarrett/Documents/Runtimes/WildFly/ </pre> </p> <p> <kbd>Step 2. </kbd> &nbsp; Create ApplicationRealm and ManagementRealm users : <br/> Navigate to the WILDFLY_HOME/bin directory and add the following users: <ul> <li> WildFly Admin User <ul> <li> <pre>$ ./bin/add-user.sh add-user.sh -u admin -p "password" --role admin </pre> </li> </ul> </li> <li> KIE Workbench Admin User <ul> <li> <pre>$ ./bin/add-user.sh add-user.sh -u kieAdmin -p "password" -a --role admin </pre> </li> </ul> </li> <li> KIE Server Controller User <ul> <li> <pre>$ ./bin/add-user.sh add-user.sh -u kieserver -p "password" -a --role kie-server</pre> </li> </ul> </li> </ul> We'll be using the standalone-full.xml configuration file for our runtime as the standard standalone.xml is missing a number of components needed by the Workbench to startup. However just to check our Wildfly admin user is working as expected do the following: </p><p> <kbd>Step 3. </kbd> &nbsp; Start JBoss WildFly using the standalone sh (or bat) scripts in the BIN dir : <br/> <pre> $ ./WILDFLY_HOME/bin/standalone.sh </pre> Depending on the spec of the machine this should load up pretty quick. By default WildFly will bind to ports 8080 and 9990 for management. <br/>If these ports are already taken then you can either specify a port offset: <code> -Djboss.socket.binding.port-offset=100 </code> <br/> Or you can manually edit the standalone.xml/standalone-full.xml with the various port and host bindings. </p><p> <kbd>Step 4. </kbd> &nbsp; Log into the WildFly management console : <br/> - Open a browser and Navigate to: http://localhost:9990 - Login using the credentials : admin/password You should see the following: </p> <p><img src="assets/images/wildfly/wildfly-console.png" alt="Wildfly Console" /></p> <hr /> <h3 id="install-kie">Install &amp; Configure KIE-WB and KIE-Server</h3> <p>So far so good! Now we need to add a couple of System properties to our WildFly config and drop wour WAR files into the deploy directory and we should be good to go!!</p> <p><kbd>Step 1. </kbd> &nbsp; Update the standalone-full.xml with our System Properties. <br/> <ul> <li>There are a number of ways of defining system properties, such as startup params etc.. But to make it easy we wre simply going to statically provide these in our config.</li> <li>Open the standalone-full.xml in your favourite editor e.g.</li> </ul> </p> <pre> $ vim /WILDFLY_HOME/standalone/configuration/standalone-full.xml </pre> <p><ul><li>Input the following config properties: </ul></li> <pre> <figure class="highlight"><pre><code class="language-xml" data-lang="xml"><span class="nt">&lt;system-properties&gt;</span> <span class="nt">&lt;property</span> <span class="na">name=</span><span class="s">"org.kie.example"</span> <span class="na">value=</span><span class="s">"false"</span><span class="nt">/&gt;</span> <span class="nt">&lt;property</span> <span class="na">name=</span><span class="s">"org.jbpm.designer.perspective"</span> <span class="na">value=</span><span class="s">"full"</span><span class="nt">/&gt;</span> <span class="nt">&lt;property</span> <span class="na">name=</span><span class="s">"designerdataobjects"</span> <span class="na">value=</span><span class="s">"false"</span><span class="nt">/&gt;</span> <span class="nt">&lt;property</span> <span class="na">name=</span><span class="s">"org.kie.server.repo"</span> <span class="na">value=</span><span class="s">"${jboss.server.data.dir}"</span><span class="nt">/&gt;</span> <span class="nt">&lt;property</span> <span class="na">name=</span><span class="s">"org.jboss.logging.provider"</span> <span class="na">value=</span><span class="s">"slf4j"</span><span class="nt">/&gt;</span> <span class="nt">&lt;property</span> <span class="na">name=</span><span class="s">"org.kie.server.id"</span> <span class="na">value=</span><span class="s">"kie-dev-server"</span><span class="nt">/&gt;</span> <span class="nt">&lt;property</span> <span class="na">name=</span><span class="s">"org.kie.server.user"</span> <span class="na">value=</span><span class="s">"kieserver"</span><span class="nt">/&gt;</span> <span class="nt">&lt;property</span> <span class="na">name=</span><span class="s">"org.kie.server.pwd"</span> <span class="na">value=</span><span class="s">"password"</span><span class="nt">/&gt;</span> <span class="c">&lt;!-- ##### Change DB Persistence e.g. MySQL ##### &lt;property name="org.kie.server.persistence.ds" value="java:jboss/datasources/MySQLDS"/&gt; &lt;property name="org.kie.server.persistence.dialect" value="org.hibernate.dialect.MySQLDialect"/&gt;--&gt;</span> <span class="nt">&lt;property</span> <span class="na">name=</span><span class="s">"org.kie.server.controller"</span> <span class="na">value=</span><span class="s">"http://localhost:8080/kie-wb/rest/controller"</span><span class="nt">/&gt;</span> <span class="nt">&lt;property</span> <span class="na">name=</span><span class="s">"org.kie.server.controller.user"</span> <span class="na">value=</span><span class="s">"kieserver"</span><span class="nt">/&gt;</span> <span class="nt">&lt;property</span> <span class="na">name=</span><span class="s">"org.kie.server.controller.pwd"</span> <span class="na">value=</span><span class="s">"kieserver1!"</span><span class="nt">/&gt;</span> <span class="nt">&lt;property</span> <span class="na">name=</span><span class="s">"org.kie.server.location"</span> <span class="na">value=</span><span class="s">"http://localhost:8080/kie-server/services/rest/server"</span><span class="nt">/&gt;</span> <span class="nt">&lt;/system-properties&gt;</span></code></pre></figure></pre> <br/> Checkout the <a href="https://docs.jboss.org/drools/release/6.5.0.Final/drools-docs/html/ch22.html#d0e24374">jBPM Documentation</a> for a run down of these bootstrap properties and more..! </p> <p><kbd>Step 2. </kbd> &nbsp; Rename the KIE WAR files <br/> There is no defined context-root for the KIE WAR files so by default WildFly will bind the the name of the WAR file as its context root. Rename the files <ul> <li>rename <b>kie-wb-distribution-wars-6.5.0.Final-wildfly10.war</b> to <b>kie-wb.war</b></li> <li>rename <b>kie-server-6.5.0.Final-ee7.war</b> to <b>kie-server.war</b></li> </ul> </p> <p><kbd>Step 3. </kbd> &nbsp; Start up WildFly using Full Standalone Profile <br/> <pre>$ ./bin/standalone.sh -c standalone-full.xml</pre> WildFly should start without errors and the KIE WB connector should successfully connect to our KIE Server deployment. Look out for the following logs: </p> <pre> 17:17:22,705 INFO [org.kie.server.controller.impl.KieServerControllerImpl] (default task-1) Server http://localhost:8080/kie-server/services/rest/server connected to controller 17:17:22,706 INFO [org.kie.server.controller.rest.RestKieServerControllerImpl] (default task-1) Server with id 'kie-dev-server' connected 17:17:22,758 INFO [org.kie.server.services.impl.controller.ControllerConnectRunnable] (KieServer-ControllerConnect) Connected to controller, quiting connector thread 17:17:22,759 INFO [org.kie.server.services.impl.ContainerManager] (EJB default - 3) About to install containers '[]' on kie server 'KieServer{id='kie-dev-server'name='kie-dev-server'version='6.5.0.Final'location='http://localhost:8080/kie-server/services/rest/server'}' </pre> <p><kbd>Step 4. </kbd> &nbsp; Log into the KIE Workbench <br/> <ul> <li>Navigate to http://localhost:8080/kie-wb.</li> <li>Login using the credentials created above (kieAdmin:password)</li> </ul> <img src="assets/images/kie-wb/kie-wb-login.png" alt="Wildfly Console" /> </p> <hr/> <h3 id="create-project"> Create a New BPM Project </h3> <p><kbd>Step 1. </kbd> &nbsp; Goto the Manage Organizational Units <br/> <ul> <li>On the top Menu select to Authoring > Administration (note admin role is required)</li> <li>In the sub-menu select Organizational Units > Manage Organizational Units</li> <li>On the Organizational Unit Manager page click 'Add'</li> </ul> <img src="assets/images/kie-wb/kie-org-manager.png" style="max-height:500px;max-width:800px;" alt="Wildfly Console" /> </p> <p><kbd>Step 2. </kbd> &nbsp; Create a new Organisation <br/> <ul> <li>Provide some basic details for your new Organization.</li> </ul> <img src="assets/images/kie-wb/kie-new-org.png" style="max-height:350px;max-width:600px;" /> </p> <p><kbd>Step 3. </kbd> &nbsp; Create a new GIT Repository <br/> <ul> <li>Select Repositories > New Repository</li> <li>Provide a repo name</li> <li>Select your Organizational Unit from the dropdown</li> </ul> <img src="assets/images/kie-wb/kie-new-repo.png" style="max-height:350px;max-width:600px;" /> </p> <p><kbd>Step 4. </kbd> &nbsp; Review the Repo Commit Page <br/> <ul> <li>If its not already automatically selected, in the left 'File Explorer' pane select your new Repostory under the Repositories folder</li> <li>In the right hand pane you should see some general repo info and a commit log for your project. Since its a new project there will be a single initial commit of a readme.md file </li> </ul> <img src="assets/images/kie-wb/kie-repo-commits.png" style="max-height:350px;max-width:600px;" /> </p> <p><kbd>Step 5. </kbd> &nbsp; Create a new Project <br/> <ul> <li>On the top Menu select to Authoring > Project Authoring</li> <li>On the Sub-Menu select New Item > Project</li> <li> Provide some Project details <ul> <li>Project Name &amp; Description</li> <li>Group ID - Maven Group ID of the Project</li> <li>Artifact ID - Maven Artifact ID of the Project</li> <li>Version - Maven Version of the Project</li> </ul> </li> </ul> <img src="assets/images/kie-wb/kie-new-project.png" style="max-height:350px;max-width:600px;" /> </p> <p><kbd>Step 6. </kbd> &nbsp; Project Navigation <br/> <ul> <li>Once the new project is created you'll see a project structure similar to the image below. By default the project create new artefacts at the top level folder. To follow traditional Java/Maven projects we'll want to place new files into our folder structure as defined by our Maven Group and Artifact ID's. Under the projects <cite>ORGANISATION > GIT_REPO > PROJECT_NAME </cite> there is a dropdown icon. Click this icon and drill down into the corresponding folder structure similar to the image below. You're now ready for Part 2 of the this Blog of build a demo project and deploying to the KIE Server. </li> </ul> <img src="assets/images/kie-wb/kie-created-project.png" style="max-height:500px;max-width:800px;" /> </p> <hr /> </section> <footer class="post-footer"> <!-- Everything inside the #author tags pulls data from the author --> <!-- #author--> <figure class="author-image"> <a class="img" href="/author/ally" style="background-image: url(/assets/images/ajarrett.jpg)"><span class="hidden">'s Picture</span></a> </figure> <section class="author"> <h4><a href="/author/ally">Ally Jarrett</a></h4> <p> Red Hat Java MW Architect, BPM and Automation Specialist, Java Developer and Open Source Evangelist </p> <div class="author-meta"> <span class="author-location icon-location"> Bristol, UK</span> <span class="author-link icon-link"><a href="http://ally-jarrett.github.io/"> ally-jarrett.github.io/</a></span> </div> </section> <!-- /author --> <section class="share"> <h4>Share this post</h4> <a class="icon-twitter" href="http://twitter.com/share?text=Installing Kie Work Bench and Kie Server&amp;url=http://ally-jarrett.github.io/installing-the-kie-wb-and-server" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;"> <span class="hidden">Twitter</span> </a> <a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http://ally-jarrett.github.io/installing-the-kie-wb-and-server" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;"> <span class="hidden">Facebook</span> </a> <a class="icon-google-plus" href="https://plus.google.com/share?url=http://ally-jarrett.github.io/installing-the-kie-wb-and-server" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;"> <span class="hidden">Google+</span> </a> </section> <!-- Add Disqus Comments --> <div id="disqus_thread"></div> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ var disqus_shortname = 'https-ally-jarrett-github-io'; // required: replace example with your forum shortname var disqus_identifier = '/installing-the-kie-wb-and-server'; var disqus_url = 'http://ally-jarrett.github.io//installing-the-kie-wb-and-server'; /* * * DON'T EDIT BELOW THIS LINE * * */ (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = 'https://' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a> </div> </footer> </article> </main> <aside class="read-next"> <!-- [[! next_post ]] --> <a class="read-next-story " style="background-image: url(/assets/images/cover6.jpg)" href="/creating-a-basic-project-and-deploying-to-kie-server"> <section class="post"> <h2>Creating a basic BPM Project and deploying to the KIE Server</h2> <p>Intro. A long time coming, this post is the second of a 2 part series...</p> </section> </a> <!-- [[! /next_post ]] --> <!-- [[! prev_post ]] --> <a class="read-next-story prev " style="background-image: url(/assets/images/cover2.jpg)" href="/a-code-snippet-example"> <section class="post"> <h2>A Code Snippet Example Post</h2> <p>Code blocks can also be inserted with the highlight tag as below: {% highlight language-x...</p> </section> </a> <!-- [[! /prev_post ]] --> </aside> <!-- /post --> <footer class="site-footer clearfix"> <section class="copyright"><a href="/">Ally Jarrett&#39;s Blog</a> &copy; 2017</section> <section class="poweredby">Proudly published with <a href="https://jekyllrb.com/">Jekyll</a> using <a href="https://github.com/biomadeira/jasper">Jasper</a></section> </footer> </div> <!-- [[! Ghost outputs important scripts and data with this tag ]] --> <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script> <!-- [[! The main JavaScript file for Casper ]] --> <script type="text/javascript" src="/assets/js/jquery.fitvids.js"></script> <script type="text/javascript" src="/assets/js/index.js"></script> <!-- Add Google Analytics --> <!-- Google Analytics Tracking code --> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-69281367-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
ally-jarrett/ally-jarrett.github.io
installing-the-kie-wb-and-server.html
HTML
apache-2.0
25,187
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_102) on Wed Nov 02 19:52:59 IST 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>MergeStrategy (Solr 6.3.0 API)</title> <meta name="date" content="2016-11-02"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="MergeStrategy (Solr 6.3.0 API)"; } } catch(err) { } //--> var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/MergeStrategy.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/solr/handler/component/IterativeMergeStrategy.CallBack.html" title="class in org.apache.solr.handler.component"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/apache/solr/handler/component/MoreLikeThisComponent.html" title="class in org.apache.solr.handler.component"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/solr/handler/component/MergeStrategy.html" target="_top">Frames</a></li> <li><a href="MergeStrategy.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.solr.handler.component</div> <h2 title="Interface MergeStrategy" class="title">Interface MergeStrategy</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Known Implementing Classes:</dt> <dd><a href="../../../../../org/apache/solr/handler/component/IterativeMergeStrategy.html" title="class in org.apache.solr.handler.component">IterativeMergeStrategy</a></dd> </dl> <hr> <br> <pre>public interface <span class="typeNameLabel">MergeStrategy</span></pre> <div class="block">The MergeStrategy class defines custom merge logic for distributed searches. <b>Note: This API is experimental and may change in non backward-compatible ways in the future</b></div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field.summary"> <!-- --> </a> <h3>Field Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> <caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html?is-external=true" title="class or interface in java.util">Comparator</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/solr/handler/component/MergeStrategy.html#MERGE_COMP">MERGE_COMP</a></span></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/solr/handler/component/MergeStrategy.html#getCost--">getCost</a></span>()</code> <div class="block">Defines the order that the mergeStrategies are applied.</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/solr/handler/component/MergeStrategy.html#handleMergeFields-org.apache.solr.handler.component.ResponseBuilder-org.apache.solr.search.SolrIndexSearcher-">handleMergeFields</a></span>(<a href="../../../../../org/apache/solr/handler/component/ResponseBuilder.html" title="class in org.apache.solr.handler.component">ResponseBuilder</a>&nbsp;rb, <a href="../../../../../org/apache/solr/search/SolrIndexSearcher.html" title="class in org.apache.solr.search">SolrIndexSearcher</a>&nbsp;searcher)</code> <div class="block">Implement handleMergeFields(ResponseBuilder rb, SolrIndexSearch searcher) if your merge strategy needs more complex data then the sort fields provide.</div> </td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/solr/handler/component/MergeStrategy.html#handlesMergeFields--">handlesMergeFields</a></span>()</code> <div class="block">handlesMergeFields must return true if the MergeStrategy implements a custom handleMergeFields(ResponseBuilder rb, SolrIndexSearch searcher)</div> </td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/solr/handler/component/MergeStrategy.html#merge-org.apache.solr.handler.component.ResponseBuilder-org.apache.solr.handler.component.ShardRequest-">merge</a></span>(<a href="../../../../../org/apache/solr/handler/component/ResponseBuilder.html" title="class in org.apache.solr.handler.component">ResponseBuilder</a>&nbsp;rb, <a href="../../../../../org/apache/solr/handler/component/ShardRequest.html" title="class in org.apache.solr.handler.component">ShardRequest</a>&nbsp;sreq)</code> <div class="block">merge defines the merging behaving of results that are collected from the shards during a distributed search.</div> </td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/apache/solr/handler/component/MergeStrategy.html#mergesIds--">mergesIds</a></span>()</code> <div class="block">mergesIds must return true if the merge method merges document ids from the shards.</div> </td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ FIELD DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="field.detail"> <!-- --> </a> <h3>Field Detail</h3> <a name="MERGE_COMP"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>MERGE_COMP</h4> <pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html?is-external=true" title="class or interface in java.util">Comparator</a> MERGE_COMP</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="merge-org.apache.solr.handler.component.ResponseBuilder-org.apache.solr.handler.component.ShardRequest-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>merge</h4> <pre>void&nbsp;merge(<a href="../../../../../org/apache/solr/handler/component/ResponseBuilder.html" title="class in org.apache.solr.handler.component">ResponseBuilder</a>&nbsp;rb, <a href="../../../../../org/apache/solr/handler/component/ShardRequest.html" title="class in org.apache.solr.handler.component">ShardRequest</a>&nbsp;sreq)</pre> <div class="block">merge defines the merging behaving of results that are collected from the shards during a distributed search.</div> </li> </ul> <a name="mergesIds--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>mergesIds</h4> <pre>boolean&nbsp;mergesIds()</pre> <div class="block">mergesIds must return true if the merge method merges document ids from the shards. If it merges other output from the shards it must return false.</div> </li> </ul> <a name="handlesMergeFields--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>handlesMergeFields</h4> <pre>boolean&nbsp;handlesMergeFields()</pre> <div class="block">handlesMergeFields must return true if the MergeStrategy implements a custom handleMergeFields(ResponseBuilder rb, SolrIndexSearch searcher)</div> </li> </ul> <a name="handleMergeFields-org.apache.solr.handler.component.ResponseBuilder-org.apache.solr.search.SolrIndexSearcher-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>handleMergeFields</h4> <pre>void&nbsp;handleMergeFields(<a href="../../../../../org/apache/solr/handler/component/ResponseBuilder.html" title="class in org.apache.solr.handler.component">ResponseBuilder</a>&nbsp;rb, <a href="../../../../../org/apache/solr/search/SolrIndexSearcher.html" title="class in org.apache.solr.search">SolrIndexSearcher</a>&nbsp;searcher) throws <a href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> <div class="block">Implement handleMergeFields(ResponseBuilder rb, SolrIndexSearch searcher) if your merge strategy needs more complex data then the sort fields provide.</div> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code></dd> </dl> </li> </ul> <a name="getCost--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>getCost</h4> <pre>int&nbsp;getCost()</pre> <div class="block">Defines the order that the mergeStrategies are applied. Lower costs are applied first.</div> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/MergeStrategy.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/solr/handler/component/IterativeMergeStrategy.CallBack.html" title="class in org.apache.solr.handler.component"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/apache/solr/handler/component/MoreLikeThisComponent.html" title="class in org.apache.solr.handler.component"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/solr/handler/component/MergeStrategy.html" target="_top">Frames</a></li> <li><a href="MergeStrategy.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &copy; 2000-2016 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </small></p> </body> </html>
johannesbraun/clm_autocomplete
docs/solr-core/org/apache/solr/handler/component/MergeStrategy.html
HTML
apache-2.0
15,485
<!-- Services Section --> <section id="services"> <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <h2 class="section-heading">Services</h2> <h3 class="section-subheading text-muted">eevol is <span class="highlight">focused</span> on mobile & web applications and business analysis.</h3> </div> </div> <div class="row text-center"> <div class="col-md-4"> <span class="fa-stack fa-4x"> <img src="img/eevol-sun.png" class="img-responsive" alt=""> </span> <h4 class="service-heading">Development</h4> <p class="text-muted"> eevol provides full services for your mobile- & web-apps. During every step of the development the team aims for stability while maintaining flexibility for the customer. eevol helps you to get started and brings your idea to the App Stores directly to the people. </p> </div> <div class="col-md-4"> <span class="fa-stack fa-4x"> <img src="img/eevol-radar.png" class="img-responsive" alt=""> </span> <h4 class="service-heading">Project Management</h4> <p class="text-muted"> eevol supports our clients in driving their project within scope, time, quality and budget. Our consultants have hands-on work experience with agile methods (Scrum) and reference methodologies (Quapital-Hermes, PRINCE2). </p> </div> <div class="col-md-4"> <span class="fa-stack fa-4x"> <img src="img/eevol-snipe.png" class="img-responsive" alt=""> </span> <h4 class="service-heading">Business Analysis</h4> <p class="text-muted"> eevol enables our clients to change their organizational context by providing process analysis, process re-engineering, change management and process-oriented quality management.</p> </div> </div> </div> </section>
eevol/eevol.github.io
_includes/services.html
HTML
apache-2.0
2,334
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- Generated by Apache Maven Doxia at 24 Oct 2013 --> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Maven Plugin for Play! Framework 2.x : Play! 2.x Maven Plugin - play2:dist-exploded</title> <style type="text/css" media="all"> @import url("./css/maven-base.css"); @import url("./css/maven-theme.css"); @import url("./css/site.css"); </style> <link rel="stylesheet" href="./css/print.css" type="text/css" media="print" /> <meta name="Date-Revision-yyyymmdd" content="20131024" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> </head> <body class="composite"> <div id="banner"> <a href="http://maven.apache.org/" id="bannerLeft"> <img src="images/logo_apache.jpg" alt="" /> </a> <span id="bannerRight"> <img src="images/logo_maven.jpg" alt="" /> </span> <div class="clear"> <hr/> </div> </div> <div id="breadcrumbs"> <div class="xleft"> Last Published: 24 Oct 2013 &nbsp;| Version: 1.0.0-alpha4 </div> <div class="xright"> <a href="http://maven.apache.org/" class="externalLink">Maven 2</a> </div> <div class="clear"> <hr/> </div> </div> <div id="leftColumn"> <div id="navcolumn"> <h5>Parent Project</h5> <ul> <li class="none"> <a href="../index.html">Maven Plugin for Play! Framework 2.x</a> </li> </ul> <h5>Project Documentation</h5> <ul> <li class="collapsed"> <a href="project-info.html">Project Information</a> </li> <li class="collapsed"> <a href="project-reports.html">Project Reports</a> </li> </ul> <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> <img alt="Built by Maven" src="./images/logos/maven-feather.png"/> </a> </div> </div> <div id="bodyColumn"> <div id="contentBox"> <div class="section"> <h2>play2:dist-exploded<a name="play2:dist-exploded"></a></h2> <p><b>Full name</b>:</p> <p>com.google.code.play2-maven-plugin:play2-maven-plugin:1.0.0-alpha4:dist-exploded</p> <p><b>Description</b>:</p> <div>Create exploded Play! framework and Play! application (standalone distribution).</div> <p><b>Attributes</b>:</p> <ul> <li>Requires a Maven project to be executed.</li> <li>Requires dependency resolution of artifacts in scope: <tt>runtime</tt>.</li> <li>Since version: <tt>1.0.0</tt>.</li> <li>Binds by default to the <a class="externalLink" href="http://maven.apache.org/ref/current/maven-core/lifecycles.html">lifecycle phase</a>: <tt>package</tt>.</li> </ul> <div class="section"> <h3>Optional Parameters<a name="Optional_Parameters"></a></h3> <table class="bodyTable" border="0"> <tr class="a"> <th>Name</th> <th>Type</th> <th>Since</th> <th>Description</th> </tr> <tr class="b"> <td><b><a href="#configFile">configFile</a></b></td> <td><tt>File</tt></td> <td><tt>1.0.0</tt></td> <td>Custom config file.<br /><b>User property is</b>: <tt>config.file</tt>.</td> </tr> <tr class="a"> <td><b><a href="#distDependencyExcludes">distDependencyExcludes</a></b></td> <td><tt>String</tt></td> <td><tt>1.0.0</tt></td> <td>Distribution dependency exclude filter.<br /><b>User property is</b>: <tt>play.distDependencyExcludes</tt>.</td> </tr> <tr class="b"> <td><b><a href="#distDependencyIncludes">distDependencyIncludes</a></b></td> <td><tt>String</tt></td> <td><tt>1.0.0</tt></td> <td>Distribution dependency include filter.<br /><b>User property is</b>: <tt>play.distDependencyIncludes</tt>.</td> </tr> <tr class="a"> <td><b><a href="#distExplodedSkip">distExplodedSkip</a></b></td> <td><tt>boolean</tt></td> <td><tt>1.0.0</tt></td> <td>Skip dist exploded generation.<br /><b>Default value is</b>: <tt>false</tt>.<br /><b>User property is</b>: <tt>play.distExplodedSkip</tt>.</td> </tr> </table> </div> <div class="section"> <h3>Parameter Details<a name="Parameter_Details"></a></h3> <p><b><a name="configFile">configFile</a>:</b></p> <div>Custom config file.</div> <ul> <li><b>Type</b>: <tt>java.io.File</tt></li> <li><b>Since</b>: <tt>1.0.0</tt></li> <li><b>Required</b>: <tt>No</tt></li> <li><b>User Property</b>: <tt>config.file</tt></li> </ul><hr /> <p><b><a name="distDependencyExcludes">distDependencyExcludes</a>:</b></p> <div>Distribution dependency exclude filter.</div> <ul> <li><b>Type</b>: <tt>java.lang.String</tt></li> <li><b>Since</b>: <tt>1.0.0</tt></li> <li><b>Required</b>: <tt>No</tt></li> <li><b>User Property</b>: <tt>play.distDependencyExcludes</tt></li> </ul><hr /> <p><b><a name="distDependencyIncludes">distDependencyIncludes</a>:</b></p> <div>Distribution dependency include filter.</div> <ul> <li><b>Type</b>: <tt>java.lang.String</tt></li> <li><b>Since</b>: <tt>1.0.0</tt></li> <li><b>Required</b>: <tt>No</tt></li> <li><b>User Property</b>: <tt>play.distDependencyIncludes</tt></li> </ul><hr /> <p><b><a name="distExplodedSkip">distExplodedSkip</a>:</b></p> <div>Skip dist exploded generation.</div> <ul> <li><b>Type</b>: <tt>boolean</tt></li> <li><b>Since</b>: <tt>1.0.0</tt></li> <li><b>Required</b>: <tt>No</tt></li> <li><b>User Property</b>: <tt>play.distExplodedSkip</tt></li> <li><b>Default</b>: <tt>false</tt></li> </ul> </div> </div> </div> </div> <div class="clear"> <hr/> </div> <div id="footer"> <div class="xright"> &#169; 2013 - <a href="http://maven.apache.org/privacy-policy.html">Privacy Policy</a>. Apache Maven, Maven, Apache, the Apache feather logo, and the Apache Maven project logos are trademarks of The Apache Software Foundation. </div> <div class="clear"> <hr/> </div> </div> </body> </html>
play2-maven-plugin/play2-maven-plugin.github.io
play2-maven-plugin/1.0.0-alpha4/play2-maven-plugin/dist-exploded-mojo.html
HTML
apache-2.0
7,631
<html> <head> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <span class='rank0 0.0'>?6</span> <span class='rank0 0.0'>7</span> <span class='rank0 0.0'>8</span> <span class='rank0 0.0'>9</span> <span class='rank6 5.886281793427337'>10</span> <span class='rank0 0.0'>T</span> <span class='rank0 0.0'>XT</span> <span class='rank0 0.0'>v</span> </br> <span class='rank5 5.380675333968457'>The</span> <span class='rank6 5.910214491268059'>New</span> <span class='rank5 5.027215308896533'>York</span> </br> <span class='rank4 4.050174224831018'>copyright</span> <span class='rank2 1.7822710117187128'>reserved</span> <span class='rank3 2.5421264334187086'>Botanical</span> <span class='rank3 3.451197890939337'>Garden</span> </br> <span class='rank5 5.380675333968457'>The</span> <span class='rank6 5.910214491268059'>New</span> <span class='rank5 5.027215308896533'>York</span> <span class='rank3 2.5421264334187086'>Botanical</span> <span class='rank3 3.451197890939337'>Garden</span> <span class='rank-4 -4.401794187701384'>Cajanus</span> <span class='rank0 0.18544753696721372'>cajan</span> <span class='rank4 4.361760190645921'>(L.)</span> <span class='rank3 3.1992345762341614'>Huth</span> <span class='rank2 2.184769194623062'>det.</span> <span class='rank7 7.280608326244492'>M.</span> <span class='rank0 0.40086621623233043'>Nee,</span> <span class='rank0 0.09803092842237149'>2011</span> </br> <span class='rank-5 -5.045608192355338'>TRUMAN</span> <span class='rank8 7.623553077371322'>G.</span> <span class='rank2 1.585478295966844'>YUNCKER</span> <span class='rank1 1.2591675974575338'>HERBARIUM,</span> <span class='rank6 6.171300748459634'>OF</span> <span class='rank2 1.597983025164197'>DEPAUW</span> <span class='rank-1 -1.3223085071542755'>UNIVERSITY</span> <span class='rank7 7.227285043678464'>(DPU)</span> <span class='rank0 0.0'>v</span> <span class='rank-12 -11.921299386149087'>PURCHASED</span> <span class='rank9 9.105157618295538'>BY</span> <span class='rank7 7.051033884599992'>NY</span> <span class='rank6 6.181996037576382'>IN</span> <span class='rank0 0.0'>m</span> </br> <span class='rank-9 -9.466304316434275'>SMITHSONIAN</span> <span class='rank-1 -1.4524663385860777'>INSTITUTION</span> </br> <span class='rank3 3.0835067018091777'>From</span> <span class='rank6 6.033766030327724'>THE</span> <span class='rank0 -0.14946694914998915'>UNITED</span> <span class='rank-1 -1.0870722483573303'>STATES</span> <span class='rank0 -0.42618296918484333'>NATIONAL</span> <span class='rank1 1.2090757065657982'>HERBARIUM</span> </br> <span class='rank4 3.9555862618421074'>PLANTS</span> <span class='rank6 6.171300748459634'>OF</span> <span class='rank6 6.033766030327724'>THE</span> <span class='rank5 5.2138912610195405'>WEST</span> <span class='rank2 1.798679754076396'>INDIES</span> </br> <span class='rank3 3.260515744091542'>ALLISON</span> <span class='rank10 10.021448350169694'>V.</span> <span class='rank7 7.323834601406396'>ARMOUR</span> <span class='rank-12 -11.933529675380072'>EXPEDITION,</span> <span class='rank14 13.789911844821324'>1932</span> </br> <span class='rank0 0.0'>fZc&U**-</span> <span class='rank7 6.843394519821747'>A.</span> <span class='rank12 11.627720472679806'>UrtiUy</span> <span class='rank0 0.0'>tZ</span> </br> <span class='rank25 25.351442164718108'>§tf-ftcu</span> <span class='rank18 17.96345515865955'>ex.</span> </br> <span class='rank6 6.361458579296891'>No.</span> <span class='rank23 22.63909770483408'>ÀDAVID</span> <span class='rank14 14.092026882989046'>FAIRCHILD,</span> <span class='rank-2 -1.7627998191147682'>Collector</span> <span class='rank0 0.0'>d™•-</span> </br> <span class='rank2 1.597983025164197'>DEPAUW</span> <span class='rank4 4.178129393033551'>UNIV.</span> <span class='rank0 0.0'>|Q2</span> <span class='rank9 8.768685381674326'>47</span> </br> <span class='rank-6 -6.130600276061941'>herbarium.</span> </br> <span class='rank48 47.77125942146865'>Lblbllfl</span> </br> <span class='rank28 27.921194982982204'>1616198</span> </br> </br></br> <strong>Legend - </strong> Level of confidence that token is an accurately-transcribed word</br> <span class='rank-13'>&nbsp;&nbsp;&nbsp;</span> extremely low <span class='rank-7'>&nbsp;&nbsp;&nbsp;</span> very low <span class='rank-1'>&nbsp;&nbsp;&nbsp;</span> low <span class='rank0'>&nbsp;&nbsp;&nbsp;</span> undetermined <span class='rank1'>&nbsp;&nbsp;&nbsp;</span> medium <span class='rank6'>&nbsp;&nbsp;&nbsp;</span> high <span class='rank16'>&nbsp;&nbsp;&nbsp;</span> very high</br> </body> </html>
idigbio-citsci-hackathon/carrotFacetNgram
carrot2-webapp-3.8.1/herballsilvertrigram/1616198.txt.html
HTML
apache-2.0
4,560
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_51) on Thu Apr 28 18:37:57 UTC 2016 --> <title>Uses of Class org.apache.cassandra.db.marshal.FloatType (apache-cassandra API)</title> <meta name="date" content="2016-04-28"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.cassandra.db.marshal.FloatType (apache-cassandra API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/cassandra/db/marshal/FloatType.html" title="class in org.apache.cassandra.db.marshal">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/cassandra/db/marshal/class-use/FloatType.html" target="_top">Frames</a></li> <li><a href="FloatType.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.cassandra.db.marshal.FloatType" class="title">Uses of Class<br>org.apache.cassandra.db.marshal.FloatType</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/apache/cassandra/db/marshal/FloatType.html" title="class in org.apache.cassandra.db.marshal">FloatType</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.cassandra.db.marshal">org.apache.cassandra.db.marshal</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.db.marshal"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/cassandra/db/marshal/FloatType.html" title="class in org.apache.cassandra.db.marshal">FloatType</a> in <a href="../../../../../../org/apache/cassandra/db/marshal/package-summary.html">org.apache.cassandra.db.marshal</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../../org/apache/cassandra/db/marshal/package-summary.html">org.apache.cassandra.db.marshal</a> declared as <a href="../../../../../../org/apache/cassandra/db/marshal/FloatType.html" title="class in org.apache.cassandra.db.marshal">FloatType</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/cassandra/db/marshal/FloatType.html" title="class in org.apache.cassandra.db.marshal">FloatType</a></code></td> <td class="colLast"><span class="strong">FloatType.</span><code><strong><a href="../../../../../../org/apache/cassandra/db/marshal/FloatType.html#instance">instance</a></strong></code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/cassandra/db/marshal/FloatType.html" title="class in org.apache.cassandra.db.marshal">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/cassandra/db/marshal/class-use/FloatType.html" target="_top">Frames</a></li> <li><a href="FloatType.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2016 The Apache Software Foundation</small></p> </body> </html>
elisska/cloudera-cassandra
DATASTAX_CASSANDRA-2.2.6/javadoc/org/apache/cassandra/db/marshal/class-use/FloatType.html
HTML
apache-2.0
6,456
<!DOCTYPE html> <html> <head> <link href="js/bootstrap.min.css" rel="stylesheet"type="text/css"> <link href="css/moncss.css" rel="stylesheet"type="text/css"> <script type="text/javascript" src="js/jquery-3.1.1.min.js"> </script> <script type="text/javascript" src="js/typeahead.min.js"></script> <script type="text/javascript" src="js/bootstrap.min.js"></script> <script type="text/javascript" src="js/formulaire.js"></script> <title>Comparison of programming languages (array) - Array dimensions </title> <meta charset="utf-8"> </head> <body> <div class="container"> <div class="row"> <div class="col-md-2">&nbsp;</div> <div class="col-md-8"> <h1>Comparison of programming languages (array) - Array dimensions </h1> </div> <div class="col-md-2">&nbsp;</div> </div> <div class="row"> <fieldset> <div class="col-md-2">&nbsp;</div> <div class="col-md-8"> <form action="" method="post"> <legend style="color:red;font-weight: bold;font-style:italic;text-align: center;" >Formulaire</legend> </br> <label>First : </label></br> <input id="0" type="text" name="Feature"></br> </br> <label>Languages : </label></br> <input id="1" type="text" name="Feature"></br> </br> <label>Size : </label></br> <input id="2" type="text" name="Feature"></br> </br> <label>Last : </label></br> <input id="3" type="text" name="Feature"></br> <script> $("#0").typeahead({ name:"list0", local : ['etc.','',''] }); $("#1").typeahead({ name:"list1", local : ['Object Pascal','Haskell','C#, Visual Basic .NET, Windows PowerShell, F#','PHP','Rust','Ada','Perl','Mathematica','J','Fortran','Perl 6','Visual Basic','MATLAB, GNU Octave, Julia','Java, JavaScript, D, Scala','Lua','Haxe','Smalltalk','Objective-C (NSArray * only)','Go','S-Lang','ALGOL 68','OCaml','Python','Xojo','Common Lisp','Ruby','ISLISP','CFML','Ch','Cobra','Scheme',''] }); $("#2").typeahead({ name:"list2", local : ['','$','etc.','@',''] }); $("#3").typeahead({ name:"list3", local : ['','$','etc.',''] }); </script> </br><input type="submit" class="btn btn-info" value="Ajouter un produit" /> </form> </div> </fieldset> <div class="col-md-2">&nbsp;</div> </div> </div> </body> </html>
Ophelle/PDL
pcms/Comparison_of_programming_languages_(array)_0.pcm.html
HTML
apache-2.0
2,425
<!-- HTML header for doxygen 1.8.18--> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.9.2"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>OR-Tools: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> <link href="styleSheet.tmp.css" rel="stylesheet" type="text/css"/> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="orLogo.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">OR-Tools &#160;<span id="projectnumber">9.2</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.9.2 --> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */ var searchBox = new SearchBox("searchBox", "search",'Search','.html'); /* @license-end */ </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */ $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); /* @license-end */ </script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */ $(document).ready(function(){initNavTree('structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html',''); initResizable(); }); /* @license-end */ </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"><div class="title">Graphs&lt; operations_research::StarGraph &gt; Member List</div></div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html">Graphs&lt; operations_research::StarGraph &gt;</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html#a44aa9e2f47277c91d8064c7126a2ff48">ArcIndex</a> typedef</td><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html">Graphs&lt; operations_research::StarGraph &gt;</a></td><td class="entry"></td></tr> <tr class="odd"><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html#a42fb6857e088a176a53232b910715260">ArcReservation</a>(const Graph &amp;graph)</td><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html">Graphs&lt; operations_research::StarGraph &gt;</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html#a4012242a9e38a525508c059fcfb5067c">Build</a>(Graph *graph)</td><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html">Graphs&lt; operations_research::StarGraph &gt;</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> <tr class="odd"><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html#ab984d754556724f92363ea83c776d45b">Build</a>(Graph *graph, std::vector&lt; ArcIndex &gt; *permutation)</td><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html">Graphs&lt; operations_research::StarGraph &gt;</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html#ae6f9a910e55b48a7d5eb4ff3537545dd">Graph</a> typedef</td><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html">Graphs&lt; operations_research::StarGraph &gt;</a></td><td class="entry"></td></tr> <tr class="odd"><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html#ae02cd8602383e4fb48a8a933325db5fd">IsArcValid</a>(const Graph &amp;graph, ArcIndex arc)</td><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html">Graphs&lt; operations_research::StarGraph &gt;</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html#a4ddaeee9414a17257bb052c459325caf">NodeIndex</a> typedef</td><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html">Graphs&lt; operations_research::StarGraph &gt;</a></td><td class="entry"></td></tr> <tr class="odd"><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html#a9d530d16efbea1a29d61cb0325980a50">NodeReservation</a>(const Graph &amp;graph)</td><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html">Graphs&lt; operations_research::StarGraph &gt;</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html#ae9cc106c6139c0b4e57057594bf56ea8">OppositeArc</a>(const Graph &amp;graph, ArcIndex arc)</td><td class="entry"><a class="el" href="structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4.html">Graphs&lt; operations_research::StarGraph &gt;</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- HTML footer for doxygen 1.8.18--> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.9.2 </li> </ul> </div> </body> </html>
google/or-tools
docs/cpp/structoperations__research_1_1_graphs_3_01operations__research_1_1_star_graph_01_4-members.html
HTML
apache-2.0
8,637
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Tue Feb 06 09:38:16 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>org.wildfly.swarm.keycloak.deployment (BOM: * : All 2017.10.2 API)</title> <meta name="date" content="2018-02-06"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.wildfly.swarm.keycloak.deployment (BOM: * : All 2017.10.2 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.10.2</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/keycloak/package-summary.html">Prev&nbsp;Package</a></li> <li><a href="../../../../../org/wildfly/swarm/keycloak/server/package-summary.html">Next&nbsp;Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/keycloak/deployment/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;org.wildfly.swarm.keycloak.deployment</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/wildfly/swarm/keycloak/deployment/KeycloakSecurityContextAssociation.html" title="class in org.wildfly.swarm.keycloak.deployment">KeycloakSecurityContextAssociation</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/wildfly/swarm/keycloak/deployment/SecurityContextServletExtension.html" title="class in org.wildfly.swarm.keycloak.deployment">SecurityContextServletExtension</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.10.2</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/keycloak/package-summary.html">Prev&nbsp;Package</a></li> <li><a href="../../../../../org/wildfly/swarm/keycloak/server/package-summary.html">Next&nbsp;Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/keycloak/deployment/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2017.10.2/apidocs/org/wildfly/swarm/keycloak/deployment/package-summary.html
HTML
apache-2.0
5,741
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8"> <title>tileImageBuilder</title> <link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"> <script>var pathToRoot = "../../../";</script> <script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async="async"></script> <link href="../../../styles/style.css" rel="Stylesheet"> <link href="../../../styles/logo-styles.css" rel="Stylesheet"> <link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"> <link href="../../../styles/main.css" rel="Stylesheet"> <script type="text/javascript" src="../../../scripts/clipboard.js" async="async"></script> <script type="text/javascript" src="../../../scripts/navigation-loader.js" async="async"></script> <script type="text/javascript" src="../../../scripts/platform-content-handler.js" async="async"></script> <script type="text/javascript" src="../../../scripts/main.js" async="async"></script> </head> <body> <div id="container"> <div id="leftColumn"> <div id="logo"></div> <div id="paneSearch"></div> <div id="sideMenu"></div> </div> <div id="main"> <div id="leftToggler"><span class="icon-toggler"></span></div> <script type="text/javascript" src="../../../scripts/pages.js"></script> <script type="text/javascript" src="../../../scripts/main.js"></script> <div class="main-content" id="content" pageIds="org.hexworks.zircon.api/DrawSurfaces/tileImageBuilder/#/PointingToDeclaration//-828656838"> <div class="navigation-wrapper" id="navigation-wrapper"> <div class="breadcrumbs"><a href="../../index.html">zircon.core</a>/<a href="../index.html">org.hexworks.zircon.api</a>/<a href="index.html">DrawSurfaces</a>/<a href="tile-image-builder.html">tileImageBuilder</a></div> <div class="pull-right d-flex"> <div class="filter-section" id="filter-section"><button class="platform-tag platform-selector common-like" data-active="" data-filter=":zircon.core:dokkaHtml/commonMain">common</button></div> <div id="searchBar"></div> </div> </div> <div class="cover "> <h1 class="cover"><span>tile</span><wbr></wbr><span>Image</span><wbr></wbr><span>Builder</span></h1> </div> <div class="divergent-group" data-filterable-current=":zircon.core:dokkaHtml/commonMain" data-filterable-set=":zircon.core:dokkaHtml/commonMain"><div class="with-platform-tags"><span class="pull-right"></span></div> <div> <div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":zircon.core:dokkaHtml/commonMain"><div class="symbol monospace"><div class="block"><div class="block">@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.jvm/-jvm-static/index.html">JvmStatic</a>()</div></div>fun <a href="tile-image-builder.html">tileImageBuilder</a>(): <a href="../../org.hexworks.zircon.api.builder.graphics/-tile-image-builder/index.html">TileImageBuilder</a><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div></div> </div> <p class="paragraph">Creates a new <a href="../../org.hexworks.zircon.api.builder.graphics/-tile-image-builder/index.html">TileImageBuilder</a> to build <a href="../../org.hexworks.zircon.api.graphics/-tile-image/index.html">org.hexworks.zircon.api.graphics.TileImage</a>s.</p></div> <h2 class="">Sources</h2> <div class="table" data-togglable="Sources"><a data-name="%5Borg.hexworks.zircon.api%2FDrawSurfaces%2FtileImageBuilder%2F%23%2FPointingToDeclaration%2F%5D%2FSource%2F-828656838" anchor-label="https://github.com/Hexworks/zircon/tree/master/zircon.core/src/commonMain/kotlin/org/hexworks/zircon/api/DrawSurfaces.kt#L14" id="%5Borg.hexworks.zircon.api%2FDrawSurfaces%2FtileImageBuilder%2F%23%2FPointingToDeclaration%2F%5D%2FSource%2F-828656838" data-filterable-set=":zircon.core:dokkaHtml/commonMain"></a> <div class="table-row" data-filterable-current=":zircon.core:dokkaHtml/commonMain" data-filterable-set=":zircon.core:dokkaHtml/commonMain"> <div class="main-subrow keyValue "> <div class=""><span class="inline-flex"><a href="https://github.com/Hexworks/zircon/tree/master/zircon.core/src/commonMain/kotlin/org/hexworks/zircon/api/DrawSurfaces.kt#L14">(source)</a><span class="anchor-wrapper"><span class="anchor-icon" pointing-to="%5Borg.hexworks.zircon.api%2FDrawSurfaces%2FtileImageBuilder%2F%23%2FPointingToDeclaration%2F%5D%2FSource%2F-828656838"></span> <div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div> </span></span></div> <div></div> </div> </div> </div> </div> <div class="footer"><span class="go-to-top-icon"><a href="#content"></a></span><span>© 2020 Copyright</span><span class="pull-right"><span>Sponsored and developed by dokka</span><a href="https://github.com/Kotlin/dokka"><span class="padded-icon"></span></a></span></div> </div> </div> </body> </html>
Hexworks/zircon
docs/2020.2.0-RELEASE-KOTLIN/zircon.core/zircon.core/org.hexworks.zircon.api/-draw-surfaces/tile-image-builder.html
HTML
apache-2.0
5,439
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_45) on Mon Jun 24 22:24:57 UTC 2013 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> org.apache.hadoop.hbase.filter (HBase 0.94.9 API) </TITLE> <META NAME="date" CONTENT="2013-06-24"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../../../../org/apache/hadoop/hbase/filter/package-summary.html" target="classFrame">org.apache.hadoop.hbase.filter</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Interfaces</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="Filter.html" title="interface in org.apache.hadoop.hbase.filter" target="classFrame"><I>Filter</I></A></FONT></TD> </TR> </TABLE> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="BinaryComparator.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">BinaryComparator</A> <BR> <A HREF="BinaryPrefixComparator.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">BinaryPrefixComparator</A> <BR> <A HREF="BitComparator.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">BitComparator</A> <BR> <A HREF="ColumnCountGetFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">ColumnCountGetFilter</A> <BR> <A HREF="ColumnPaginationFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">ColumnPaginationFilter</A> <BR> <A HREF="ColumnPrefixFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">ColumnPrefixFilter</A> <BR> <A HREF="ColumnRangeFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">ColumnRangeFilter</A> <BR> <A HREF="CompareFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">CompareFilter</A> <BR> <A HREF="DependentColumnFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">DependentColumnFilter</A> <BR> <A HREF="FamilyFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">FamilyFilter</A> <BR> <A HREF="FilterBase.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">FilterBase</A> <BR> <A HREF="FilterList.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">FilterList</A> <BR> <A HREF="FirstKeyOnlyFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">FirstKeyOnlyFilter</A> <BR> <A HREF="FuzzyRowFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">FuzzyRowFilter</A> <BR> <A HREF="InclusiveStopFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">InclusiveStopFilter</A> <BR> <A HREF="KeyOnlyFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">KeyOnlyFilter</A> <BR> <A HREF="MultipleColumnPrefixFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">MultipleColumnPrefixFilter</A> <BR> <A HREF="NullComparator.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">NullComparator</A> <BR> <A HREF="PageFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">PageFilter</A> <BR> <A HREF="ParseConstants.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">ParseConstants</A> <BR> <A HREF="ParseFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">ParseFilter</A> <BR> <A HREF="PrefixFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">PrefixFilter</A> <BR> <A HREF="QualifierFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">QualifierFilter</A> <BR> <A HREF="RandomRowFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">RandomRowFilter</A> <BR> <A HREF="RegexStringComparator.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">RegexStringComparator</A> <BR> <A HREF="RowFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">RowFilter</A> <BR> <A HREF="SingleColumnValueExcludeFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">SingleColumnValueExcludeFilter</A> <BR> <A HREF="SingleColumnValueFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">SingleColumnValueFilter</A> <BR> <A HREF="SkipFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">SkipFilter</A> <BR> <A HREF="SubstringComparator.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">SubstringComparator</A> <BR> <A HREF="TimestampsFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">TimestampsFilter</A> <BR> <A HREF="ValueFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">ValueFilter</A> <BR> <A HREF="WhileMatchFilter.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">WhileMatchFilter</A> <BR> <A HREF="WritableByteArrayComparable.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">WritableByteArrayComparable</A></FONT></TD> </TR> </TABLE> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Enums</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="BitComparator.BitwiseOp.html" title="enum in org.apache.hadoop.hbase.filter" target="classFrame">BitComparator.BitwiseOp</A> <BR> <A HREF="CompareFilter.CompareOp.html" title="enum in org.apache.hadoop.hbase.filter" target="classFrame">CompareFilter.CompareOp</A> <BR> <A HREF="Filter.ReturnCode.html" title="enum in org.apache.hadoop.hbase.filter" target="classFrame">Filter.ReturnCode</A> <BR> <A HREF="FilterList.Operator.html" title="enum in org.apache.hadoop.hbase.filter" target="classFrame">FilterList.Operator</A></FONT></TD> </TR> </TABLE> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Exceptions</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="IncompatibleFilterException.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">IncompatibleFilterException</A> <BR> <A HREF="InvalidRowFilterException.html" title="class in org.apache.hadoop.hbase.filter" target="classFrame">InvalidRowFilterException</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
zqxjjj/NobidaBase
docs/apidocs/org/apache/hadoop/hbase/filter/package-frame.html
HTML
apache-2.0
6,688
# -*- coding: utf-8 -*- #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = controllerclientcpp CREATE_SUBDIRS = NO BRIEF_MEMBER_DESC = YES REPEAT_BRIEF = YES ABBREVIATE_BRIEF = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the ALWAYS_DETAILED_SEC = NO INLINE_INHERITED_MEMB = NO FULL_PATH_NAMES = YES STRIP_FROM_INC_PATH = SHORT_NAMES = NO JAVADOC_AUTOBRIEF = NO MULTILINE_CPP_IS_BRIEF = NO INHERIT_DOCS = YES SEPARATE_MEMBER_PAGES = NO TAB_SIZE = 4 ALIASES = ALIASES += sourcesdownload{1}="<a href=\"https://github.com/mujin/controllerclientcpp">\1</a>" ALIASES += en="\~english " ALIASES += ja="\~japanese " ALIASES += homepage{1}="<a href=\"https://github.com/mujin/controllerclientcpp">\1</a>" OPTIMIZE_OUTPUT_FOR_C = NO OPTIMIZE_OUTPUT_JAVA = NO BUILTIN_STL_SUPPORT = YES CPP_CLI_SUPPORT = NO DISTRIBUTE_GROUP_DOC = NO SUBGROUPING = YES #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- EXTRACT_ALL = YES EXTRACT_PRIVATE = NO EXTRACT_STATIC = YES EXTRACT_LOCAL_CLASSES = YES EXTRACT_LOCAL_METHODS = NO HIDE_UNDOC_MEMBERS = NO HIDE_UNDOC_CLASSES = NO HIDE_FRIEND_COMPOUNDS = YES HIDE_IN_BODY_DOCS = NO INTERNAL_DOCS = NO CASE_SENSE_NAMES = YES HIDE_SCOPE_NAMES = NO SHOW_INCLUDE_FILES = YES INLINE_INFO = YES SORT_MEMBER_DOCS = YES SORT_BRIEF_DOCS = NO SORT_BY_SCOPE_NAME = YES GENERATE_TODOLIST = YES GENERATE_TESTLIST = YES GENERATE_BUGLIST = YES GENERATE_DEPRECATEDLIST= YES ENABLED_SECTIONS = MAX_INITIALIZER_LINES = 30 SHOW_USED_FILES = YES SHOW_DIRECTORIES = NO FILE_VERSION_FILTER = "/bin/sh -c 'git log --pretty=\"format:%ci, commit:%h\" -1 \"${1}\" || echo no git'" #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- QUIET = NO WARNINGS = YES WARN_IF_UNDOCUMENTED = NO WARN_IF_DOC_ERROR = YES WARN_NO_PARAMDOC = NO WARN_FORMAT = "$file:$line: $text" WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- INPUT = ../include/mujincontrollerclient ../build/include/mujincontrollerclient ../samples ./mainpage.dox INPUT_ENCODING = UTF-8 FILE_PATTERNS = *.c \ *.cc \ *.cxx \ *.cpp \ *.c++ \ *.d \ *.java \ *.ii \ *.ixx \ *.ipp \ *.i++ \ *.inl \ *.h \ *.hh \ *.hxx \ *.hpp \ *.h++ \ *.idl \ *.odl \ *.cs \ *.php \ *.php3 \ *.inc \ *.m \ *.mm \ *.dox \ *.py RECURSIVE = NO EXCLUDE = EXCLUDE_SYMLINKS = NO EXCLUDE_PATTERNS = EXCLUDE_SYMBOLS = EXAMPLE_PATH = ../samples EXAMPLE_PATTERNS = *.cpp *.cmake *.h EXAMPLE_RECURSIVE = NO IMAGE_PATH = ./images INPUT_FILTER = FILTER_PATTERNS = FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- SOURCE_BROWSER = YES INLINE_SOURCES = NO STRIP_CODE_COMMENTS = YES REFERENCED_BY_RELATION = NO REFERENCES_RELATION = NO REFERENCES_LINK_SOURCE = YES USE_HTAGS = NO VERBATIM_HEADERS = NO #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- ALPHABETICAL_INDEX = NO COLS_IN_ALPHA_INDEX = 5 IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- GENERATE_HTML = YES HTML_OUTPUT = html HTML_FILE_EXTENSION = .html HTML_HEADER = HTML_FOOTER = HTML_STYLESHEET = HTML_ALIGN_MEMBERS = YES GENERATE_HTMLHELP = NO CHM_FILE = HHC_LOCATION = GENERATE_CHI = NO BINARY_TOC = NO TOC_EXPAND = NO DISABLE_INDEX = NO ENUM_VALUES_PER_LINE = 4 GENERATE_TREEVIEW = NO TREEVIEW_WIDTH = 250 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- GENERATE_LATEX = NO GENERATE_RTF = NO GENERATE_MAN = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- GENERATE_XML = NO XML_OUTPUT = XML_SCHEMA = XML_DTD = XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- GENERATE_PERLMOD = NO PERLMOD_LATEX = NO PERLMOD_PRETTY = YES PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- ENABLE_PREPROCESSING = YES MACRO_EXPANSION = NO EXPAND_ONLY_PREDEF = NO SEARCH_INCLUDES = YES INCLUDE_PATH = ../build/include/mujincontrollerclient PREDEFINED = EXPAND_AS_DEFINED = SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- TAGFILES = GENERATE_TAGFILE = ALLEXTERNALS = NO EXTERNAL_GROUPS = YES PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- CLASS_DIAGRAMS = YES MSCGEN_PATH = HIDE_UNDOC_RELATIONS = YES HAVE_DOT = YES CLASS_GRAPH = YES COLLABORATION_GRAPH = YES GROUP_GRAPHS = YES UML_LOOK = NO TEMPLATE_RELATIONS = NO INCLUDE_GRAPH = YES INCLUDED_BY_GRAPH = YES CALL_GRAPH = NO CALLER_GRAPH = NO GRAPHICAL_HIERARCHY = YES DIRECTORY_GRAPH = YES DOT_IMAGE_FORMAT = png DOT_PATH = DOTFILE_DIRS = DOT_GRAPH_MAX_NODES = 50 DOT_TRANSPARENT = YES DOT_MULTI_TARGETS = NO GENERATE_LEGEND = YES DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- SEARCHENGINE = YES SERVER_BASED_SEARCH = NO # enabling provides faster search, but no live searching...
mujin/controllerclientcpp
docs/Doxyfile.html
HTML
apache-2.0
9,207
Messaggio inviato con successo| L'Email contiente allegati
BigBlueHat/atmailopen
html/italiano/msg/sentmsga.html
HTML
apache-2.0
58
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>&quot;math/base/assert/is-integer/docs/types/index.d&quot; | stdlib</title> <meta name="description" content="stdlib is a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing."> <meta name="author" content="stdlib"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <!-- Icons --> <link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png"> <link rel="manifest" href="../manifest.json"> <link rel="mask-icon" href="../safari-pinned-tab.svg" color="#5bbad5"> <meta name="theme-color" content="#ffffff"> <!-- Facebook Open Graph --> <meta property="og:type" content="website"> <meta property="og:site_name" content="stdlib"> <meta property="og:url" content="https://stdlib.io/"> <meta property="og:title" content="A standard library for JavaScript and Node.js."> <meta property="og:description" content="stdlib is a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing."> <meta property="og:locale" content="en_US"> <meta property="og:image" content=""> <!-- Twitter --> <meta name="twitter:card" content="A standard library for JavaScript and Node.js."> <meta name="twitter:site" content="@stdlibjs"> <meta name="twitter:url" content="https://stdlib.io/"> <meta name="twitter:title" content="stdlib"> <meta name="twitter:description" content="stdlib is a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing."> <meta name="twitter:image" content=""> <link rel="stylesheet" href="../assets/css/main.css"> <link rel="stylesheet" href="../assets/css/theme.css"> </head> <body> <header> <div class="tsd-page-toolbar"> <div class="container"> <div class="table-wrap"> <div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base=".."> <div class="field"> <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label> <input id="tsd-search-field" type="text" /> </div> <ul class="results"> <li class="state loading">Preparing search index...</li> <li class="state failure">The search index is not available</li> </ul> <a href="../index.html" class="title"><img src="../logo_white.svg" alt="stdlib"></a> </div> <div class="table-cell" id="tsd-widgets"> <div id="tsd-filter"> <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a> <div class="tsd-filter-group"> <div class="tsd-select" id="tsd-filter-visibility"> <span class="tsd-select-label">All</span> <ul class="tsd-select-list"> <li data-value="public">Public</li> <li data-value="protected">Public/Protected</li> <li data-value="private" class="selected">All</li> </ul> </div> <input type="checkbox" id="tsd-filter-inherited" checked /> <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label> <input type="checkbox" id="tsd-filter-only-exported" /> <label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label> </div> </div> <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a> </div> </div> </div> </div> <div class="tsd-page-title"> <div class="container"> <ul class="tsd-breadcrumb"> <li> <a href="../globals.html">Globals</a> </li> <li> <a href="_math_base_assert_is_integer_docs_types_index_d_.html">&quot;math/base/assert/is-integer/docs/types/index.d&quot;</a> </li> </ul> <h1>External module &quot;math/base/assert/is-integer/docs/types/index.d&quot;</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <section class="tsd-panel-group tsd-index-group"> <h2>Index</h2> <section class="tsd-panel tsd-index-panel"> <div class="tsd-index-content"> <section class="tsd-index-section tsd-is-not-exported"> <h3>Functions</h3> <ul class="tsd-index-list"> <li class="tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"><a href="_math_base_assert_is_integer_docs_types_index_d_.html#isinteger" class="tsd-kind-icon">is<wbr>Integer</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-not-exported"> <h2>Functions</h2> <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"> <a name="isinteger" class="tsd-anchor"></a> <h3>is<wbr>Integer</h3> <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon">is<wbr>Integer<span class="tsd-signature-symbol">(</span>x<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/math/base/assert/is-integer/docs/types/index.d.ts#L39">lib/node_modules/@stdlib/math/base/assert/is-integer/docs/types/index.d.ts:39</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Tests if a finite double-precision floating-point number is an integer.</p> </div> <a href="#notes" id="notes" style="color: inherit; text-decoration: none;"> <h2>Notes</h2> </a> <ul> <li>The function assumes a finite number. If provided positive or negative infinity, the function will return <code>true</code>, when, in fact, the result is undefined.</li> </ul> </div> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>x: <span class="tsd-signature-type">number</span></h5> <div class="tsd-comment tsd-typography"> <p>value to test</p> </div> </li> </ul> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span> </h4> <p>boolean indicating whether the value is an integer</p> <h4 class="tsd-example-title">Example</h4> <div><pre><code class="language-javascript"><span class="hljs-keyword">var</span> bool = isInteger( <span class="hljs-number">1.0</span> ); <span class="hljs-comment">// returns true</span></code></pre> </div> <h4 class="tsd-example-title">Example</h4> <div><pre><code class="language-javascript"><span class="hljs-keyword">var</span> bool = isInteger( <span class="hljs-number">3.14</span> ); <span class="hljs-comment">// returns false</span></code></pre> </div> </li> </ul> </section> </section> </div> <div class="col-4 col-menu menu-sticky-wrap menu-highlight"> <nav class="tsd-navigation primary"> <ul> <li class="globals "> <a href="../globals.html"><em>Packages</em></a> </li> <li class="current tsd-kind-external-module"> <a href="_math_base_assert_is_integer_docs_types_index_d_.html">&quot;math/base/assert/is-<wbr>integer/docs/types/index.d&quot;</a> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> <li class=" tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_math_base_assert_is_integer_docs_types_index_d_.html#isinteger" class="tsd-kind-icon">is<wbr>Integer</a> </li> </ul> </nav> </div> </div> </div> <footer> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> <ul class="tsd-legend"> <li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li> <li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li> <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li> <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li> <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li> <li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li> <li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li> <li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li> <li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li> <li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li> <li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li> <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li> <li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li> </ul> </div> </div> <div class="bottom-nav center border-top"> <a href="https://www.patreon.com/athan">Donate</a> / <a href="/docs/api/">Docs</a> / <a href="https://gitter.im/stdlib-js/stdlib">Chat</a> / <a href="https://twitter.com/stdlibjs">Twitter</a> / <a href="https://github.com/stdlib-js/stdlib">Contribute</a> </div> </footer> <div class="overlay"></div> <script src="../assets/js/main.js"></script> <script src="../assets/js/theme.js"></script> <script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-105890493-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
stdlib-js/www
public/docs/ts/latest/modules/_math_base_assert_is_integer_docs_types_index_d_.html
HTML
apache-2.0
13,901
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0-google-v7) on Wed Sep 02 13:30:30 PDT 2015 --> <title>LocalTaskQueueTestConfig.TaskCountDownLatch</title> <meta name="date" content="2015-09-02"> <link rel="stylesheet" type="text/css" href="../../../../../../dev_javadoc.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="LocalTaskQueueTestConfig.TaskCountDownLatch"; } } catch(err) { } //--> var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.ServletInvokingTaskCallback.html" title="class in com.google.appengine.tools.development.testing"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../../com/google/appengine/tools/development/testing/LocalURLFetchServiceTestConfig.html" title="class in com.google.appengine.tools.development.testing"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html" target="_top">Frames</a></li> <li><a href="LocalTaskQueueTestConfig.TaskCountDownLatch.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">com.google.appengine.tools.development.testing</div> <h2 title="Class LocalTaskQueueTestConfig.TaskCountDownLatch" class="title">Class LocalTaskQueueTestConfig.TaskCountDownLatch</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>java.util.concurrent.CountDownLatch</li> <li> <ul class="inheritance"> <li>com.google.appengine.tools.development.testing.LocalTaskQueueTestConfig.TaskCountDownLatch</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Enclosing class:</dt> <dd><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.html" title="class in com.google.appengine.tools.development.testing">LocalTaskQueueTestConfig</a></dd> </dl> <hr> <br> <pre>public static final class <span class="typeNameLabel">LocalTaskQueueTestConfig.TaskCountDownLatch</span> extends java.util.concurrent.CountDownLatch</pre> <div class="block">A <code>CountDownLatch</code> extension that can be reset. Pass an instance of this class to <code>LocalTaskQueueTestConfig#setTaskExecutionLatch)</code> when you need to reuse the latch within or across tests. Only one thread at a time should ever call any of the <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#await--"><code>await()</code></a> or <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#reset--"><code>reset()</code></a> methods.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#TaskCountDownLatch-int-">TaskCountDownLatch</a></span>(int&nbsp;count)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#await--">await</a></span>()</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#await-long-java.util.concurrent.TimeUnit-">await</a></span>(long&nbsp;timeout, java.util.concurrent.TimeUnit&nbsp;unit)</code>&nbsp;</td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#awaitAndReset--">awaitAndReset</a></span>()</code> <div class="block">Shorthand for calling <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#await--"><code>await()</code></a> followed by <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#reset--"><code>reset()</code></a>.</div> </td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#awaitAndReset-int-">awaitAndReset</a></span>(int&nbsp;count)</code> <div class="block">Shorthand for calling <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#await--"><code>await()</code></a> followed by <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#reset-int-"><code>reset(int)</code></a>.</div> </td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#awaitAndReset-long-java.util.concurrent.TimeUnit-">awaitAndReset</a></span>(long&nbsp;timeout, java.util.concurrent.TimeUnit&nbsp;unit)</code> <div class="block">Shorthand for calling <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#await-long-java.util.concurrent.TimeUnit-"><code>await(long, java.util.concurrent.TimeUnit)</code></a> followed by <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#reset--"><code>reset()</code></a>.</div> </td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#awaitAndReset-long-java.util.concurrent.TimeUnit-int-">awaitAndReset</a></span>(long&nbsp;timeout, java.util.concurrent.TimeUnit&nbsp;unit, int&nbsp;count)</code> <div class="block">Shorthand for calling <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#await-long-java.util.concurrent.TimeUnit-"><code>await(long, java.util.concurrent.TimeUnit)</code></a> followed by <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#reset-int-"><code>reset(int)</code></a>.</div> </td> </tr> <tr id="i6" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#countDown--">countDown</a></span>()</code>&nbsp;</td> </tr> <tr id="i7" class="rowColor"> <td class="colFirst"><code>long</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#getCount--">getCount</a></span>()</code>&nbsp;</td> </tr> <tr id="i8" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#reset--">reset</a></span>()</code> <div class="block">Resets the latch to its most recent initial count.</div> </td> </tr> <tr id="i9" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#reset-int-">reset</a></span>(int&nbsp;count)</code> <div class="block">Resets the latch to the provided count.</div> </td> </tr> <tr id="i10" class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#toString--">toString</a></span>()</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="TaskCountDownLatch-int-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>TaskCountDownLatch</h4> <pre>public&nbsp;TaskCountDownLatch(int&nbsp;count)</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="getCount--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getCount</h4> <pre>public&nbsp;long&nbsp;getCount()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>getCount</code>&nbsp;in class&nbsp;<code>java.util.concurrent.CountDownLatch</code></dd> </dl> </li> </ul> <a name="toString--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toString</h4> <pre>public&nbsp;java.lang.String&nbsp;toString()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>toString</code>&nbsp;in class&nbsp;<code>java.util.concurrent.CountDownLatch</code></dd> </dl> </li> </ul> <a name="await--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>await</h4> <pre>public&nbsp;void&nbsp;await() throws java.lang.InterruptedException</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>await</code>&nbsp;in class&nbsp;<code>java.util.concurrent.CountDownLatch</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.InterruptedException</code></dd> </dl> </li> </ul> <a name="await-long-java.util.concurrent.TimeUnit-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>await</h4> <pre>public&nbsp;boolean&nbsp;await(long&nbsp;timeout, java.util.concurrent.TimeUnit&nbsp;unit) throws java.lang.InterruptedException</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>await</code>&nbsp;in class&nbsp;<code>java.util.concurrent.CountDownLatch</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.InterruptedException</code></dd> </dl> </li> </ul> <a name="countDown--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>countDown</h4> <pre>public&nbsp;void&nbsp;countDown()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>countDown</code>&nbsp;in class&nbsp;<code>java.util.concurrent.CountDownLatch</code></dd> </dl> </li> </ul> <a name="awaitAndReset--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>awaitAndReset</h4> <pre>public&nbsp;void&nbsp;awaitAndReset() throws java.lang.InterruptedException</pre> <div class="block">Shorthand for calling <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#await--"><code>await()</code></a> followed by <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#reset--"><code>reset()</code></a>. Only one thread at a time should call this.</div> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.InterruptedException</code></dd> </dl> </li> </ul> <a name="awaitAndReset-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>awaitAndReset</h4> <pre>public&nbsp;void&nbsp;awaitAndReset(int&nbsp;count) throws java.lang.InterruptedException</pre> <div class="block">Shorthand for calling <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#await--"><code>await()</code></a> followed by <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#reset-int-"><code>reset(int)</code></a>. Only one thread at a time should call this.</div> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.InterruptedException</code></dd> </dl> </li> </ul> <a name="awaitAndReset-long-java.util.concurrent.TimeUnit-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>awaitAndReset</h4> <pre>public&nbsp;boolean&nbsp;awaitAndReset(long&nbsp;timeout, java.util.concurrent.TimeUnit&nbsp;unit) throws java.lang.InterruptedException</pre> <div class="block">Shorthand for calling <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#await-long-java.util.concurrent.TimeUnit-"><code>await(long, java.util.concurrent.TimeUnit)</code></a> followed by <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#reset--"><code>reset()</code></a>. Only one thread at a time should call this.</div> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.InterruptedException</code></dd> </dl> </li> </ul> <a name="awaitAndReset-long-java.util.concurrent.TimeUnit-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>awaitAndReset</h4> <pre>public&nbsp;boolean&nbsp;awaitAndReset(long&nbsp;timeout, java.util.concurrent.TimeUnit&nbsp;unit, int&nbsp;count) throws java.lang.InterruptedException</pre> <div class="block">Shorthand for calling <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#await-long-java.util.concurrent.TimeUnit-"><code>await(long, java.util.concurrent.TimeUnit)</code></a> followed by <a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html#reset-int-"><code>reset(int)</code></a>. Only one thread at a time should call this.</div> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.InterruptedException</code></dd> </dl> </li> </ul> <a name="reset--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>reset</h4> <pre>public&nbsp;void&nbsp;reset()</pre> <div class="block">Resets the latch to its most recent initial count. Only one thread at a time should call this.</div> </li> </ul> <a name="reset-int-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>reset</h4> <pre>public&nbsp;void&nbsp;reset(int&nbsp;count)</pre> <div class="block">Resets the latch to the provided count. Only one thread at a time should call this.</div> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.ServletInvokingTaskCallback.html" title="class in com.google.appengine.tools.development.testing"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../../com/google/appengine/tools/development/testing/LocalURLFetchServiceTestConfig.html" title="class in com.google.appengine.tools.development.testing"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html" target="_top">Frames</a></li> <li><a href="LocalTaskQueueTestConfig.TaskCountDownLatch.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
kopaka7/Visual-Summary
appengine-java-sdk-1.9.27/docs/testing/javadoc/com/google/appengine/tools/development/testing/LocalTaskQueueTestConfig.TaskCountDownLatch.html
HTML
apache-2.0
22,270
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_77) on Mon May 23 19:36:49 EDT 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>org.apache.lucene.queryparser.flexible.standard.processors (Lucene 6.0.1 API)</title> <meta name="date" content="2016-05-23"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../../script.js"></script> </head> <body> <h1 class="bar"><a href="../../../../../../../org/apache/lucene/queryparser/flexible/standard/processors/package-summary.html" target="classFrame">org.apache.lucene.queryparser.flexible.standard.processors</a></h1> <div class="indexContainer"> <h2 title="Classes">Classes</h2> <ul title="Classes"> <li><a href="AllowLeadingWildcardProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">AllowLeadingWildcardProcessor</a></li> <li><a href="AnalyzerQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">AnalyzerQueryNodeProcessor</a></li> <li><a href="BooleanQuery2ModifierNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">BooleanQuery2ModifierNodeProcessor</a></li> <li><a href="BooleanSingleChildOptimizationQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">BooleanSingleChildOptimizationQueryNodeProcessor</a></li> <li><a href="BoostQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">BoostQueryNodeProcessor</a></li> <li><a href="DefaultPhraseSlopQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">DefaultPhraseSlopQueryNodeProcessor</a></li> <li><a href="FuzzyQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">FuzzyQueryNodeProcessor</a></li> <li><a href="LegacyNumericQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">LegacyNumericQueryNodeProcessor</a></li> <li><a href="LegacyNumericRangeQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">LegacyNumericRangeQueryNodeProcessor</a></li> <li><a href="LowercaseExpandedTermsQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">LowercaseExpandedTermsQueryNodeProcessor</a></li> <li><a href="MatchAllDocsQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">MatchAllDocsQueryNodeProcessor</a></li> <li><a href="MultiFieldQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">MultiFieldQueryNodeProcessor</a></li> <li><a href="MultiTermRewriteMethodProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">MultiTermRewriteMethodProcessor</a></li> <li><a href="OpenRangeQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">OpenRangeQueryNodeProcessor</a></li> <li><a href="PhraseSlopQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">PhraseSlopQueryNodeProcessor</a></li> <li><a href="PointQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">PointQueryNodeProcessor</a></li> <li><a href="PointRangeQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">PointRangeQueryNodeProcessor</a></li> <li><a href="RemoveEmptyNonLeafQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">RemoveEmptyNonLeafQueryNodeProcessor</a></li> <li><a href="StandardQueryNodeProcessorPipeline.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">StandardQueryNodeProcessorPipeline</a></li> <li><a href="TermRangeQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">TermRangeQueryNodeProcessor</a></li> <li><a href="WildcardQueryNodeProcessor.html" title="class in org.apache.lucene.queryparser.flexible.standard.processors" target="classFrame">WildcardQueryNodeProcessor</a></li> </ul> </div> </body> </html>
YorkUIRLab/irlab
lib/lucene-6.0.1/docs/queryparser/org/apache/lucene/queryparser/flexible/standard/processors/package-frame.html
HTML
apache-2.0
4,867
<!DOCTYPE HTML> <HTML> <head> <link rel="shortcut icon" href="https://www.wix.com/favicon.ico" type="image/x-icon"/> <link rel="apple-touch-icon" href="https://www.wix.com/favicon.ico" type="image/x-icon"/> <title> Problem5 </title> </head> <body bgcolor="black"> <font color="white" face="consolas"> <h3> </h3> </font> </body> </HTML>
lowjack1/lowjack1.github.io
Problem5.html
HTML
apache-2.0
417
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_162) on Wed Sep 25 20:20:40 PDT 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>com.fasterxml.jackson.jr.stree.util (jackson-jr-all 2.10.0 API)</title> <meta name="date" content="2019-09-25"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <h1 class="bar"><a href="../../../../../../com/fasterxml/jackson/jr/stree/util/package-summary.html" target="classFrame">com.fasterxml.jackson.jr.stree.util</a></h1> <div class="indexContainer"> <h2 title="Classes">Classes</h2> <ul title="Classes"> <li><a href="JrsTreeTraversingParser.html" title="class in com.fasterxml.jackson.jr.stree.util" target="classFrame">JrsTreeTraversingParser</a></li> </ul> </div> </body> </html>
FasterXML/jackson-jr
docs/javadoc/jr-all/2.10/com/fasterxml/jackson/jr/stree/util/package-frame.html
HTML
apache-2.0
1,016
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_67) on Sun Sep 07 15:29:33 CEST 2014 --> <title>Cassandra.AsyncClient.execute_cql_query_call (apache-cassandra API)</title> <meta name="date" content="2014-09-07"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Cassandra.AsyncClient.execute_cql_query_call (apache-cassandra API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/Cassandra.AsyncClient.execute_cql_query_call.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/apache/cassandra/thrift/Cassandra.AsyncClient.describe_version_call.html" title="class in org.apache.cassandra.thrift"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/apache/cassandra/thrift/Cassandra.AsyncClient.execute_cql3_query_call.html" title="class in org.apache.cassandra.thrift"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/thrift/Cassandra.AsyncClient.execute_cql_query_call.html" target="_top">Frames</a></li> <li><a href="Cassandra.AsyncClient.execute_cql_query_call.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li><a href="#nested_classes_inherited_from_class_org.apache.thrift.async.TAsyncMethodCall">Nested</a>&nbsp;|&nbsp;</li> <li><a href="#fields_inherited_from_class_org.apache.thrift.async.TAsyncMethodCall">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.cassandra.thrift</div> <h2 title="Class Cassandra.AsyncClient.execute_cql_query_call" class="title">Class Cassandra.AsyncClient.execute_cql_query_call</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.apache.thrift.async.TAsyncMethodCall</li> <li> <ul class="inheritance"> <li>org.apache.cassandra.thrift.Cassandra.AsyncClient.execute_cql_query_call</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Enclosing class:</dt> <dd><a href="../../../../org/apache/cassandra/thrift/Cassandra.AsyncClient.html" title="class in org.apache.cassandra.thrift">Cassandra.AsyncClient</a></dd> </dl> <hr> <br> <pre>public static class <span class="strong">Cassandra.AsyncClient.execute_cql_query_call</span> extends org.apache.thrift.async.TAsyncMethodCall</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== NESTED CLASS SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="nested_class_summary"> <!-- --> </a> <h3>Nested Class Summary</h3> <ul class="blockList"> <li class="blockList"><a name="nested_classes_inherited_from_class_org.apache.thrift.async.TAsyncMethodCall"> <!-- --> </a> <h3>Nested classes/interfaces inherited from class&nbsp;org.apache.thrift.async.TAsyncMethodCall</h3> <code>org.apache.thrift.async.TAsyncMethodCall.State</code></li> </ul> </li> </ul> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field_summary"> <!-- --> </a> <h3>Field Summary</h3> <ul class="blockList"> <li class="blockList"><a name="fields_inherited_from_class_org.apache.thrift.async.TAsyncMethodCall"> <!-- --> </a> <h3>Fields inherited from class&nbsp;org.apache.thrift.async.TAsyncMethodCall</h3> <code>client, transport</code></li> </ul> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../org/apache/cassandra/thrift/Cassandra.AsyncClient.execute_cql_query_call.html#Cassandra.AsyncClient.execute_cql_query_call(java.nio.ByteBuffer,%20org.apache.cassandra.thrift.Compression,%20org.apache.thrift.async.AsyncMethodCallback,%20org.apache.thrift.async.TAsyncClient,%20org.apache.thrift.protocol.TProtocolFactory,%20org.apache.thrift.transport.TNonblockingTransport)">Cassandra.AsyncClient.execute_cql_query_call</a></strong>(java.nio.ByteBuffer&nbsp;query, <a href="../../../../org/apache/cassandra/thrift/Compression.html" title="enum in org.apache.cassandra.thrift">Compression</a>&nbsp;compression, org.apache.thrift.async.AsyncMethodCallback&nbsp;resultHandler, org.apache.thrift.async.TAsyncClient&nbsp;client, org.apache.thrift.protocol.TProtocolFactory&nbsp;protocolFactory, org.apache.thrift.transport.TNonblockingTransport&nbsp;transport)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../org/apache/cassandra/thrift/CqlResult.html" title="class in org.apache.cassandra.thrift">CqlResult</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/thrift/Cassandra.AsyncClient.execute_cql_query_call.html#getResult()">getResult</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/thrift/Cassandra.AsyncClient.execute_cql_query_call.html#write_args(org.apache.thrift.protocol.TProtocol)">write_args</a></strong>(org.apache.thrift.protocol.TProtocol&nbsp;prot)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_org.apache.thrift.async.TAsyncMethodCall"> <!-- --> </a> <h3>Methods inherited from class&nbsp;org.apache.thrift.async.TAsyncMethodCall</h3> <code>getClient, getFrameBuffer, getSequenceId, getStartTime, getState, getTimeoutTimestamp, hasTimeout, isFinished, onError, prepareMethodCall, transition</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="Cassandra.AsyncClient.execute_cql_query_call(java.nio.ByteBuffer, org.apache.cassandra.thrift.Compression, org.apache.thrift.async.AsyncMethodCallback, org.apache.thrift.async.TAsyncClient, org.apache.thrift.protocol.TProtocolFactory, org.apache.thrift.transport.TNonblockingTransport)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>Cassandra.AsyncClient.execute_cql_query_call</h4> <pre>public&nbsp;Cassandra.AsyncClient.execute_cql_query_call(java.nio.ByteBuffer&nbsp;query, <a href="../../../../org/apache/cassandra/thrift/Compression.html" title="enum in org.apache.cassandra.thrift">Compression</a>&nbsp;compression, org.apache.thrift.async.AsyncMethodCallback&nbsp;resultHandler, org.apache.thrift.async.TAsyncClient&nbsp;client, org.apache.thrift.protocol.TProtocolFactory&nbsp;protocolFactory, org.apache.thrift.transport.TNonblockingTransport&nbsp;transport) throws org.apache.thrift.TException</pre> <dl><dt><span class="strong">Throws:</span></dt> <dd><code>org.apache.thrift.TException</code></dd></dl> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="write_args(org.apache.thrift.protocol.TProtocol)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>write_args</h4> <pre>public&nbsp;void&nbsp;write_args(org.apache.thrift.protocol.TProtocol&nbsp;prot) throws org.apache.thrift.TException</pre> <dl> <dt><strong>Specified by:</strong></dt> <dd><code>write_args</code>&nbsp;in class&nbsp;<code>org.apache.thrift.async.TAsyncMethodCall</code></dd> <dt><span class="strong">Throws:</span></dt> <dd><code>org.apache.thrift.TException</code></dd></dl> </li> </ul> <a name="getResult()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>getResult</h4> <pre>public&nbsp;<a href="../../../../org/apache/cassandra/thrift/CqlResult.html" title="class in org.apache.cassandra.thrift">CqlResult</a>&nbsp;getResult() throws <a href="../../../../org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a>, <a href="../../../../org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a>, <a href="../../../../org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a>, <a href="../../../../org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">SchemaDisagreementException</a>, org.apache.thrift.TException</pre> <dl><dt><span class="strong">Throws:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/thrift/InvalidRequestException.html" title="class in org.apache.cassandra.thrift">InvalidRequestException</a></code></dd> <dd><code><a href="../../../../org/apache/cassandra/thrift/UnavailableException.html" title="class in org.apache.cassandra.thrift">UnavailableException</a></code></dd> <dd><code><a href="../../../../org/apache/cassandra/thrift/TimedOutException.html" title="class in org.apache.cassandra.thrift">TimedOutException</a></code></dd> <dd><code><a href="../../../../org/apache/cassandra/thrift/SchemaDisagreementException.html" title="class in org.apache.cassandra.thrift">SchemaDisagreementException</a></code></dd> <dd><code>org.apache.thrift.TException</code></dd></dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/Cassandra.AsyncClient.execute_cql_query_call.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/apache/cassandra/thrift/Cassandra.AsyncClient.describe_version_call.html" title="class in org.apache.cassandra.thrift"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/apache/cassandra/thrift/Cassandra.AsyncClient.execute_cql3_query_call.html" title="class in org.apache.cassandra.thrift"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/thrift/Cassandra.AsyncClient.execute_cql_query_call.html" target="_top">Frames</a></li> <li><a href="Cassandra.AsyncClient.execute_cql_query_call.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li><a href="#nested_classes_inherited_from_class_org.apache.thrift.async.TAsyncMethodCall">Nested</a>&nbsp;|&nbsp;</li> <li><a href="#fields_inherited_from_class_org.apache.thrift.async.TAsyncMethodCall">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2014 The Apache Software Foundation</small></p> </body> </html>
varunmc/cassandra-server
apache-cassandra-2.1.0/javadoc/org/apache/cassandra/thrift/Cassandra.AsyncClient.execute_cql_query_call.html
HTML
apache-2.0
15,777
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Page Not Found</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> * { line-height: 1.2; margin: 0; } html { color: #888; display: table; font-family: sans-serif; height: 100%; text-align: center; width: 100%; } body { display: table-cell; vertical-align: middle; margin: 2em auto; } h1 { color: #555; font-size: 2em; font-weight: 400; } p { margin: 0 auto; width: 280px; } @media only screen and (max-width: 280px) { body, p { width: 95%; } h1 { font-size: 1.5em; margin: 0 0 0.3em; } } </style> </head> <body> <h1>Page Not Found</h1> <p>Sorry, but the page you were trying to view does not exist.</p> </body> </html> <!-- IE needs 512+ bytes: http://blogs.msdn.com/b/ieinternals/archive/2010/08/19/http-error-pages-in-internet-explorer.aspx -->
sureshg/spring-boot-demo
src/main/resources/static/404.html
HTML
apache-2.0
1,263
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /> <title>File: powervmtools.rb [RDoc Documentation]</title> <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" /> <script src="../js/jquery.js" type="text/javascript" charset="utf-8"></script> <script src="../js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script> <script src="../js/quicksearch.js" type="text/javascript" charset="utf-8"></script> <script src="../js/darkfish.js" type="text/javascript" charset="utf-8"></script> </head> <body class="file file-popup"> <div id="metadata"> <dl> <dt class="modified-date">Last Modified</dt> <dd class="modified-date">2015-10-14 13:31:57 +0200</dd> <dt class="requires">Requires</dt> <dd class="requires"> <ul> <li>pp</li> <li>net/ssh</li> </ul> </dd> </dl> </div> <div id="documentation"> <div class="description"> <h2>Description</h2> <table class="rdoc-list"><tr><td class="rdoc-term"><p>Author</p></td> <td> <p>Vianney Foucault (&lt;vianney.foucault@gmail.com&gt;)</p> </td></tr><tr><td class="rdoc-term"><p>Copyright</p></td> <td><table class="rdoc-list"><tr><td class="rdoc-term"><p>Copyright © 2015</p></td> <td> <p>The Author</p> </td></tr></table> </td></tr><tr><td class="rdoc-term"><p>License</p></td> <td> <p>Apache License, Version 2.0</p> </td></tr></table> <p>Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at</p> <pre>http://www.apache.org/licenses/LICENSE-2.0</pre> <p>Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.</p> </div> </div> </body> </html>
vfoucault/powervmtools
doc/lib/powervmtools_rb.html
HTML
apache-2.0
2,340
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Angular Chart.js Test</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> </head> <body> <div ng-app="anglesExample" ng-controller="angCtrl"> <div class="container" > <div class="row-fluid"> <div class="span6" style="margin:40px 0;"> <canvas linechart options="options" data="chart[0]" id="lineChart" width="600" height="80"></canvas> </div> </div> </div> </div> <script type="text/javascript" src="/js/angular-1.2.0.min.js"></script> <script type="text/javascript" src="/js/Chart.min.js"></script> <script type="text/javascript" src="angles.js"></script> <script src="chart0.js"></script> </body> </html>
evanx/chronic
src/chronic/web/test/chart0.html
HTML
apache-2.0
889
<body> JRuyi Thread Pool Executor Package Version ${org_jruyi_tpe_version} </body>
jruyi/jruyi-api
src/main/resources/org/jruyi/tpe/package.html
HTML
apache-2.0
84
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top" data-sly-use.navigation="org.adaptto.fsresource.core.model.Navigation"> <div class="container"> <a class="navbar-brand" href="#">adaptTo() 2017 FSResource Sample</a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarResponsive"> <ul class="navbar-nav ml-auto" data-sly-list.item="${navigation.items}"> <li class="nav-item ${item.active ? 'active' : ''}"> <a class="nav-link" href="${item.href}">${item.title}</a> </li> </ul> </div> </div> </nav>
adaptto/2017-ease-development-sling-fsresource
bundles/core/src/main/webapp/app-root/components/structure/navigation/navigation.html
HTML
apache-2.0
822
<!DOCTYPE html> <html lang="en"> <meta http-equiv="refresh" content="0; url=http://vytas.io/blog/java/page2/index.html"> <link rel="canonical" href="http://vytas.io/blog/java/page2/index.html" /> <body> <!-- Navigation --> <nav class="navbar navbar-default navbar-custom navbar-fixed-top"> <div class="container-fluid"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header page-scroll"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="/">ara dev</a> </div> </div> <!-- /.container --> </nav> <!-- Page Header --> <header class="intro-header" style="background-image: url('/img/1.png')"> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <div class="site-heading"> <h1>ara dev</h1> <hr class="small"> <span class="subheading">java code snippets</span> </div> </div> </div> </div> </header> <!-- Main Content --> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <div class="post-preview"> <a href="/blog/configuration/Java-EE-application-configuration-using-Aeonbits-Owner/"> <h2 class="post-title"> Java EE application configuration using Aeonbits Owner </h2> </a> <p class="post-meta">Posted by <a href="https://www.linkedin.com/in/vytasr" rel="nofollow">vr</a> on May 1, 2015</p> <a href="/tags/cdi" title="View posts tagged with &quot;cdi&quot;"><span class="label label-success"><i class="fa fa-tag"></i> cdi</span></a> <a href="/tags/java-ee" title="View posts tagged with &quot;java-ee&quot;"><span class="label label-success"><i class="fa fa-tag"></i> java-ee</span></a> <a href="/tags/owner" title="View posts tagged with &quot;owner&quot;"><span class="label label-success"><i class="fa fa-tag"></i> owner</span></a> <a href="/tags/configuration" title="View posts tagged with &quot;configuration&quot;"><span class="label label-success"><i class="fa fa-tag"></i> configuration</span></a> </div> <hr> <!-- Pager --> <ul class="pager"> <li class="previous"> <a href="/index.html">&larr; Newer Posts</a> </li> </ul> </div> </div> </div> <hr> <!-- Footer --> <footer> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <ul class="list-inline text-center"> <li> <a href="/feed.xml"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-rss fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="https://twitter.com/aracrown"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-twitter fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="https://www.facebook.com/aracrown"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-facebook fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="https://github.com/aracrown"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-github fa-stack-1x fa-inverse"></i> </span> </a> </li> </ul> <p class="copyright text-muted">Copyright &copy; ara dev 2015</p> </div> </div> </div> </footer> <!-- jQuery --> <script src="/js/jquery.min.js "></script> <!-- Bootstrap Core JavaScript --> <script src="/js/bootstrap.min.js "></script> <!-- Custom Theme JavaScript --> <script src="/js/clean-blog.min.js "></script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-6806880-3', 'auto'); ga('send', 'pageview'); </script> </body> </html>
aracrown/aracrown.github.io
_site/page2/index.html
HTML
apache-2.0
5,492
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_35) on Tue Oct 09 17:08:17 PDT 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> TypeIdResolver (jackson-databind 2.1.0 API) </TITLE> <META NAME="date" CONTENT="2012-10-09"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="TypeIdResolver (jackson-databind 2.1.0 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TypeIdResolver.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/TypeDeserializer.html" title="class in com.fasterxml.jackson.databind.jsontype"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/TypeResolverBuilder.html" title="interface in com.fasterxml.jackson.databind.jsontype"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/fasterxml/jackson/databind/jsontype/TypeIdResolver.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TypeIdResolver.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> com.fasterxml.jackson.databind.jsontype</FONT> <BR> Interface TypeIdResolver</H2> <DL> <DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/impl/ClassNameIdResolver.html" title="class in com.fasterxml.jackson.databind.jsontype.impl">ClassNameIdResolver</A>, <A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/impl/MinimalClassNameIdResolver.html" title="class in com.fasterxml.jackson.databind.jsontype.impl">MinimalClassNameIdResolver</A>, <A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/impl/TypeIdResolverBase.html" title="class in com.fasterxml.jackson.databind.jsontype.impl">TypeIdResolverBase</A>, <A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/impl/TypeNameIdResolver.html" title="class in com.fasterxml.jackson.databind.jsontype.impl">TypeNameIdResolver</A></DD> </DL> <HR> <DL> <DT><PRE>public interface <B>TypeIdResolver</B></DL> </PRE> <P> Interface that defines standard API for converting types to type identifiers and vice versa. Used by type resolvers (<A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/TypeSerializer.html" title="class in com.fasterxml.jackson.databind.jsontype"><CODE>TypeSerializer</CODE></A>, <A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/TypeDeserializer.html" title="class in com.fasterxml.jackson.databind.jsontype"><CODE>TypeDeserializer</CODE></A>) for converting between type and matching id; id is stored in JSON and needed for creating instances of proper subtypes when deserializing values. <P> <P> <HR> <P> <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://fasterxml.github.com/jackson-annotations/javadoc/2.1.0/com/fasterxml/jackson/annotation/JsonTypeInfo.Id.html?is-external=true" title="class or interface in com.fasterxml.jackson.annotation">JsonTypeInfo.Id</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/TypeIdResolver.html#getMechanism()">getMechanism</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Accessor for mechanism that this resolver uses for determining type id from type.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/TypeIdResolver.html#idFromBaseType()">idFromBaseType</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Method that can be called to figure out type id to use for instances of base type (declared type of property).</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/TypeIdResolver.html#idFromValue(java.lang.Object)">idFromValue</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Method called to serialize type of the type of given value as a String to include in serialized JSON content.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/TypeIdResolver.html#idFromValueAndType(java.lang.Object, java.lang.Class)">idFromValueAndType</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;?&gt;&nbsp;suggestedType)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Alternative method used for determining type from combination of value and type, using suggested type (that serializer provides) and possibly value of that type.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/TypeIdResolver.html#init(com.fasterxml.jackson.databind.JavaType)">init</A></B>(<A HREF="../../../../../com/fasterxml/jackson/databind/JavaType.html" title="class in com.fasterxml.jackson.databind">JavaType</A>&nbsp;baseType)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Method that will be called once before any type resolution calls; used to initialize instance with configuration.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../com/fasterxml/jackson/databind/JavaType.html" title="class in com.fasterxml.jackson.databind">JavaType</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/TypeIdResolver.html#typeFromId(java.lang.String)">typeFromId</A></B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;id)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Method called to resolve type from given type identifier.</TD> </TR> </TABLE> &nbsp; <P> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="init(com.fasterxml.jackson.databind.JavaType)"><!-- --></A><H3> init</H3> <PRE> void <B>init</B>(<A HREF="../../../../../com/fasterxml/jackson/databind/JavaType.html" title="class in com.fasterxml.jackson.databind">JavaType</A>&nbsp;baseType)</PRE> <DL> <DD>Method that will be called once before any type resolution calls; used to initialize instance with configuration. This is necessary since instances may be created via reflection, without ability to call specific constructor to pass in configuration settings. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>baseType</CODE> - Base type for which this id resolver instance is used</DL> </DD> </DL> <HR> <A NAME="idFromValue(java.lang.Object)"><!-- --></A><H3> idFromValue</H3> <PRE> <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>idFromValue</B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value)</PRE> <DL> <DD>Method called to serialize type of the type of given value as a String to include in serialized JSON content. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="idFromValueAndType(java.lang.Object, java.lang.Class)"><!-- --></A><H3> idFromValueAndType</H3> <PRE> <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>idFromValueAndType</B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;value, <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;?&gt;&nbsp;suggestedType)</PRE> <DL> <DD>Alternative method used for determining type from combination of value and type, using suggested type (that serializer provides) and possibly value of that type. Most common implementation will use suggested type as is. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="idFromBaseType()"><!-- --></A><H3> idFromBaseType</H3> <PRE> <A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A> <B>idFromBaseType</B>()</PRE> <DL> <DD>Method that can be called to figure out type id to use for instances of base type (declared type of property). This is usually only used for fallback handling, for cases where real type information is not available for some reason. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="typeFromId(java.lang.String)"><!-- --></A><H3> typeFromId</H3> <PRE> <A HREF="../../../../../com/fasterxml/jackson/databind/JavaType.html" title="class in com.fasterxml.jackson.databind">JavaType</A> <B>typeFromId</B>(<A HREF="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;id)</PRE> <DL> <DD>Method called to resolve type from given type identifier. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getMechanism()"><!-- --></A><H3> getMechanism</H3> <PRE> <A HREF="http://fasterxml.github.com/jackson-annotations/javadoc/2.1.0/com/fasterxml/jackson/annotation/JsonTypeInfo.Id.html?is-external=true" title="class or interface in com.fasterxml.jackson.annotation">JsonTypeInfo.Id</A> <B>getMechanism</B>()</PRE> <DL> <DD>Accessor for mechanism that this resolver uses for determining type id from type. Mostly informational; not required to be called or used. <P> <DD><DL> </DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TypeIdResolver.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/TypeDeserializer.html" title="class in com.fasterxml.jackson.databind.jsontype"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../com/fasterxml/jackson/databind/jsontype/TypeResolverBuilder.html" title="interface in com.fasterxml.jackson.databind.jsontype"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/fasterxml/jackson/databind/jsontype/TypeIdResolver.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TypeIdResolver.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2012 <a href="http://fasterxml.com/">FasterXML</a>. All Rights Reserved. </BODY> </HTML>
FasterXML/jackson-databind
docs/javadoc/2.1/com/fasterxml/jackson/databind/jsontype/TypeIdResolver.html
HTML
apache-2.0
17,489
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_25) on Sun Aug 21 17:10:48 CEST 2011 --> <TITLE> Uses of Class org.codemonkey.swiftsocketserver.ClientMessageToServer (Swift Socket Server) </TITLE> <META NAME="date" CONTENT="2011-08-21"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.codemonkey.swiftsocketserver.ClientMessageToServer (Swift Socket Server)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/codemonkey/swiftsocketserver/\class-useClientMessageToServer.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ClientMessageToServer.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.codemonkey.swiftsocketserver.ClientMessageToServer</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.codemonkey.swiftsocketserver"><B>org.codemonkey.swiftsocketserver</B></A></TD> <TD>Provides the classes to create a TCP / UDP socket server that communicates using custom serialized Java messages objects.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.codemonkey.swiftworldserver"><B>org.codemonkey.swiftworldserver</B></A></TD> <TD>Provides the classes to create a World Server, an extension of the Request Socket Server.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.codemonkey.swiftsocketserver"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A> in <A HREF="../../../../org/codemonkey/swiftsocketserver/package-summary.html">org.codemonkey.swiftsocketserver</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A> in <A HREF="../../../../org/codemonkey/swiftsocketserver/package-summary.html">org.codemonkey.swiftsocketserver</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>(package private) &nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServerByeBye.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServerByeBye</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Message that handles graceful disconnection attempts by the client.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>(package private) &nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServerInvalid.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServerInvalid</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Wrapper class of which instances substitute bad client-to-server messages.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>(package private) &nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServerPingPong.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServerPingPong</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Message that decodes pong datagrams.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../org/codemonkey/swiftsocketserver/package-summary.html">org.codemonkey.swiftsocketserver</A> with type parameters of type <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>private &nbsp;<A HREF="http://java.sun.com/javase/6/docs/api/java/util/LinkedList.html?is-external=true" title="class or interface in java.util">LinkedList</A>&lt;<A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A>&lt;?&gt;&gt;</CODE></FONT></TD> <TD><CODE><B>SwiftSocketServer.</B><B><A HREF="../../../../org/codemonkey/swiftsocketserver/SwiftSocketServer.html#clientMessages">clientMessages</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A queue that contains unprocessed messages from any client.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>private &nbsp;<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A>&lt;<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang">Integer</A>,<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A>&lt;?&gt;&gt;&gt;</CODE></FONT></TD> <TD><CODE><B>SwiftSocketServer.</B><B><A HREF="../../../../org/codemonkey/swiftsocketserver/SwiftSocketServer.html#clientMessageToServerTypeList">clientMessageToServerTypeList</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Used to identify a <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver"><CODE>ClientMessageToServer</CODE></A> type that can handle a binary packet.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>private &nbsp;<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</A>&lt;<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A>&lt;?&gt;&gt;,<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&gt;</CODE></FONT></TD> <TD><CODE><B>SwiftSocketServer.</B><B><A HREF="../../../../org/codemonkey/swiftsocketserver/SwiftSocketServer.html#executionContexts">executionContexts</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Contains context objects mapped directly against a executable client message type.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../org/codemonkey/swiftsocketserver/package-summary.html">org.codemonkey.swiftsocketserver</A> that return <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>private &nbsp;<A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A>&lt;?&gt;</CODE></FONT></TD> <TD><CODE><B>ClientHandler.InputHandler.</B><B><A HREF="../../../../org/codemonkey/swiftsocketserver/ClientHandler.InputHandler.html#createDecodedExecutableMessage(org.codemonkey.swiftsocketserver.ClientContext, int, java.lang.String)">createDecodedExecutableMessage</A></B>(<A HREF="../../../../org/codemonkey/swiftsocketserver/ClientContext.html" title="class in org.codemonkey.swiftsocketserver">ClientContext</A>&nbsp;clientContext, int&nbsp;messageId, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;messageContent)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates a <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver"><CODE>ClientMessageToServer</CODE></A> instance based on the message id and message content.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A>&lt;?&gt;</CODE></FONT></TD> <TD><CODE><B>ClientHandler.InputHandler.</B><B><A HREF="../../../../org/codemonkey/swiftsocketserver/ClientHandler.InputHandler.html#createDecodedExecutableMessage(org.codemonkey.swiftsocketserver.ClientContext, java.lang.String)">createDecodedExecutableMessage</A></B>(<A HREF="../../../../org/codemonkey/swiftsocketserver/ClientContext.html" title="class in org.codemonkey.swiftsocketserver">ClientContext</A>&nbsp;clientContext, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;clientMessage)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Parses the raw client message into a message id and message content.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>private &nbsp;<A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A>&lt;?&gt;</CODE></FONT></TD> <TD><CODE><B>ClientHandler.InputHandler.</B><B><A HREF="../../../../org/codemonkey/swiftsocketserver/ClientHandler.InputHandler.html#createInvalidMessage(java.lang.String, java.lang.Exception, java.lang.String)">createInvalidMessage</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;originalMessage, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang">Exception</A>&nbsp;failureCause, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;cause)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Generates a <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServerInvalid.html" title="class in org.codemonkey.swiftsocketserver"><CODE>ClientMessageToServerInvalid</CODE></A> object with the failure cause.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A>&lt;?&gt;</CODE></FONT></TD> <TD><CODE><B>SwiftSocketServer.</B><B><A HREF="../../../../org/codemonkey/swiftsocketserver/SwiftSocketServer.html#getNextClientMessage()">getNextClientMessage</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../org/codemonkey/swiftsocketserver/package-summary.html">org.codemonkey.swiftsocketserver</A> that return types with arguments of type <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A>&lt;?&gt;&gt;</CODE></FONT></TD> <TD><CODE><B>SwiftSocketServer.</B><B><A HREF="../../../../org/codemonkey/swiftsocketserver/SwiftSocketServer.html#getClientMessageToServerType(int)">getClientMessageToServerType</A></B>(int&nbsp;messageId)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../org/codemonkey/swiftsocketserver/package-summary.html">org.codemonkey.swiftsocketserver</A> with parameters of type <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>SwiftSocketServer.</B><B><A HREF="../../../../org/codemonkey/swiftsocketserver/SwiftSocketServer.html#addClientMessage(org.codemonkey.swiftsocketserver.ClientMessageToServer)">addClientMessage</A></B>(<A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A>&lt;?&gt;&nbsp;message)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adds a message to the queue for later processing, unless a known context object has been registered for this object in <A HREF="../../../../org/codemonkey/swiftsocketserver/SwiftSocketServer.html#executionContexts"><CODE>SwiftSocketServer.executionContexts</CODE></A>.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Method parameters in <A HREF="../../../../org/codemonkey/swiftsocketserver/package-summary.html">org.codemonkey.swiftsocketserver</A> with type arguments of type <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>SwiftSocketServer.</B><B><A HREF="../../../../org/codemonkey/swiftsocketserver/SwiftSocketServer.html#registerClientMessageToServerType(int, java.lang.Class)">registerClientMessageToServerType</A></B>(int&nbsp;messageId, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A>&lt;?&gt;&gt;&nbsp;messageType)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Registers a client-to-server message on the given unique identifier.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>SwiftSocketServer.</B><B><A HREF="../../../../org/codemonkey/swiftsocketserver/SwiftSocketServer.html#registerExecutionContext(java.lang.Class, java.lang.Object)">registerExecutionContext</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A>&lt;?&gt;&gt;&nbsp;messageType, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</A>&nbsp;executionContext)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Registers a default execution context for a client-to-server message type.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.codemonkey.swiftworldserver"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A> in <A HREF="../../../../org/codemonkey/swiftworldserver/package-summary.html">org.codemonkey.swiftworldserver</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Method parameters in <A HREF="../../../../org/codemonkey/swiftworldserver/package-summary.html">org.codemonkey.swiftworldserver</A> with type arguments of type <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>WorldServer.</B><B><A HREF="../../../../org/codemonkey/swiftworldserver/WorldServer.html#registerClientMessageToServerType(int, java.lang.Class)">registerClientMessageToServerType</A></B>(int&nbsp;messageId, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</A>&lt;? extends <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver">ClientMessageToServer</A>&lt;<A HREF="../../../../org/codemonkey/swiftworldserver/WorldServer.html" title="type parameter in WorldServer">T</A>&gt;&gt;&nbsp;messageType)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Registers a client-to-server message on the given unique identifier on the swift socket server, by delegating to <A HREF="../../../../org/codemonkey/swiftsocketserver/SwiftSocketServer.html#registerClientMessageToServerType(int, java.lang.Class)"><CODE>SwiftSocketServer.registerClientMessageToServerType(int, Class)</CODE></A>.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/codemonkey/swiftsocketserver/ClientMessageToServer.html" title="class in org.codemonkey.swiftsocketserver"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/codemonkey/swiftsocketserver/\class-useClientMessageToServer.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ClientMessageToServer.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright &#169; 2009 under Apache v2 license.</i> </BODY> </HTML>
bbottema/swift-socket-server
server/javadoc/developers/org/codemonkey/swiftsocketserver/class-use/ClientMessageToServer.html
HTML
apache-2.0
25,850
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>TabStopPropCollection.TabStopType (POI API Documentation)</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="TabStopPropCollection.TabStopType (POI API Documentation)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/TabStopPropCollection.TabStopType.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStop.html" title="class in org.apache.poi.hslf.model.textproperties"><span class="strong">PREV CLASS</span></a></li> <li><a href="../../../../../../org/apache/poi/hslf/model/textproperties/TextAlignmentProp.html" title="class in org.apache.poi.hslf.model.textproperties"><span class="strong">NEXT CLASS</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" target="_top">FRAMES</a></li> <li><a href="TabStopPropCollection.TabStopType.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>SUMMARY:&nbsp;</li> <li>NESTED&nbsp;|&nbsp;</li> <li><a href="#enum_constant_summary">ENUM CONSTANTS</a>&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#method_summary">METHOD</a></li> </ul> <ul class="subNavList"> <li>DETAIL:&nbsp;</li> <li><a href="#enum_constant_detail">ENUM CONSTANTS</a>&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#method_detail">METHOD</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <p class="subTitle">org.apache.poi.hslf.model.textproperties</p> <h2 title="Enum TabStopPropCollection.TabStopType" class="title">Enum TabStopPropCollection.TabStopType</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>java.lang.Enum&lt;<a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a>&gt;</li> <li> <ul class="inheritance"> <li>org.apache.poi.hslf.model.textproperties.TabStopPropCollection.TabStopType</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Serializable, java.lang.Comparable&lt;<a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a>&gt;</dd> </dl> <dl> <dt>Enclosing class:</dt> <dd><a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.html" title="class in org.apache.poi.hslf.model.textproperties">TabStopPropCollection</a></dd> </dl> <hr> <br> <pre>public static enum <strong>TabStopPropCollection.TabStopType</strong> extends java.lang.Enum&lt;<a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a>&gt;</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== ENUM CONSTANT SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="enum_constant_summary"> <!-- --> </a> <h3>Enum Constant Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation"> <caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Enum Constant and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html#CENTER">CENTER</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html#DECIMAL">DECIMAL</a></strong></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html#LEFT">LEFT</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html#RIGHT">RIGHT</a></strong></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html#fromRecordVal(int)">fromRecordVal</a></strong>(int&nbsp;val)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html#valueOf(java.lang.String)">valueOf</a></strong>(java.lang.String&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a>[]</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html#values()">values</a></strong>()</code> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Enum"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Enum</h3> <code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>getClass, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ ENUM CONSTANT DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="enum_constant_detail"> <!-- --> </a> <h3>Enum Constant Detail</h3> <a name="LEFT"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LEFT</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a> LEFT</pre> </li> </ul> <a name="CENTER"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>CENTER</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a> CENTER</pre> </li> </ul> <a name="RIGHT"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>RIGHT</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a> RIGHT</pre> </li> </ul> <a name="DECIMAL"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>DECIMAL</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a> DECIMAL</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="values()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>values</h4> <pre>public static&nbsp;<a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a>[]&nbsp;values()</pre> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows: <pre> for (TabStopPropCollection.TabStopType c : TabStopPropCollection.TabStopType.values()) &nbsp; System.out.println(c); </pre></div> <dl><dt><span class="strong">Returns:</span></dt><dd>an array containing the constants of this enum type, in the order they are declared</dd></dl> </li> </ul> <a name="valueOf(java.lang.String)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>valueOf</h4> <pre>public static&nbsp;<a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a>&nbsp;valueOf(java.lang.String&nbsp;name)</pre> <div class="block">Returns the enum constant of this type with the specified name. The string must match <i>exactly</i> an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the name of the enum constant to be returned.</dd> <dt><span class="strong">Returns:</span></dt><dd>the enum constant with the specified name</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd> <dd><code>java.lang.NullPointerException</code> - if the argument is null</dd></dl> </li> </ul> <a name="fromRecordVal(int)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>fromRecordVal</h4> <pre>public static&nbsp;<a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" title="enum in org.apache.poi.hslf.model.textproperties">TabStopPropCollection.TabStopType</a>&nbsp;fromRecordVal(int&nbsp;val)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/TabStopPropCollection.TabStopType.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStop.html" title="class in org.apache.poi.hslf.model.textproperties"><span class="strong">PREV CLASS</span></a></li> <li><a href="../../../../../../org/apache/poi/hslf/model/textproperties/TextAlignmentProp.html" title="class in org.apache.poi.hslf.model.textproperties"><span class="strong">NEXT CLASS</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html" target="_top">FRAMES</a></li> <li><a href="TabStopPropCollection.TabStopType.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>SUMMARY:&nbsp;</li> <li>NESTED&nbsp;|&nbsp;</li> <li><a href="#enum_constant_summary">ENUM CONSTANTS</a>&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#method_summary">METHOD</a></li> </ul> <ul class="subNavList"> <li>DETAIL:&nbsp;</li> <li><a href="#enum_constant_detail">ENUM CONSTANTS</a>&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#method_detail">METHOD</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright 2016 The Apache Software Foundation or its licensors, as applicable.</i> </small></p> </body> </html>
Aarhus-BSS/Aarhus-Research-Rebuilt
lib/poi-3.16-beta1/docs/apidocs/org/apache/poi/hslf/model/textproperties/TabStopPropCollection.TabStopType.html
HTML
apache-2.0
15,752
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_67) on Wed Oct 08 15:57:21 PDT 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class org.apache.hadoop.hbase.io.encoding.FastDiffDeltaEncoder.FastDiffSeekerState (HBase 0.98.7-hadoop2 API)</title> <meta name="date" content="2014-10-08"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.hadoop.hbase.io.encoding.FastDiffDeltaEncoder.FastDiffSeekerState (HBase 0.98.7-hadoop2 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/apache/hadoop/hbase/io/encoding/FastDiffDeltaEncoder.FastDiffSeekerState.html" title="class in org.apache.hadoop.hbase.io.encoding">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/apache/hadoop/hbase/io/encoding/class-use/FastDiffDeltaEncoder.FastDiffSeekerState.html" target="_top">Frames</a></li> <li><a href="FastDiffDeltaEncoder.FastDiffSeekerState.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.hadoop.hbase.io.encoding.FastDiffDeltaEncoder.FastDiffSeekerState" class="title">Uses of Class<br>org.apache.hadoop.hbase.io.encoding.FastDiffDeltaEncoder.FastDiffSeekerState</h2> </div> <div class="classUseContainer">No usage of org.apache.hadoop.hbase.io.encoding.FastDiffDeltaEncoder.FastDiffSeekerState</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/apache/hadoop/hbase/io/encoding/FastDiffDeltaEncoder.FastDiffSeekerState.html" title="class in org.apache.hadoop.hbase.io.encoding">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/apache/hadoop/hbase/io/encoding/class-use/FastDiffDeltaEncoder.FastDiffSeekerState.html" target="_top">Frames</a></li> <li><a href="FastDiffDeltaEncoder.FastDiffSeekerState.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> </body> </html>
gsoundar/mambo-ec2-deploy
packages/hbase-0.98.7-hadoop2/docs/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/FastDiffDeltaEncoder.FastDiffSeekerState.html
HTML
apache-2.0
4,926
<div class="box"> <div class="title"><span>KODExplorer pomeni Kaj?</span></div> <p>KODExplorer je na osnovi Web odprtokodne upravljanje spletni dokument, urejevalnik kode. Zagotavlja vrsto klasičnih oken uporabniškega vmesnika, niz spletno upravljanje dokumentov, predogled datotek, urejanje, nalaganje, prenesete, jo razširite spletno predvajanje glasbe. Vam omogoča, da se doseže razvoj spletnih neposredno v brskalniku, izvorno kodo datoteke predogled in uvajanje lastnik mesta in lokalno delovanje preprosto, hitro in varno izkušnjo.</p> <p><b>- oblikovanje -</b></p> <p>klasično tradicijo, opravljanje inovacij, da uporabnike s priročno, varna in enostavna za uporabo spletnega sistema za upravljanje v oblaku.</p> <p>vsakič, ko (če), kjer je (kje), ima po spletu kadarkoli želite (želite), da je vaše orodje za upravljanje (4W politika).</p> <p><b>- uporabniku usmerjene -</b></p> <p>trenutno KODExplorer sistem upravljanja v glavnem nahajajo na gostovanje osebni oblak, majhna podjetje za upravljanje oblak virov, upravljanje disk omrežja, upravljanje malih in srednje velikih mestih. Web Developer & Master (veterani): online editor, stisnjen backup, uvajanje, klasična operacija okna vmesnik, enostavno, da bi začeli in se znebite gostiteljice SSH, ukaza ftp kompleksne dolgočasno operacije.</p> <p>osebno zasebni oblak (novinec): Omrežje za upravljanje diskov sredstev, enako delovanje klasičnih oken vmesnik, lahko postavite omrežni pogon glasba brskanje, datotek screen, nalaganje in prenos hitro in enostavno.</p> </div> <div class="box"> <div class="title"><span>Lastnosti</span></div> <p>celovito upravljanje z dokumenti, zmogljiv spletni urejevalnik datotek</p> <p>kjerkoli že ste, lahko upravljanje datotek in na spletu zabave, spletno pisanje kode! Prav tako primerni za uporabo kot operacijski sistem.</p> <p>obsežna operacija pravica lokalne izkušnje presaditev, drag, izbor box, bližnjice, iskanje datotek (iskanje vsebine) ......</p> <p>izbira box, povleci gibanje, povleci in spusti nalaganje, spletni urejevalnik, video predvajalnik, razširjanje. Polna ajax performance jamstvo in izkušnje!</p> <p>vsaka funkcija neposredno brezhibno povezavo, v pogovornem obliki naloge upravljanja multi-naloga</p> <p>Editor podpira multi-dokument, podpora ZendCoding html, css, js višje kodiranje učinkovitost!</p> <p>odlična kitajska podpora, popačeno reševanje različnih situacij;</p> </div> <div class="box"> <div class="title"><span>odprtokodna tehnologija sprejetje</span></div> <p><b>1.Jquery:</b>jpuery (plugin: Hotkeys.ztree.contentmenu) js mainstream razvojnega okvira. Delovanje operacije Dom, BOM, delovanje css in Ajax paket</p> <p><b>2.ArtDialog:</b>lep dizajn, močne združljivosti brskalnik pogovorno widget. Torej, pop-up ročaj, dogodke, in prenos podatkov, da bi dobili boljše enotno upravljanje</p> <p><b>3.Ztree:</b>kontrolni seznam drevo, razširljivost je zelo močno drevo manipulacijo s podatki widget</p> <p><b>4.codemirror:</b>urejevalnik kode js plugins, podpira različne programske jezike za poudarjanje</p> <p><b>5.zendcoding:</b>a podpora HTML kode hitro pisanje vtičnikov. Poenostavlja opredelitev koda je napisana. Enostavno urejanje</p> <p><b>6.less:</b>učinkovit, razvoj css modela funkcionalno izboljšati front end CSS slogovnih ponovne . Enostavno urejanje</p> <p><b>7.SWFUpload:</b>Flash file upload</p> <p><b>8 .CMP4:</b>zelo dober flash player plugin medijskih datotek, podpora za pretakanje medijev, popularne glasbe orodje video predvajanja. Podpora za kožo, izjemno prilagodljive nastavitve. Dynamic seznam xml naložen. mms pretakanje medijev, RSTP open source licenco podpora medijev predvajanje</p> </div>
yoqi/exp
config/i18n/sl/about.html
HTML
apache-2.0
3,701
<html ⚡> <head></head> <body> <amp-img height=100 width=300 layout=responsive></amp-img> </body> </html>
google/amp-toolbox
optimizer/spec/transformers/ServerSideRendering/transforms_layout_responsive/input.html
HTML
apache-2.0
117
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script type="text/javascript" src="../../../../build/webui-lib.js"></script> </head> <body style="margin:0"> <div id="screen" ui="fw;fh"> <div id="content" ui="c"> <div ui="">Center long long</div> <div ui="ab:l">Double</div> </div> <div id="element" ui="ate:content;ch">At-Top-Equal</div> </div> <script> WebUI.start({ viewColors: true, showLogs: true, viewLogs: 'logs', timeRedraw: 0, dimens: { ms: 10, //margin small mm: 20, //margin medium mb: 100 //margin big }, }); </script> </body> </html>
SilicorniO/webui
src/__tests__/position/html/at-top-equal.html
HTML
apache-2.0
798
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_111) on Wed Jan 04 22:31:24 EST 2017 --> <title>FunctionSet</title> <meta name="date" content="2017-01-04"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="FunctionSet"; } } catch(err) { } //--> var methods = {"i0":10,"i1":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/FunctionSet.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/drip/spline/basis/ExponentialTensionSetParams.html" title="class in org.drip.spline.basis"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/drip/spline/basis/FunctionSetBuilder.html" title="class in org.drip.spline.basis"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/spline/basis/FunctionSet.html" target="_top">Frames</a></li> <li><a href="FunctionSet.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.drip.spline.basis</div> <h2 title="Class FunctionSet" class="title">Class FunctionSet</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.drip.spline.basis.FunctionSet</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Direct Known Subclasses:</dt> <dd><a href="../../../../org/drip/spline/bspline/SegmentBasisFunctionSet.html" title="class in org.drip.spline.bspline">SegmentBasisFunctionSet</a></dd> </dl> <hr> <br> <pre>public class <span class="typeNameLabel">FunctionSet</span> extends java.lang.Object</pre> <div class="block">This class implements the basis spline function set.</div> <dl> <dt><span class="simpleTagLabel">Author:</span></dt> <dd>Lakshmi Krishnamurthy</dd> </dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/drip/spline/basis/FunctionSet.html#FunctionSet-org.drip.function.definition.R1ToR1:A-">FunctionSet</a></span>(<a href="../../../../org/drip/function/definition/R1ToR1.html" title="class in org.drip.function.definition">R1ToR1</a>[]&nbsp;aAUResponseBasis)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code><a href="../../../../org/drip/function/definition/R1ToR1.html" title="class in org.drip.function.definition">R1ToR1</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/drip/spline/basis/FunctionSet.html#indexedBasisFunction-int-">indexedBasisFunction</a></span>(int&nbsp;iBasisIndex)</code> <div class="block">Retrieve the Basis Function identified by the specified Index</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/drip/spline/basis/FunctionSet.html#numBasis--">numBasis</a></span>()</code> <div class="block">Retrieve the Number of Basis Functions</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="FunctionSet-org.drip.function.definition.R1ToR1:A-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>FunctionSet</h4> <pre>public&nbsp;FunctionSet(<a href="../../../../org/drip/function/definition/R1ToR1.html" title="class in org.drip.function.definition">R1ToR1</a>[]&nbsp;aAUResponseBasis) throws java.lang.Exception</pre> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>aAUResponseBasis</code> - Array of the Basis Function Set</dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.Exception</code> - Thrown if Inputs are invalid</dd> </dl> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="numBasis--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>numBasis</h4> <pre>public&nbsp;int&nbsp;numBasis()</pre> <div class="block">Retrieve the Number of Basis Functions</div> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>Number of Basis Functions</dd> </dl> </li> </ul> <a name="indexedBasisFunction-int-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>indexedBasisFunction</h4> <pre>public&nbsp;<a href="../../../../org/drip/function/definition/R1ToR1.html" title="class in org.drip.function.definition">R1ToR1</a>&nbsp;indexedBasisFunction(int&nbsp;iBasisIndex)</pre> <div class="block">Retrieve the Basis Function identified by the specified Index</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>iBasisIndex</code> - The Basis Function Index</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>The Basis Function identified by the specified Index</dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/FunctionSet.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/drip/spline/basis/ExponentialTensionSetParams.html" title="class in org.drip.spline.basis"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/drip/spline/basis/FunctionSetBuilder.html" title="class in org.drip.spline.basis"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/spline/basis/FunctionSet.html" target="_top">Frames</a></li> <li><a href="FunctionSet.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
lakshmiDRIP/DRIP
Javadoc/org/drip/spline/basis/FunctionSet.html
HTML
apache-2.0
11,474
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8"> <title>CrashReportFileNameParser</title> <link href="../../../images/logo-icon.svg" rel="icon" type="image/svg"><script>var pathToRoot = "../../../";</script> <script>const storage = localStorage.getItem("dokka-dark-mode") const savedDarkMode = storage ? JSON.parse(storage) : false if(savedDarkMode === true){ document.getElementsByTagName("html")[0].classList.add("theme-dark") }</script> <script type="text/javascript" src="../../../scripts/sourceset_dependencies.js" async="async"></script><link href="../../../styles/style.css" rel="Stylesheet"><link href="../../../styles/jetbrains-mono.css" rel="Stylesheet"><link href="../../../styles/main.css" rel="Stylesheet"><link href="../../../styles/prism.css" rel="Stylesheet"><link href="../../../styles/logo-styles.css" rel="Stylesheet"><script type="text/javascript" src="../../../scripts/clipboard.js" async="async"></script><script type="text/javascript" src="../../../scripts/navigation-loader.js" async="async"></script><script type="text/javascript" src="../../../scripts/platform-content-handler.js" async="async"></script><script type="text/javascript" src="../../../scripts/main.js" defer="defer"></script><script type="text/javascript" src="../../../scripts/prism.js" async="async"></script> </head> <body> <div class="navigation-wrapper" id="navigation-wrapper"> <div id="leftToggler"><span class="icon-toggler"></span></div> <div class="library-name"><a href="../../../index.html">acra</a></div> <div></div> <div class="pull-right d-flex"> <div class="filter-section" id="filter-section"><button class="platform-tag platform-selector jvm-like" data-active="" data-filter=":acra-toast:dokkaHtml/release">androidJvm</button></div> <button id="theme-toggle-button"><span id="theme-toggle"></span></button> <div id="searchBar"></div> </div> </div> <div id="container"> <div id="leftColumn"> <div id="sideMenu"></div> </div> <div id="main"> <div class="main-content" id="content" pageIds="acra::org.acra.file/CrashReportFileNameParser/CrashReportFileNameParser/#/PointingToDeclaration//-535716451"> <div class="breadcrumbs"><a href="../../../index.html">acra</a>/<a href="../index.html">org.acra.file</a>/<a href="index.html">CrashReportFileNameParser</a>/<a href="-crash-report-file-name-parser.html">CrashReportFileNameParser</a></div> <div class="cover "> <h1 class="cover"><span>Crash</span><wbr></wbr><span>Report</span><wbr></wbr><span>File</span><wbr></wbr><span>Name</span><wbr></wbr><span><span>Parser</span></span></h1> </div> <div class="platform-hinted with-platform-tabs" data-platform-hinted="data-platform-hinted"> <div class="platform-bookmarks-row" data-toggle-list="data-toggle-list"><button class="platform-bookmark jvm-like" data-filterable-current=":acra-toast:dokkaHtml/release" data-filterable-set=":acra-toast:dokkaHtml/release" data-active="" data-toggle=":acra-toast:dokkaHtml/release">androidJvm</button></div> <div class="content sourceset-depenent-content" data-active="" data-togglable=":acra-toast:dokkaHtml/release"><div class="symbol monospace"><span class="token keyword"></span><span class="token keyword">fun </span><a href="-crash-report-file-name-parser.html"><span class="token function">CrashReportFileNameParser</span></a><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="top-right-position"><span class="copy-icon"></span><div class="copy-popup-wrapper popup-to-left"><span class="copy-popup-icon"></span><span>Content copied to clipboard</span></div></span></div></div> </div> </div> <div class="footer"><span class="go-to-top-icon"><a href="#content" id="go-to-top-link"></a></span><span>© 2022 Copyright</span><span class="pull-right"><span>Generated by </span><a href="https://github.com/Kotlin/dokka"><span>dokka</span><span class="padded-icon"></span></a></span></div> </div> </div> </body> </html>
ACRA/acra
web/static/javadoc/5.9.0-rc2/acra/org.acra.file/-crash-report-file-name-parser/-crash-report-file-name-parser.html
HTML
apache-2.0
4,163
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Fri Jun 22 04:34:21 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.config.elytron.ServiceLoaderSASLServerFactory (BOM: * : All 2.0.0.Final API)</title> <meta name="date" content="2018-06-22"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.wildfly.swarm.config.elytron.ServiceLoaderSASLServerFactory (BOM: * : All 2.0.0.Final API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.0.0.Final</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/elytron/class-use/ServiceLoaderSASLServerFactory.html" target="_top">Frames</a></li> <li><a href="ServiceLoaderSASLServerFactory.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.config.elytron.ServiceLoaderSASLServerFactory" class="title">Uses of Class<br>org.wildfly.swarm.config.elytron.ServiceLoaderSASLServerFactory</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.elytron">org.wildfly.swarm.config.elytron</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a> in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> that return <a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a></code></td> <td class="colLast"><span class="typeNameLabel">Elytron.ElytronResources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.ElytronResources.html#serviceLoaderSaslServerFactory-java.lang.String-">serviceLoaderSaslServerFactory</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;key)</code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> that return types with arguments of type <a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Elytron.ElytronResources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.ElytronResources.html#serviceLoaderSaslServerFactories--">serviceLoaderSaslServerFactories</a></span>()</code> <div class="block">Get the list of ServiceLoaderSASLServerFactory resources</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/Elytron.html" title="type parameter in Elytron">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Elytron.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.html#serviceLoaderSaslServerFactory-org.wildfly.swarm.config.elytron.ServiceLoaderSASLServerFactory-">serviceLoaderSaslServerFactory</a></span>(<a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a>&nbsp;value)</code> <div class="block">Add the ServiceLoaderSASLServerFactory object to the list of subresources</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Method parameters in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with type arguments of type <a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/Elytron.html" title="type parameter in Elytron">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Elytron.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.html#serviceLoaderSaslServerFactories-java.util.List-">serviceLoaderSaslServerFactories</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a>&gt;&nbsp;value)</code> <div class="block">Add all ServiceLoaderSASLServerFactory objects to this subresource</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.elytron"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a> in <a href="../../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a> with type parameters of type <a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a>&lt;T&gt;&gt;</span></code> <div class="block">A sasl server factory definition where the sasl server factory is an aggregation of factories identified using a ServiceLoader</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactoryConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactoryConsumer</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a>&lt;T&gt;&gt;</span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactorySupplier.html" title="interface in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactorySupplier</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a>&gt;</span></code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a> that return <a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a></code></td> <td class="colLast"><span class="typeNameLabel">ServiceLoaderSASLServerFactorySupplier.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactorySupplier.html#get--">get</a></span>()</code> <div class="block">Constructed instance of ServiceLoaderSASLServerFactory resource</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/elytron/ServiceLoaderSASLServerFactory.html" title="class in org.wildfly.swarm.config.elytron">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.0.0.Final</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/elytron/class-use/ServiceLoaderSASLServerFactory.html" target="_top">Frames</a></li> <li><a href="ServiceLoaderSASLServerFactory.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2.0.0.Final/apidocs/org/wildfly/swarm/config/elytron/class-use/ServiceLoaderSASLServerFactory.html
HTML
apache-2.0
16,411
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Thu Dec 05 05:02:13 MST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Package org.wildfly.swarm.spi.api (BOM: * : All 2.6.0.Final API)</title> <meta name="date" content="2019-12-05"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package org.wildfly.swarm.spi.api (BOM: * : All 2.6.0.Final API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.6.0.Final</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/spi/api/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package org.wildfly.swarm.spi.api" class="title">Uses of Package<br>org.wildfly.swarm.spi.api</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm">org.wildfly.swarm</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.asciidoctorj">org.wildfly.swarm.asciidoctorj</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.batch.jberet">org.wildfly.swarm.batch.jberet</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.bean.validation">org.wildfly.swarm.bean.validation</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.cassandra">org.wildfly.swarm.cassandra</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.cdi">org.wildfly.swarm.cdi</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.cdi.config">org.wildfly.swarm.cdi.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.cdi.jaxrsapi">org.wildfly.swarm.cdi.jaxrsapi</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.connector">org.wildfly.swarm.connector</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.container.config">org.wildfly.swarm.container.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.datasources">org.wildfly.swarm.datasources</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.discovery">org.wildfly.swarm.discovery</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.ee">org.wildfly.swarm.ee</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.ee.security">org.wildfly.swarm.ee.security</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.ejb">org.wildfly.swarm.ejb</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.ejb.mdb">org.wildfly.swarm.ejb.mdb</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.elytron">org.wildfly.swarm.elytron</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.fluentd">org.wildfly.swarm.fluentd</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.flyway">org.wildfly.swarm.flyway</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.infinispan">org.wildfly.swarm.infinispan</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.io">org.wildfly.swarm.io</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jaeger">org.wildfly.swarm.jaeger</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.javafx">org.wildfly.swarm.javafx</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jaxrs">org.wildfly.swarm.jaxrs</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jaxrs.btm">org.wildfly.swarm.jaxrs.btm</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jca">org.wildfly.swarm.jca</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jdr">org.wildfly.swarm.jdr</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jgroups">org.wildfly.swarm.jgroups</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jmx">org.wildfly.swarm.jmx</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jolokia">org.wildfly.swarm.jolokia</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jose">org.wildfly.swarm.jose</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jpa">org.wildfly.swarm.jpa</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jpa.persistence">org.wildfly.swarm.jpa.persistence</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jpa.spatial">org.wildfly.swarm.jpa.spatial</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.jsf">org.wildfly.swarm.jsf</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.keycloak">org.wildfly.swarm.keycloak</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.keycloak.mpjwt">org.wildfly.swarm.keycloak.mpjwt</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.keycloak.server">org.wildfly.swarm.keycloak.server</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.logging">org.wildfly.swarm.logging</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.logstash">org.wildfly.swarm.logstash</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.mail">org.wildfly.swarm.mail</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.management">org.wildfly.swarm.management</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.management.console">org.wildfly.swarm.management.console</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.messaging">org.wildfly.swarm.messaging</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.microprofile.config.fraction">org.wildfly.swarm.microprofile.config.fraction</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.microprofile.faulttolerance">org.wildfly.swarm.microprofile.faulttolerance</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.microprofile.health">org.wildfly.swarm.microprofile.health</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.microprofile.jwtauth">org.wildfly.swarm.microprofile.jwtauth</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.microprofile.metrics">org.wildfly.swarm.microprofile.metrics</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.microprofile.openapi">org.wildfly.swarm.microprofile.openapi</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.microprofile.restclient">org.wildfly.swarm.microprofile.restclient</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.mod_cluster">org.wildfly.swarm.mod_cluster</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.mongodb">org.wildfly.swarm.mongodb</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.monitor">org.wildfly.swarm.monitor</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.mpopentracing">org.wildfly.swarm.mpopentracing</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.msc">org.wildfly.swarm.msc</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.mvc">org.wildfly.swarm.mvc</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.naming">org.wildfly.swarm.naming</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.neo4j">org.wildfly.swarm.neo4j</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.netflix.hystrix">org.wildfly.swarm.netflix.hystrix</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.netflix.ribbon">org.wildfly.swarm.netflix.ribbon</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.netflix.ribbon.secured">org.wildfly.swarm.netflix.ribbon.secured</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.netflix.ribbon.secured.client">org.wildfly.swarm.netflix.ribbon.secured.client</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.opentracing">org.wildfly.swarm.opentracing</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.opentracing.tracer">org.wildfly.swarm.opentracing.tracer</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.orientdb">org.wildfly.swarm.orientdb</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.remoting">org.wildfly.swarm.remoting</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.request.controller">org.wildfly.swarm.request.controller</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.resource.adapters">org.wildfly.swarm.resource.adapters</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.scanner">org.wildfly.swarm.scanner</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.security">org.wildfly.swarm.security</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.spi.api">org.wildfly.swarm.spi.api</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.spi.api.config">org.wildfly.swarm.spi.api.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.spring">org.wildfly.swarm.spring</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.swagger">org.wildfly.swarm.swagger</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.swagger.webapp">org.wildfly.swarm.swagger.webapp</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.topology">org.wildfly.swarm.topology</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.topology.consul">org.wildfly.swarm.topology.consul</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.topology.jgroups">org.wildfly.swarm.topology.jgroups</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.topology.webapp">org.wildfly.swarm.topology.webapp</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.transactions">org.wildfly.swarm.transactions</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.undertow">org.wildfly.swarm.undertow</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.undertow.descriptors">org.wildfly.swarm.undertow.descriptors</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.vertx">org.wildfly.swarm.vertx</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.webservices">org.wildfly.swarm.webservices</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/package-summary.html">org.wildfly.swarm</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/OutboundSocketBinding.html#org.wildfly.swarm">OutboundSocketBinding</a> <div class="block">An outbound socket-binding.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/SocketBinding.html#org.wildfly.swarm">SocketBinding</a> <div class="block">An inbound socket-binding.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/StageConfig.html#org.wildfly.swarm">StageConfig</a> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.asciidoctorj"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/asciidoctorj/package-summary.html">org.wildfly.swarm.asciidoctorj</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.asciidoctorj">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.batch.jberet"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/batch/jberet/package-summary.html">org.wildfly.swarm.batch.jberet</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.batch.jberet">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.bean.validation"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/bean/validation/package-summary.html">org.wildfly.swarm.bean.validation</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.bean.validation">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.cassandra"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/cassandra/package-summary.html">org.wildfly.swarm.cassandra</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.cassandra">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.cdi"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/cdi/package-summary.html">org.wildfly.swarm.cdi</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.cdi">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.cdi.config"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/cdi/config/package-summary.html">org.wildfly.swarm.cdi.config</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.cdi.config">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.cdi.jaxrsapi"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/cdi/jaxrsapi/package-summary.html">org.wildfly.swarm.cdi.jaxrsapi</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.cdi.jaxrsapi">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.connector"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/connector/package-summary.html">org.wildfly.swarm.connector</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.connector">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.container.config"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/container/config/package-summary.html">org.wildfly.swarm.container.config</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/ConfigurationFilter.html#org.wildfly.swarm.container.config">ConfigurationFilter</a> <div class="block">SPI for user-provided configuration value filtering.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/StageConfig.html#org.wildfly.swarm.container.config">StageConfig</a> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.datasources"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/datasources/package-summary.html">org.wildfly.swarm.datasources</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.datasources">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.discovery"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/discovery/package-summary.html">org.wildfly.swarm.discovery</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.discovery">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.ee"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/ee/package-summary.html">org.wildfly.swarm.ee</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.ee">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.ee.security"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/ee/security/package-summary.html">org.wildfly.swarm.ee.security</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.ee.security">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.ejb"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/ejb/package-summary.html">org.wildfly.swarm.ejb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.ejb">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.ejb.mdb"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/ejb/mdb/package-summary.html">org.wildfly.swarm.ejb.mdb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.ejb.mdb">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.elytron"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/elytron/package-summary.html">org.wildfly.swarm.elytron</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.elytron">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.fluentd"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/fluentd/package-summary.html">org.wildfly.swarm.fluentd</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.fluentd">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.flyway"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/flyway/package-summary.html">org.wildfly.swarm.flyway</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.flyway">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.infinispan"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/infinispan/package-summary.html">org.wildfly.swarm.infinispan</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.infinispan">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.io"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/io/package-summary.html">org.wildfly.swarm.io</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.io">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jaeger"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jaeger/package-summary.html">org.wildfly.swarm.jaeger</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jaeger">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.javafx"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/javafx/package-summary.html">org.wildfly.swarm.javafx</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.javafx">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jaxrs"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jaxrs/package-summary.html">org.wildfly.swarm.jaxrs</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/DependenciesContainer.html#org.wildfly.swarm.jaxrs">DependenciesContainer</a> <div class="block">Archive mix-in capable of supporting <code>addAllDependencies</code></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jaxrs">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/JBossDeploymentStructureContainer.html#org.wildfly.swarm.jaxrs">JBossDeploymentStructureContainer</a> <div class="block">An archive mix-in capable of adding JBoss Module dependencies.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/MarkerContainer.html#org.wildfly.swarm.jaxrs">MarkerContainer</a> <div class="block">Utility to track internal markers regarding operations performed upon archives.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jaxrs.btm"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jaxrs/btm/package-summary.html">org.wildfly.swarm.jaxrs.btm</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jaxrs.btm">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jca"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jca/package-summary.html">org.wildfly.swarm.jca</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jca">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jdr"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jdr/package-summary.html">org.wildfly.swarm.jdr</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jdr">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jgroups"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jgroups/package-summary.html">org.wildfly.swarm.jgroups</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jgroups">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jmx"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jmx/package-summary.html">org.wildfly.swarm.jmx</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jmx">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jolokia"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jolokia/package-summary.html">org.wildfly.swarm.jolokia</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jolokia">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jose"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jose/package-summary.html">org.wildfly.swarm.jose</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jose">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jpa"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jpa/package-summary.html">org.wildfly.swarm.jpa</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jpa">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jpa.persistence"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jpa/persistence/package-summary.html">org.wildfly.swarm.jpa.persistence</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jpa.persistence">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jpa.spatial"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jpa/spatial/package-summary.html">org.wildfly.swarm.jpa.spatial</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jpa.spatial">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.jsf"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/jsf/package-summary.html">org.wildfly.swarm.jsf</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.jsf">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.keycloak"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/keycloak/package-summary.html">org.wildfly.swarm.keycloak</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.keycloak">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.keycloak.mpjwt"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/keycloak/mpjwt/package-summary.html">org.wildfly.swarm.keycloak.mpjwt</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.keycloak.mpjwt">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.keycloak.server"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/keycloak/server/package-summary.html">org.wildfly.swarm.keycloak.server</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.keycloak.server">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.logging"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/logging/package-summary.html">org.wildfly.swarm.logging</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.logging">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.logstash"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/logstash/package-summary.html">org.wildfly.swarm.logstash</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.logstash">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.mail"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/mail/package-summary.html">org.wildfly.swarm.mail</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.mail">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.management"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/management/package-summary.html">org.wildfly.swarm.management</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.management">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.management.console"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/management/console/package-summary.html">org.wildfly.swarm.management.console</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.management.console">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.messaging"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/messaging/package-summary.html">org.wildfly.swarm.messaging</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.messaging">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.microprofile.config.fraction"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/microprofile/config/fraction/package-summary.html">org.wildfly.swarm.microprofile.config.fraction</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.microprofile.config.fraction">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.microprofile.faulttolerance"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/microprofile/faulttolerance/package-summary.html">org.wildfly.swarm.microprofile.faulttolerance</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.microprofile.faulttolerance">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.microprofile.health"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/microprofile/health/package-summary.html">org.wildfly.swarm.microprofile.health</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.microprofile.health">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.microprofile.jwtauth"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/microprofile/jwtauth/package-summary.html">org.wildfly.swarm.microprofile.jwtauth</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Defaultable.html#org.wildfly.swarm.microprofile.jwtauth">Defaultable</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.microprofile.jwtauth">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.microprofile.metrics"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/microprofile/metrics/package-summary.html">org.wildfly.swarm.microprofile.metrics</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.microprofile.metrics">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.microprofile.openapi"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/microprofile/openapi/package-summary.html">org.wildfly.swarm.microprofile.openapi</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.microprofile.openapi">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.microprofile.restclient"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/microprofile/restclient/package-summary.html">org.wildfly.swarm.microprofile.restclient</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.microprofile.restclient">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.mod_cluster"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/mod_cluster/package-summary.html">org.wildfly.swarm.mod_cluster</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.mod_cluster">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.mongodb"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/mongodb/package-summary.html">org.wildfly.swarm.mongodb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.mongodb">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.monitor"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/monitor/package-summary.html">org.wildfly.swarm.monitor</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.monitor">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.mpopentracing"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/mpopentracing/package-summary.html">org.wildfly.swarm.mpopentracing</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.mpopentracing">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.msc"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/msc/package-summary.html">org.wildfly.swarm.msc</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.msc">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.mvc"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/mvc/package-summary.html">org.wildfly.swarm.mvc</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.mvc">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.naming"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/naming/package-summary.html">org.wildfly.swarm.naming</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.naming">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.neo4j"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/neo4j/package-summary.html">org.wildfly.swarm.neo4j</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.neo4j">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.netflix.hystrix"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/netflix/hystrix/package-summary.html">org.wildfly.swarm.netflix.hystrix</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.netflix.hystrix">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.netflix.ribbon"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/netflix/ribbon/package-summary.html">org.wildfly.swarm.netflix.ribbon</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.netflix.ribbon">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.netflix.ribbon.secured"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/netflix/ribbon/secured/package-summary.html">org.wildfly.swarm.netflix.ribbon.secured</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.netflix.ribbon.secured">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.netflix.ribbon.secured.client"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/netflix/ribbon/secured/client/package-summary.html">org.wildfly.swarm.netflix.ribbon.secured.client</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.netflix.ribbon.secured.client">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.opentracing"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/opentracing/package-summary.html">org.wildfly.swarm.opentracing</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.opentracing">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.opentracing.tracer"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/opentracing/tracer/package-summary.html">org.wildfly.swarm.opentracing.tracer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.opentracing.tracer">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.orientdb"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/orientdb/package-summary.html">org.wildfly.swarm.orientdb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.orientdb">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.remoting"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/remoting/package-summary.html">org.wildfly.swarm.remoting</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.remoting">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.request.controller"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/request/controller/package-summary.html">org.wildfly.swarm.request.controller</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.request.controller">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.resource.adapters"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/resource/adapters/package-summary.html">org.wildfly.swarm.resource.adapters</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.resource.adapters">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.scanner"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/scanner/package-summary.html">org.wildfly.swarm.scanner</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.scanner">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.security"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/security/package-summary.html">org.wildfly.swarm.security</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.security">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.spi.api"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/ArtifactLookup.html#org.wildfly.swarm.spi.api">ArtifactLookup</a> <div class="block">Manager capable of locating artifacts from the application build.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Defaultable.html#org.wildfly.swarm.spi.api">Defaultable</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.spi.api">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/JBossDeploymentStructureAsset.html#org.wildfly.swarm.spi.api">JBossDeploymentStructureAsset</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/JBossDeploymentStructureContainer.html#org.wildfly.swarm.spi.api">JBossDeploymentStructureContainer</a> <div class="block">An archive mix-in capable of adding JBoss Module dependencies.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/MarkerContainer.html#org.wildfly.swarm.spi.api">MarkerContainer</a> <div class="block">Utility to track internal markers regarding operations performed upon archives.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Module.html#org.wildfly.swarm.spi.api">Module</a> <div class="block">JBoss Modules module descriptor.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Module.ServiceHandling.html#org.wildfly.swarm.spi.api">Module.ServiceHandling</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/OutboundSocketBinding.html#org.wildfly.swarm.spi.api">OutboundSocketBinding</a> <div class="block">An outbound socket-binding.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/SocketBinding.html#org.wildfly.swarm.spi.api">SocketBinding</a> <div class="block">An inbound socket-binding.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/SocketBindingGroup.html#org.wildfly.swarm.spi.api">SocketBindingGroup</a> <div class="block">A group of inbound and outbound socket-bindings.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.spi.api.config"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/spi/api/config/package-summary.html">org.wildfly.swarm.spi.api.config</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/StageConfig.html#org.wildfly.swarm.spi.api.config">StageConfig</a> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.spring"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/spring/package-summary.html">org.wildfly.swarm.spring</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.spring">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.swagger"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/swagger/package-summary.html">org.wildfly.swarm.swagger</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.swagger">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.swagger.webapp"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/swagger/webapp/package-summary.html">org.wildfly.swarm.swagger.webapp</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.swagger.webapp">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.topology"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/topology/package-summary.html">org.wildfly.swarm.topology</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.topology">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.topology.consul"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/topology/consul/package-summary.html">org.wildfly.swarm.topology.consul</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.topology.consul">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.topology.jgroups"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/topology/jgroups/package-summary.html">org.wildfly.swarm.topology.jgroups</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.topology.jgroups">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.topology.webapp"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/topology/webapp/package-summary.html">org.wildfly.swarm.topology.webapp</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.topology.webapp">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.transactions"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/transactions/package-summary.html">org.wildfly.swarm.transactions</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.transactions">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.undertow"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/undertow/package-summary.html">org.wildfly.swarm.undertow</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/DependenciesContainer.html#org.wildfly.swarm.undertow">DependenciesContainer</a> <div class="block">Archive mix-in capable of supporting <code>addAllDependencies</code></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.undertow">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/JBossDeploymentStructureContainer.html#org.wildfly.swarm.undertow">JBossDeploymentStructureContainer</a> <div class="block">An archive mix-in capable of adding JBoss Module dependencies.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/MarkerContainer.html#org.wildfly.swarm.undertow">MarkerContainer</a> <div class="block">Utility to track internal markers regarding operations performed upon archives.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.undertow.descriptors"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/undertow/descriptors/package-summary.html">org.wildfly.swarm.undertow.descriptors</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/JBossDeploymentStructureContainer.html#org.wildfly.swarm.undertow.descriptors">JBossDeploymentStructureContainer</a> <div class="block">An archive mix-in capable of adding JBoss Module dependencies.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.vertx"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/vertx/package-summary.html">org.wildfly.swarm.vertx</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.vertx">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.webservices"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/spi/api/package-summary.html">org.wildfly.swarm.spi.api</a> used by <a href="../../../../../org/wildfly/swarm/webservices/package-summary.html">org.wildfly.swarm.webservices</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/spi/api/class-use/Fraction.html#org.wildfly.swarm.webservices">Fraction</a> <div class="block">Root of a tree of configuration for a particular subset of functionality.</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.6.0.Final</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/spi/api/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2.6.0.Final/apidocs/org/wildfly/swarm/spi/api/package-use.html
HTML
apache-2.0
97,991
<!DOCTYPE html> <html lang="de"> <head> <title>Play Basics Übersicht</title> </head> <body> <h2>Beispiele zu Play</h2> <ul> <li><a href="/assets/html/start.html">Statische Seite</a></li> <li><a href="/example/output">Beispiel-Ausgabe</a></li> <li><a href="/example/counter">Besuchszähler</a></li> <li><a href="/example/simpletemplate">Einfaches Template</a></li> <li><a href="/shoplist/">MVC Beispiel - Einkaufsliste. Mit Formularvalidierung und CRUD</a></li> <li><a href="/assets/html/loginform.html">Login-Formular Beispiel mit Bootstrap</a></li> <li><a href="/shoplist/">TODO: Session, Login</a></li> </ul> </body>
GreatBounty/webtechWS1314
hello-play/public/html/start.html
HTML
apache-2.0
670
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Tue Dec 12 12:37:18 MST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.wildfly.swarm.config.resource.adapters.resource_adapter.AdminObjectsSupplier (BOM: * : All 2012.12.0 API)</title> <meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.wildfly.swarm.config.resource.adapters.resource_adapter.AdminObjectsSupplier (BOM: * : All 2012.12.0 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../org/wildfly/swarm/config/resource/adapters/resource_adapter/AdminObjectsSupplier.html" title="interface in org.wildfly.swarm.config.resource.adapters.resource_adapter">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2012.12.0</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?org/wildfly/swarm/config/resource/adapters/resource_adapter/class-use/AdminObjectsSupplier.html" target="_top">Frames</a></li> <li><a href="AdminObjectsSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.resource.adapters.resource_adapter.AdminObjectsSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.resource.adapters.resource_adapter.AdminObjectsSupplier</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../../../org/wildfly/swarm/config/resource/adapters/resource_adapter/AdminObjectsSupplier.html" title="interface in org.wildfly.swarm.config.resource.adapters.resource_adapter">AdminObjectsSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.resource.adapters">org.wildfly.swarm.config.resource.adapters</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.resource.adapters"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../../org/wildfly/swarm/config/resource/adapters/resource_adapter/AdminObjectsSupplier.html" title="interface in org.wildfly.swarm.config.resource.adapters.resource_adapter">AdminObjectsSupplier</a> in <a href="../../../../../../../../org/wildfly/swarm/config/resource/adapters/package-summary.html">org.wildfly.swarm.config.resource.adapters</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../../org/wildfly/swarm/config/resource/adapters/package-summary.html">org.wildfly.swarm.config.resource.adapters</a> with parameters of type <a href="../../../../../../../../org/wildfly/swarm/config/resource/adapters/resource_adapter/AdminObjectsSupplier.html" title="interface in org.wildfly.swarm.config.resource.adapters.resource_adapter">AdminObjectsSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapter.html" title="type parameter in ResourceAdapter">T</a></code></td> <td class="colLast"><span class="typeNameLabel">ResourceAdapter.</span><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapter.html#adminObjects-org.wildfly.swarm.config.resource.adapters.resource_adapter.AdminObjectsSupplier-">adminObjects</a></span>(<a href="../../../../../../../../org/wildfly/swarm/config/resource/adapters/resource_adapter/AdminObjectsSupplier.html" title="interface in org.wildfly.swarm.config.resource.adapters.resource_adapter">AdminObjectsSupplier</a>&nbsp;supplier)</code> <div class="block">Install a supplied AdminObjects object to the list of subresources</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../org/wildfly/swarm/config/resource/adapters/resource_adapter/AdminObjectsSupplier.html" title="interface in org.wildfly.swarm.config.resource.adapters.resource_adapter">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2012.12.0</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?org/wildfly/swarm/config/resource/adapters/resource_adapter/class-use/AdminObjectsSupplier.html" target="_top">Frames</a></li> <li><a href="AdminObjectsSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2012.12.0/apidocs/org/wildfly/swarm/config/resource/adapters/resource_adapter/class-use/AdminObjectsSupplier.html
HTML
apache-2.0
8,346
<html> <body> 包含了封装页面处理逻辑的接口PageProcessor和一个实现类SimplePageProcessor。实现PageProcessor即可定制一个自己的爬虫。 </body> </html>
yuany/en-webmagic
webmagic-core/src/main/java/us/codecraft/webmagic/processor/package.html
HTML
apache-2.0
183
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_55) on Wed Sep 24 06:08:04 EDT 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.apache.solr.internal.csv.CSVUtils (Solr 4.10.1 API)</title> <meta name="date" content="2014-09-24"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.solr.internal.csv.CSVUtils (Solr 4.10.1 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/solr/internal/csv/CSVUtils.html" title="class in org.apache.solr.internal.csv">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/solr/internal/csv/class-use/CSVUtils.html" target="_top">Frames</a></li> <li><a href="CSVUtils.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.solr.internal.csv.CSVUtils" class="title">Uses of Class<br>org.apache.solr.internal.csv.CSVUtils</h2> </div> <div class="classUseContainer">No usage of org.apache.solr.internal.csv.CSVUtils</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/solr/internal/csv/CSVUtils.html" title="class in org.apache.solr.internal.csv">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/solr/internal/csv/class-use/CSVUtils.html" target="_top">Frames</a></li> <li><a href="CSVUtils.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &copy; 2000-2014 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </small></p> </body> </html>
pulipulichen/ir-practice-solr
docs/solr-core/org/apache/solr/internal/csv/class-use/CSVUtils.html
HTML
apache-2.0
4,802
<! doctype html> <html> <head> <title>Salary</title> </head> <body> <table> <tr> <td>Basic Salary</td><td><input type="text" id="n1" placeholder="Enter Basic Salary Here" /></td> </tr> <tr><td>DA</td><td><input type="text" id="n2" placeholder="DA will Display Here" /></td> </tr> <tr><td>HRA</td><td><input type="text" id="n3" placeholder="HRA will Display Here" /></td> </tr> <tr><td><input type="Submit" id="btn" onclick="Add()"value="Calculate" /></td> <td><input type="text" id="result" /></td> </tr> </table> <script> function Add(){ var v1=parseInt(document.getElementById("n1").value); var v2=.2*v1; var v3=.4*v1; var v4=v1+v2+v3; document.getElementById("n2").value=v2; document.getElementById("n3").value=v3; document.getElementById("result").value=v4; } </script> </body> </html>
AakashOfficial/College-Work
Web Technology/College/Salary.html
HTML
apache-2.0
831
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_51) on Thu Apr 28 18:37:36 UTC 2016 --> <title>org.apache.cassandra.db.commitlog (apache-cassandra API)</title> <meta name="date" content="2016-04-28"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.apache.cassandra.db.commitlog (apache-cassandra API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/cassandra/db/columniterator/package-summary.html">Prev Package</a></li> <li><a href="../../../../../org/apache/cassandra/db/compaction/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/cassandra/db/commitlog/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;org.apache.cassandra.db.commitlog</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Interface Summary table, listing interfaces, and an explanation"> <caption><span>Interface Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Interface</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/CommitLogMBean.html" title="interface in org.apache.cassandra.db.commitlog">CommitLogMBean</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/AbstractCommitLogService.html" title="class in org.apache.cassandra.db.commitlog">AbstractCommitLogService</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/CommitLog.html" title="class in org.apache.cassandra.db.commitlog">CommitLog</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/CommitLogArchiver.html" title="class in org.apache.cassandra.db.commitlog">CommitLogArchiver</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/CommitLogDescriptor.html" title="class in org.apache.cassandra.db.commitlog">CommitLogDescriptor</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/CommitLogReplayer.html" title="class in org.apache.cassandra.db.commitlog">CommitLogReplayer</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/CommitLogSegment.html" title="class in org.apache.cassandra.db.commitlog">CommitLogSegment</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/CommitLogSegment.CommitLogSegmentFileComparator.html" title="class in org.apache.cassandra.db.commitlog">CommitLogSegment.CommitLogSegmentFileComparator</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/CommitLogSegmentManager.html" title="class in org.apache.cassandra.db.commitlog">CommitLogSegmentManager</a></td> <td class="colLast"> <div class="block">Performs eager-creation of commit log segments in a background thread.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/CompressedSegment.html" title="class in org.apache.cassandra.db.commitlog">CompressedSegment</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/MemoryMappedSegment.html" title="class in org.apache.cassandra.db.commitlog">MemoryMappedSegment</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/ReplayPosition.html" title="class in org.apache.cassandra.db.commitlog">ReplayPosition</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/ReplayPosition.ReplayPositionSerializer.html" title="class in org.apache.cassandra.db.commitlog">ReplayPosition.ReplayPositionSerializer</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Exception Summary table, listing exceptions, and an explanation"> <caption><span>Exception Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Exception</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/apache/cassandra/db/commitlog/CommitLogReplayer.CommitLogReplayException.html" title="class in org.apache.cassandra.db.commitlog">CommitLogReplayer.CommitLogReplayException</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/cassandra/db/columniterator/package-summary.html">Prev Package</a></li> <li><a href="../../../../../org/apache/cassandra/db/compaction/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/cassandra/db/commitlog/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2016 The Apache Software Foundation</small></p> </body> </html>
elisska/cloudera-cassandra
DATASTAX_CASSANDRA-2.2.6/javadoc/org/apache/cassandra/db/commitlog/package-summary.html
HTML
apache-2.0
9,102
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_45) on Sat Apr 09 10:10:58 EDT 2016 --> <title>GossipDigestAck2VerbHandler (apache-cassandra API)</title> <meta name="date" content="2016-04-09"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="GossipDigestAck2VerbHandler (apache-cassandra API)"; } } catch(err) { } //--> var methods = {"i0":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/GossipDigestAck2VerbHandler.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/apache/cassandra/gms/GossipDigestAck2.html" title="class in org.apache.cassandra.gms"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/apache/cassandra/gms/GossipDigestAckVerbHandler.html" title="class in org.apache.cassandra.gms"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/gms/GossipDigestAck2VerbHandler.html" target="_top">Frames</a></li> <li><a href="GossipDigestAck2VerbHandler.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.cassandra.gms</div> <h2 title="Class GossipDigestAck2VerbHandler" class="title">Class GossipDigestAck2VerbHandler</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.apache.cassandra.gms.GossipDigestAck2VerbHandler</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd><a href="../../../../org/apache/cassandra/net/IVerbHandler.html" title="interface in org.apache.cassandra.net">IVerbHandler</a>&lt;<a href="../../../../org/apache/cassandra/gms/GossipDigestAck2.html" title="class in org.apache.cassandra.gms">GossipDigestAck2</a>&gt;</dd> </dl> <hr> <br> <pre>public class <span class="typeNameLabel">GossipDigestAck2VerbHandler</span> extends java.lang.Object implements <a href="../../../../org/apache/cassandra/net/IVerbHandler.html" title="interface in org.apache.cassandra.net">IVerbHandler</a>&lt;<a href="../../../../org/apache/cassandra/gms/GossipDigestAck2.html" title="class in org.apache.cassandra.gms">GossipDigestAck2</a>&gt;</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/gms/GossipDigestAck2VerbHandler.html#GossipDigestAck2VerbHandler--">GossipDigestAck2VerbHandler</a></span>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/gms/GossipDigestAck2VerbHandler.html#doVerb-org.apache.cassandra.net.MessageIn-int-">doVerb</a></span>(<a href="../../../../org/apache/cassandra/net/MessageIn.html" title="class in org.apache.cassandra.net">MessageIn</a>&lt;<a href="../../../../org/apache/cassandra/gms/GossipDigestAck2.html" title="class in org.apache.cassandra.gms">GossipDigestAck2</a>&gt;&nbsp;message, int&nbsp;id)</code> <div class="block">This method delivers a message to the implementing class (if the implementing class was registered by a call to MessagingService.registerVerbHandlers).</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="GossipDigestAck2VerbHandler--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>GossipDigestAck2VerbHandler</h4> <pre>public&nbsp;GossipDigestAck2VerbHandler()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="doVerb-org.apache.cassandra.net.MessageIn-int-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>doVerb</h4> <pre>public&nbsp;void&nbsp;doVerb(<a href="../../../../org/apache/cassandra/net/MessageIn.html" title="class in org.apache.cassandra.net">MessageIn</a>&lt;<a href="../../../../org/apache/cassandra/gms/GossipDigestAck2.html" title="class in org.apache.cassandra.gms">GossipDigestAck2</a>&gt;&nbsp;message, int&nbsp;id)</pre> <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../org/apache/cassandra/net/IVerbHandler.html#doVerb-org.apache.cassandra.net.MessageIn-int-">IVerbHandler</a></code></span></div> <div class="block">This method delivers a message to the implementing class (if the implementing class was registered by a call to MessagingService.registerVerbHandlers). Note that the caller should not be holding any locks when calling this method because the implementation may be synchronized.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/net/IVerbHandler.html#doVerb-org.apache.cassandra.net.MessageIn-int-">doVerb</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/net/IVerbHandler.html" title="interface in org.apache.cassandra.net">IVerbHandler</a>&lt;<a href="../../../../org/apache/cassandra/gms/GossipDigestAck2.html" title="class in org.apache.cassandra.gms">GossipDigestAck2</a>&gt;</code></dd> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>message</code> - - incoming message that needs handling.</dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/GossipDigestAck2VerbHandler.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/apache/cassandra/gms/GossipDigestAck2.html" title="class in org.apache.cassandra.gms"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/apache/cassandra/gms/GossipDigestAckVerbHandler.html" title="class in org.apache.cassandra.gms"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/gms/GossipDigestAck2VerbHandler.html" target="_top">Frames</a></li> <li><a href="GossipDigestAck2VerbHandler.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2016 The Apache Software Foundation</small></p> </body> </html>
jasonwee/videoOnCloud
ahkl/apache-cassandra-3.5/javadoc/org/apache/cassandra/gms/GossipDigestAck2VerbHandler.html
HTML
apache-2.0
12,175
<!-- Footer --> <footer> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <ul class="list-inline text-center"> {% if site.RSS %} <li> <a href="{{ "/feed.xml" | prepend: site.baseurl }}"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-rss fa-stack-1x fa-inverse"></i> </span> </a> </li> {% endif %} {% if site.go_aliyun %} <li> <a href="{{ site.go_aliyun }}"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-stack-1x fa-inverse">AL</i> </span> </a> </li> {% endif %} <!-- add Weibo, Zhihu by Hux, add target = "_blank" to <a> by Hux --> {% if site.go_digitalocean %} <li> <a target="_blank" href="{{ site.go_digitalocean }}"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-stack-1x fa-inverse">DO</i> </span> </a> </li> {% endif %} {% if site.go_freebsd %} <li> <a target="_blank" href="{{ site.go_freebsd }}"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <!--<i class="fa fa-weibo fa-stack-1x fa-inverse"></i>--> <i class="fa fa-stack-1x fa-inverse">FB</i> </span> </a> </li> {% endif %} {% if site.go_nginx %} <li> <a target="_blank" href="{{ site.go_nginx }}"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-stack-1x fa-inverse">NG</i> </span> </a> </li> {% endif %} </ul> <p class="copyright text-muted"> Copyright &copy; 2011 - 2015 Haowu Ge. All rights reserved. <!--Copyright &copy; {{ site.title }} {{ site.time | date: '%Y' }} <br> Theme by <a href="http://huangxuan.me">Hux</a> |--> </p> </div> </div> </div> </footer> <!-- jQuery --> <script src="{{ "/js/jquery.min.js " | prepend: site.baseurl }}"></script> <!-- Bootstrap Core JavaScript --> <script src="{{ "/js/bootstrap.min.js " | prepend: site.baseurl }}"></script> <!-- Custom Theme JavaScript --> <script src="{{ "/js/hux-blog.min.js " | prepend: site.baseurl }}"></script> <!-- async load function --> <script> function async(u, c) { var d = document, t = 'script', o = d.createElement(t), s = d.getElementsByTagName(t)[0]; o.src = u; if (c) { o.addEventListener('load', function (e) { c(null, e); }, false); } s.parentNode.insertBefore(o, s); } </script> <!-- Highlight.js --> <script> async("http://cdn.bootcss.com/highlight.js/8.6/highlight.min.js", function(){ hljs.initHighlightingOnLoad(); }) // only load tagcloud.js in tag.html if($('#tag_cloud').length !== 0){ async("/js/jquery.tagcloud.js",function(){ $.fn.tagcloud.defaults = { //size: {start: 1, end: 1, unit: 'em'}, color: {start: '#bbbbee', end: '#0085a1'}, }; $('#tag_cloud a').tagcloud(); }) } </script> <link href="http://cdn.bootcss.com/highlight.js/8.6/styles/github.min.css" rel="stylesheet"> <!--fastClick.js --> <script> async("http://cdn.bootcss.com/fastclick/1.0.6/fastclick.min.js", function(){ var $nav = document.querySelector("nav"); if($nav) FastClick.attach($nav); }) </script> {% if site.ga_track_id %} <!-- GA hacking --> <input id="gaId" type="hidden" value="{{site.ga_track_id}}" /> <input id="gaDomain" type="hidden" value="{{site.ga_domain}}" /> <!-- Google Analytics --> <script> // dynamic User hacking by Hux var _gaId = document.getElementById('gaId').value; var _gaDomain = document.getElementById('gaDomain').value; // Originial (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', _gaId, _gaDomain); ga('send', 'pageview'); </script> {% endif %} {% if site.ba_track_id %} <!-- BT hacking --> <input id="baId" type="hidden" value="{{site.ba_track_id}}" /> <!-- Baidu Tongji --> <script> // dynamic User hacking by Hux var _baId = document.getElementById('baId').value; // Originial var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "//hm.baidu.com/hm.js?" + _baId; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> {% endif %}
gehaowu/diary
_includes/footer.html
HTML
apache-2.0
5,975
<!-- Download Section --> <section id="download" class="content-section text-center"> <div class="download-section"> <div class="container"> <div class="col-lg-8 col-lg-offset-2"> <h2>訂購商品</h2> <p>請經由以下連結填寫訂購單</p> <a href="https://docs.google.com/forms/d/e/1FAIpQLSf6rkeibUCE6K6w27e3ny7PMKhEPyu-OibeYa-SrdXgzYjfFA/viewform?usp=pp_url&entry.295222137=0&entry.1745588004=0&entry.130858949=0&entry.1748847373=0&entry.1315668675=0&entry.540436354=0&entry.1500606216=0&entry.1785801050=0&entry.951702395=0&entry.315216916=0&entry.1121344884=evil3378@gmail.com&entry.91208040=2017-08-08" class="btn btn-default btn-lg">填寫訂購單</a> </div> </div> </div> </section>
EvanceChen/EvanceChen.github.io
_includes/download.html
HTML
apache-2.0
841
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <title>NormalResult - ScalaTest 2.1.3 - org.scalatest.Assertions.NormalResult</title> <meta name="description" content="NormalResult - ScalaTest 2.1.3 - org.scalatest.Assertions.NormalResult" /> <meta name="keywords" content="NormalResult ScalaTest 2.1.3 org.scalatest.Assertions.NormalResult" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <link href="../../lib/template.css" media="screen" type="text/css" rel="stylesheet" /> <link href="../../lib/diagrams.css" media="screen" type="text/css" rel="stylesheet" id="diagrams-css" /> <script type="text/javascript" src="../../lib/jquery.js" id="jquery-js"></script> <script type="text/javascript" src="../../lib/jquery-ui.js"></script> <script type="text/javascript" src="../../lib/template.js"></script> <script type="text/javascript" src="../../lib/tools.tooltip.js"></script> <script type="text/javascript"> if(top === self) { var url = '../../index.html'; var hash = 'org.scalatest.Assertions$$NormalResult'; var anchor = window.location.hash; var anchor_opt = ''; if (anchor.length >= 1) anchor_opt = '@' + anchor.substring(1); window.location.href = url + '#' + hash + anchor_opt; } </script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-71294502-3', 'auto'); ga('send', 'pageview'); </script> </head> <body class="type"> <!-- Top of doc.scalatest.org [javascript] --> <script type="text/javascript"> var rnd = window.rnd || Math.floor(Math.random()*10e6); var pid204546 = window.pid204546 || rnd; var plc204546 = window.plc204546 || 0; var abkw = window.abkw || ''; var absrc = 'http://ab167933.adbutler-ikon.com/adserve/;ID=167933;size=468x60;setID=204546;type=js;sw='+screen.width+';sh='+screen.height+';spr='+window.devicePixelRatio+';kw='+abkw+';pid='+pid204546+';place='+(plc204546++)+';rnd='+rnd+';click=CLICK_MACRO_PLACEHOLDER'; document.write('<scr'+'ipt src="'+absrc+'" type="text/javascript"></scr'+'ipt>'); </script> <div id="definition"> <img src="../../lib/class_big.png" /> <p id="owner"><a href="../package.html" class="extype" name="org">org</a>.<a href="package.html" class="extype" name="org.scalatest">scalatest</a>.<a href="Assertions$.html" class="extype" name="org.scalatest.Assertions">Assertions</a></p> <h1>NormalResult</h1> </div> <h4 id="signature" class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">case class</span> </span> <span class="symbol"> <span class="name">NormalResult</span><span class="params">(<span name="result">result: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result"> extends <span class="extype" name="scala.Throwable">Throwable</span> with <span class="extype" name="scala.Product">Product</span> with <span class="extype" name="scala.Serializable">Serializable</span></span> </span> </h4> <div id="comment" class="fullcommenttop"><dl class="attributes block"> <dt>Source</dt><dd><a href="https://github.com/scalatest/scalatest/tree/release-2.1.3-for-scala-2.10/src/main/scala/org/scalatest/Assertions.scala" target="_blank">Assertions.scala</a></dd></dl><div class="toggleContainer block"> <span class="toggle">Linear Supertypes</span> <div class="superTypes hiddenContent"><span class="extype" name="scala.Serializable">Serializable</span>, <span class="extype" name="scala.Product">Product</span>, <span class="extype" name="scala.Equals">Equals</span>, <span class="extype" name="java.lang.Throwable">Throwable</span>, <span class="extype" name="java.io.Serializable">Serializable</span>, <span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div> </div></div> <div id="mbrsel"> <div id="textfilter"><span class="pre"></span><span class="input"><input id="mbrsel-input" type="text" accesskey="/" /></span><span class="post"></span></div> <div id="order"> <span class="filtertype">Ordering</span> <ol> <li class="alpha in"><span>Alphabetic</span></li> <li class="inherit out"><span>By inheritance</span></li> </ol> </div> <div id="ancestors"> <span class="filtertype">Inherited<br /> </span> <ol id="linearization"> <li class="in" name="org.scalatest.Assertions.NormalResult"><span>NormalResult</span></li><li class="in" name="scala.Serializable"><span>Serializable</span></li><li class="in" name="scala.Product"><span>Product</span></li><li class="in" name="scala.Equals"><span>Equals</span></li><li class="in" name="java.lang.Throwable"><span>Throwable</span></li><li class="in" name="java.io.Serializable"><span>Serializable</span></li><li class="in" name="scala.AnyRef"><span>AnyRef</span></li><li class="in" name="scala.Any"><span>Any</span></li> </ol> </div><div id="ancestors"> <span class="filtertype"></span> <ol> <li class="hideall out"><span>Hide All</span></li> <li class="showall in"><span>Show all</span></li> </ol> <a href="http://docs.scala-lang.org/overviews/scaladoc/usage.html#members" target="_blank">Learn more about member selection</a> </div> <div id="visbl"> <span class="filtertype">Visibility</span> <ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol> </div> </div> <div id="template"> <div id="allMembers"> <div id="constructors" class="members"> <h3>Instance Constructors</h3> <ol><li name="org.scalatest.Assertions.NormalResult#&lt;init&gt;" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="&lt;init&gt;(result:Any):org.scalatest.Assertions.NormalResult"></a> <a id="&lt;init&gt;:NormalResult"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">new</span> </span> <span class="symbol"> <span class="name">NormalResult</span><span class="params">(<span name="result">result: <span class="extype" name="scala.Any">Any</span></span>)</span> </span> </h4> </li></ol> </div> <div id="values" class="values members"> <h3>Value Members</h3> <ol><li name="scala.AnyRef#!=" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="!=(x$1:AnyRef):Boolean"></a> <a id="!=(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $bang$eq" class="name">!=</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.Any#!=" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="!=(x$1:Any):Boolean"></a> <a id="!=(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $bang$eq" class="name">!=</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef###" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="##():Int"></a> <a id="##():Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $hash$hash" class="name">##</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#==" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="==(x$1:AnyRef):Boolean"></a> <a id="==(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $eq$eq" class="name">==</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.Any#==" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="==(x$1:Any):Boolean"></a> <a id="==(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $eq$eq" class="name">==</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.Any#asInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="asInstanceOf[T0]:T0"></a> <a id="asInstanceOf[T0]:T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">asInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Any.asInstanceOf.T0">T0</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#clone" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="clone():Object"></a> <a id="clone():AnyRef"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">clone</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li><li name="scala.AnyRef#eq" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="eq(x$1:AnyRef):Boolean"></a> <a id="eq(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">eq</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="java.lang.Throwable#fillInStackTrace" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="fillInStackTrace():Throwable"></a> <a id="fillInStackTrace():Throwable"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">fillInStackTrace</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.Throwable">Throwable</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li name="scala.AnyRef#finalize" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="finalize():Unit"></a> <a id="finalize():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">finalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li><li name="java.lang.Throwable#getCause" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="getCause():Throwable"></a> <a id="getCause():Throwable"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">getCause</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.Throwable">Throwable</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li name="scala.AnyRef#getClass" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="getClass():Class[_]"></a> <a id="getClass():Class[_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">getClass</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.Class">Class</span>[_]</span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="java.lang.Throwable#getLocalizedMessage" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="getLocalizedMessage():String"></a> <a id="getLocalizedMessage():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">getLocalizedMessage</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.String">String</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li name="java.lang.Throwable#getMessage" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="getMessage():String"></a> <a id="getMessage():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">getMessage</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.String">String</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li name="java.lang.Throwable#getStackTrace" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="getStackTrace():Array[StackTraceElement]"></a> <a id="getStackTrace():Array[StackTraceElement]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">getStackTrace</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Array">Array</span>[<span class="extype" name="java.lang.StackTraceElement">StackTraceElement</span>]</span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li name="java.lang.Throwable#initCause" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="initCause(x$1:Throwable):Throwable"></a> <a id="initCause(Throwable):Throwable"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">initCause</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="java.lang.Throwable">Throwable</span></span>)</span><span class="result">: <span class="extype" name="java.lang.Throwable">Throwable</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li name="scala.Any#isInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isInstanceOf[T0]:Boolean"></a> <a id="isInstanceOf[T0]:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#ne" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ne(x$1:AnyRef):Boolean"></a> <a id="ne(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">ne</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notify" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notify():Unit"></a> <a id="notify():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notify</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notifyAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notifyAll():Unit"></a> <a id="notifyAll():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notifyAll</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="java.lang.Throwable#printStackTrace" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="printStackTrace(x$1:java.io.PrintWriter):Unit"></a> <a id="printStackTrace(PrintWriter):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">printStackTrace</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="java.io.PrintWriter">PrintWriter</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li name="java.lang.Throwable#printStackTrace" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="printStackTrace(x$1:java.io.PrintStream):Unit"></a> <a id="printStackTrace(PrintStream):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">printStackTrace</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="java.io.PrintStream">PrintStream</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li name="java.lang.Throwable#printStackTrace" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="printStackTrace():Unit"></a> <a id="printStackTrace():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">printStackTrace</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li name="org.scalatest.Assertions.NormalResult#result" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="result:Any"></a> <a id="result:Any"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">result</span><span class="result">: <span class="extype" name="scala.Any">Any</span></span> </span> </h4> </li><li name="java.lang.Throwable#setStackTrace" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="setStackTrace(x$1:Array[StackTraceElement]):Unit"></a> <a id="setStackTrace(Array[StackTraceElement]):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">setStackTrace</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Array">Array</span>[<span class="extype" name="java.lang.StackTraceElement">StackTraceElement</span>]</span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Throwable</dd></dl></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="org.scalatest.Assertions.NormalResult#toString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toString():String"></a> <a id="toString():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toString</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="" class="extype" name="org.scalatest.Assertions.NormalResult">NormalResult</a> → Throwable → AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <a id="wait():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long,x$2:Int):Unit"></a> <a id="wait(Long,Int):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long):Unit"></a> <a id="wait(Long):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="scala.Serializable"> <h3>Inherited from <span class="extype" name="scala.Serializable">Serializable</span></h3> </div><div class="parent" name="scala.Product"> <h3>Inherited from <span class="extype" name="scala.Product">Product</span></h3> </div><div class="parent" name="scala.Equals"> <h3>Inherited from <span class="extype" name="scala.Equals">Equals</span></h3> </div><div class="parent" name="java.lang.Throwable"> <h3>Inherited from <span class="extype" name="java.lang.Throwable">Throwable</span></h3> </div><div class="parent" name="java.io.Serializable"> <h3>Inherited from <span class="extype" name="java.io.Serializable">Serializable</span></h3> </div><div class="parent" name="scala.AnyRef"> <h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3> </div><div class="parent" name="scala.Any"> <h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3> </div> </div> <div id="groupedMembers"> <div class="group" name="Ungrouped"> <h3>Ungrouped</h3> </div> </div> </div> <div id="tooltip"></div> <div id="footer"> </div> </body> </html>
scalatest/scalatest-website
public/scaladoc/2.1.3/org/scalatest/Assertions$$NormalResult.html
HTML
apache-2.0
31,797
<!--email_off--> <div id="page_info" style="display:none;"> <title>Partnerships | Champion-FX.com</title> </div> <div class="wrapper" id="champion-content"> <div class="primary-color-dark partnerships-header"> <div class="fx-panel center-text center-vertical container"> <h1 class="content-inverse-color">Partnerships</h1> <p class="content-inverse-color">Explore our wide range of partnership programmes. Each programme opens a window of opportunity to one of the world's most significant financial markets, and each has been developed with the intention of perfectly matching the diverse needs of our potential partners.</p> </div> </div> <div class="container"> <div class="fx-section"> <div class="row"> <div class="col-sm" id="content"> <h2>Partnerships</h2> <div class="row"> <div class="col-md-12 col-lg-6"> <p>ChampionFX understands the importance of building long-lasting partnerships. We use a fresh and unique approach to understand your needs and what makes you tick.</p> <p>We want to help you grow your business by providing you with all the necessary tools and resources that allow you to prosper and flourish. Because we believe that our opportunities improve when we help you win.</p> </div> <div class="col-md-12 col-lg-6"> <iframe width="560" height="315" src="https://www.youtube.com/embed/EGXb0gktnEM" frameborder="0" allowfullscreen></iframe> </div> </div> <div class="separator fill-bg-color"></div> <div class="center-text"> <div class="row"> <h2>Introduce clients to Forex, CFDs, metals, and futures trading on MetaTrader 5</h2> <div class="fx-divider"></div> <div class="col-md-8 push-md-2 col-lg-4 push-lg-0"> <h4>Introducing Broker (IB)</h4> <div class="separator primary-color"></div> <p>Earn a commission on all ongoing trades done by your referred clients.</p> <p> <a class="button-secondary" href="/champion-static/en/partnerships-ib.html"> <span>Learn more</span> </a> </p> </div> <div class="col-md-8 push-md-2 col-lg-4 push-lg-0 fx-partnerships-margin-top"> <h4>Liquidity Solutions</h4> <div class="separator primary-color"></div> <p>Access to multi-asset liquidity and back-office functionality via margin accounts.</p> <p> <a class="button-secondary" href="/champion-static/en/liquidity-solutions.html"> <span>Learn more</span> </a> </p> </div> <div class="col-md-8 push-md-2 col-lg-4 push-lg-0 fx-partnerships-margin-top"> <h4>Multiple Accounts Manager (MAM)</h4> <div class="separator primary-color"></div> <p>Trade and manage multiple MT5 client accounts from a single interface.</p> <p> <a class="button-secondary" href="/champion-static/en/multiple-accounts-manager.html"> <span>Learn more</span> </a> </p> </div> </div> <div class="separator fill-bg-color"></div> <div class="row"> <div class="col-sm"> <h2>Introduce clients to binary options trading on Champion Trader</h2> <div class="row box-grid"> <div class="col-md-5 push-md-1 fx-partnerships-margin-bottom"> <div class="box"> <div> <h4>Affiliate Programme</h4> <div class="separator primary-color"></div> <p>Earn up to 35% commission on all binary options trades performed by your referred clients.</p> </div> <div class="box-item-end"> <p> <a class="button-secondary" href="/champion-static/en/partnerships-affiliate.html"> <span>Learn more</span> </a> </p> </div> </div> </div> <div class="col-md-5 push-md-1"> <div class="box"> <div> <h4>Content Contributors</h4> <div class="separator primary-color"></div> <p>Create premium content to help clients trade. Earn a commission by converting viewers into regular clients.</p> </div> <div class="box-item-end"> <p> <a class="button-secondary" href="/champion-static/en/partnerships-contributor.html"> <span>Learn more</span> </a> </p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!--/email_off-->
ashkanx-champion/champion-static
en/pjax/partnerships.html
HTML
apache-2.0
6,586
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" /> <link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media="all"/> <link rel="stylesheet" href="../../../../../aui/css/aui-experimental.min.css" media="all"/> <!--[if IE 9]><link rel="stylesheet" href="../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]--> <style type="text/css" media="all"> @import url('../../../../../style.css'); @import url('../../../../../tree.css'); </style> <script src="../../../../../jquery-1.8.3.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script> <script src="../../../../../package-nodes-tree.js" type="text/javascript"></script> <script src="../../../../../clover-tree.js" type="text/javascript"></script> <script src="../../../../../clover.js" type="text/javascript"></script> <script src="../../../../../clover-descriptions.js" type="text/javascript"></script> <script src="../../../../../cloud.js" type="text/javascript"></script> <title>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title> </head> <body> <div id="page"> <header id="header" role="banner"> <nav class="aui-header aui-dropdown2-trigger-group" role="navigation"> <div class="aui-header-inner"> <div class="aui-header-primary"> <h1 id="logo" class="aui-header-logo aui-header-logo-clover"> <a href="http://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</span></a> </h1> </div> <div class="aui-header-secondary"> <ul class="aui-nav"> <li id="system-help-menu"> <a class="aui-nav-link" title="Open online documentation" target="_blank" href="http://openclover.org/documentation"> <span class="aui-icon aui-icon-small aui-iconfont-help">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <a href="http://cardatechnologies.com" target="_top"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </a> </div> <div class="aui-page-header-main" > <h1> <a href="http://cardatechnologies.com" target="_top"> ABA Route Transit Number Validator 1.0.1-SNAPSHOT </a> </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li> <li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li> <li><a href="test-Test_AbaRouteValidator_07.html">Class Test_AbaRouteValidator_07</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_12685_good </h1> <table class="aui"> <thead> <tr> <th>Test</th> <th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th> <th><label title="When the test execution was started">Start time</label></th> <th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th> <th><label title="A failure or error message if the test is not successful.">Message</label></th> </tr> </thead> <tbody> <tr> <td> <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_07.html?line=5704#src-5704" >testAbaNumberCheck_12685_good</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:36:59 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</div> <table class="aui aui-table-sortable"> <thead> <tr> <th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th> <th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_12685_good</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=35535#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a> </td> <td> <span class="sortValue">0.7352941</span>73.5% </td> <td class="align-middle" style="width: 100%" colspan="3"> <div> <div title="73.5% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:73.5%"></div></div></div> </td> </tr> </tbody> </table> </div> <!-- class="aui-page-panel-content-clover" --> <footer id="footer" role="contentinfo"> <section class="footer-body"> <ul> <li> Report generated by <a target="_new" href="http://openclover.org">OpenClover</a> v 4.4.1 on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT. </li> </ul> <ul> <li>OpenClover is free and open-source software. </li> </ul> </section> </footer> </section> <!-- class="aui-page-panel-content" --> </div> <!-- class="aui-page-panel-inner" --> </div> <!-- class="aui-page-panel" --> </div> <!-- id="page" --> </body> </html>
dcarda/aba.route.validator
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_07_testAbaNumberCheck_12685_good_rf3.html
HTML
apache-2.0
9,179
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <title>Clean Blog - Sample Post</title> <!-- Bootstrap Core CSS --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!-- Custom CSS --> <link href="css/clean-blog.min.css" rel="stylesheet"> <!-- Custom Fonts --> <link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <!-- Navigation --> <nav class="navbar navbar-default navbar-custom navbar-fixed-top"> <div class="container-fluid"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header page-scroll"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="index.html">Start Bootstrap</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav navbar-right"> <li> <a href="index.html">Home</a> </li> <li> <a href="about.html">About</a> </li> <li> <a href="post.html">Sample Post</a> </li> <li> <a href="contact.html">Contact</a> </li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container --> </nav> <!-- Page Header --> <!-- Set your background image for this header on the line below. --> <header class="intro-header" style="background-image: url('img/Reactjs.svg')"> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <div class="post-heading"> <h1>React-Native Components/HTMl Nodes Cheat Sheet</h1> <h2 class="subheading">The cheapest, fastest, and most reliable components are those that aren’t there. — Gordon Bell</h2> <span class="meta">Posted by <a href="#">Ross Rasmussen</a> on May 5, 2015</span> </div> </div> </div> </div> </header> <!-- Post Content --> <article> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <table class="table table-striped table-condensed text-center"> <tr> <td><h1>HTML</h1></td> <td><h1>React-Native</h1></td> </tr> <tr> <td>&lt;div&gt;</td> <td>&lt;View&gt;</td> </tr> <tr> <td>&lt;p&gt;</td> <td>&lt;Text&gt;</td> </tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> <tr></tr> </table> </div> </div> </div> </article> <hr> <!-- Footer --> <footer> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <ul class="list-inline text-center"> <li> <a href="#"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-twitter fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="#"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-facebook fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="#"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-github fa-stack-1x fa-inverse"></i> </span> </a> </li> </ul> <p class="copyright text-muted">Copyright &copy; Your Website 2014</p> </div> </div> </div> </footer> <!-- jQuery --> <script src="js/jquery.js"></script> <!-- Bootstrap Core JavaScript --> <script src="js/bootstrap.min.js"></script> <!-- Custom Theme JavaScript --> <script src="js/clean-blog.min.js"></script> </body> </html>
raspy8766/raspy8766.github.io
react-native-cheat-sheet.html
HTML
apache-2.0
7,041
<!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head th:include="templates/layout :: headerFragment"> </head> <body> <div th:include="templates/layout :: menuFragment"> </div> <div class="container"> This page doesn't exists! </div> <div th:include="templates/layout :: footerFragment"> </div> </body> </html>
exxxar/redQueen
target/mavenproject6/WEB-INF/views/thy/error/error.html
HTML
apache-2.0
331
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Tue Feb 06 09:38:18 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.config.ejb3.ClusterPassivationStore (BOM: * : All 2017.10.2 API)</title> <meta name="date" content="2018-02-06"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.wildfly.swarm.config.ejb3.ClusterPassivationStore (BOM: * : All 2017.10.2 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.10.2</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/ejb3/class-use/ClusterPassivationStore.html" target="_top">Frames</a></li> <li><a href="ClusterPassivationStore.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.config.ejb3.ClusterPassivationStore" class="title">Uses of Class<br>org.wildfly.swarm.config.ejb3.ClusterPassivationStore</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.ejb3">org.wildfly.swarm.config.ejb3</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a> in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> that return <a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a></code></td> <td class="colLast"><span class="typeNameLabel">EJB3.EJB3Resources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/EJB3.EJB3Resources.html#clusterPassivationStore-java.lang.String-">clusterPassivationStore</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;key)</code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> that return types with arguments of type <a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">EJB3.EJB3Resources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/EJB3.EJB3Resources.html#clusterPassivationStores--">clusterPassivationStores</a></span>()</code> <div class="block">Get the list of ClusterPassivationStore resources</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/EJB3.html" title="type parameter in EJB3">T</a></code></td> <td class="colLast"><span class="typeNameLabel">EJB3.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/EJB3.html#clusterPassivationStore-org.wildfly.swarm.config.ejb3.ClusterPassivationStore-">clusterPassivationStore</a></span>(<a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a>&nbsp;value)</code> <div class="block">Add the ClusterPassivationStore object to the list of subresources</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Method parameters in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with type arguments of type <a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/EJB3.html" title="type parameter in EJB3">T</a></code></td> <td class="colLast"><span class="typeNameLabel">EJB3.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/EJB3.html#clusterPassivationStores-java.util.List-">clusterPassivationStores</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a>&gt;&nbsp;value)</code> <div class="block">Add all ClusterPassivationStore objects to this subresource</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.ejb3"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a> in <a href="../../../../../../org/wildfly/swarm/config/ejb3/package-summary.html">org.wildfly.swarm.config.ejb3</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../../org/wildfly/swarm/config/ejb3/package-summary.html">org.wildfly.swarm.config.ejb3</a> with type parameters of type <a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a>&lt;T&gt;&gt;</span></code> <div class="block">A clustered passivation store</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStoreConsumer.html" title="interface in org.wildfly.swarm.config.ejb3">ClusterPassivationStoreConsumer</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a>&lt;T&gt;&gt;</span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStoreSupplier.html" title="interface in org.wildfly.swarm.config.ejb3">ClusterPassivationStoreSupplier</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a>&gt;</span></code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/ejb3/package-summary.html">org.wildfly.swarm.config.ejb3</a> that return <a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">ClusterPassivationStore</a></code></td> <td class="colLast"><span class="typeNameLabel">ClusterPassivationStoreSupplier.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStoreSupplier.html#get--">get</a></span>()</code> <div class="block">Constructed instance of ClusterPassivationStore resource</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/ejb3/ClusterPassivationStore.html" title="class in org.wildfly.swarm.config.ejb3">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.10.2</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/ejb3/class-use/ClusterPassivationStore.html" target="_top">Frames</a></li> <li><a href="ClusterPassivationStore.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2017.10.2/apidocs/org/wildfly/swarm/config/ejb3/class-use/ClusterPassivationStore.html
HTML
apache-2.0
15,623
<!DOCTYPE html> <html lang="zh-cn"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <meta name="renderer" content="webkit"> <title></title> <link rel="stylesheet" href="css/pintuer.css"> <link rel="stylesheet" href="css/admin.css"> <script src="js/jquery.js"></script> <script src="js/pintuer.js"></script> </head> <body> <form method="post" action="" id="listform"> <div class="panel admin-panel"> <div class="panel-head"><strong class="icon-reorder"> 内容列表</strong> <a href="" style="float:right; display:none;">添加字段</a></div> <div class="padding border-bottom"> <ul class="search" style="padding-left:10px;"> <li> <a class="button border-main icon-plus-square-o" href="add.html"> 添加内容</a> </li> <li>搜索:</li> <li>首页 <select name="s_ishome" class="input" onchange="changesearch()" style="width:60px; line-height:17px; display:inline-block"> <option value="">选择</option> <option value="1">是</option> <option value="0">否</option> </select> &nbsp;&nbsp; 推荐 <select name="s_isvouch" class="input" onchange="changesearch()" style="width:60px; line-height:17px;display:inline-block"> <option value="">选择</option> <option value="1">是</option> <option value="0">否</option> </select> &nbsp;&nbsp; 置顶 <select name="s_istop" class="input" onchange="changesearch()" style="width:60px; line-height:17px;display:inline-block"> <option value="">选择</option> <option value="1">是</option> <option value="0">否</option> </select> </li> <if condition="$iscid eq 1"> <li> <select name="cid" class="input" style="width:200px; line-height:17px;" onchange="changesearch()"> <option value="">请选择分类</option> <option value="">产品分类</option> <option value="">产品分类</option> <option value="">产品分类</option> <option value="">产品分类</option> </select> </li> </if> <li> <input type="text" placeholder="请输入搜索关键字" name="keywords" class="input" style="width:250px; line-height:17px;display:inline-block" /> <a href="javascript:void(0)" class="button border-main icon-search" onclick="changesearch()" > 搜索</a></li> </ul> </div> <table class="table table-hover text-center"> <tr> <th width="100" style="text-align:left; padding-left:20px;">ID</th> <th width="10%">排序</th> <th>图片</th> <th>名称</th> <th>属性</th> <th>分类名称</th> <th width="10%">更新时间</th> <th width="310">操作</th> </tr> <volist name="list" id="vo"> <tr> <td style="text-align:left; padding-left:20px;"><input type="checkbox" name="id[]" value="" /> 1</td> <td><input type="text" name="sort[1]" value="1" style="width:50px; text-align:center; border:1px solid #ddd; padding:7px 0;" /></td> <td width="10%"><img src="images/11.jpg" alt="" width="70" height="50" /></td> <td>这是一套MUI后台精美管理系统,感谢您的支持</td> <td><font color="#00CC99">首页</font></td> <td>产品分类</td> <td>2016-07-01</td> <td><div class="button-group"> <a class="button border-main" href="add.html"><span class="icon-edit"></span> 修改</a> <a class="button border-red" href="javascript:void(0)" onclick="return del(1,1,1)"><span class="icon-trash-o"></span> 删除</a> </div></td> </tr> <tr> <td style="text-align:left; padding-left:20px;"><input type="checkbox" name="id[]" value="" /> 1</td> <td><input type="text" name="sort[1]" value="1" style="width:50px; text-align:center; border:1px solid #ddd; padding:7px 0;" /></td> <td width="10%"><img src="images/11.jpg" alt="" width="70" height="50" /></td> <td>这是一套MUI后台精美管理系统,感谢您的支持</td> <td><font color="#00CC99">首页</font></td> <td>产品分类</td> <td>2016-07-01</td> <td><div class="button-group"> <a class="button border-main" href="add.html"><span class="icon-edit"></span> 修改</a> <a class="button border-red" href="javascript:void(0)" onclick="return del(1,1,1)"><span class="icon-trash-o"></span> 删除</a> </div></td> </tr> <tr> <td style="text-align:left; padding-left:20px;"><input type="checkbox" name="id[]" value="" /> 1</td> <td><input type="text" name="sort[1]" value="1" style="width:50px; text-align:center; border:1px solid #ddd; padding:7px 0;" /></td> <td width="10%"><img src="images/11.jpg" alt="" width="70" height="50" /></td> <td>这是一套MUI后台精美管理系统,感谢您的支持</td> <td><font color="#00CC99">首页</font></td> <td>产品分类</td> <td>2016-07-01</td> <td><div class="button-group"> <a class="button border-main" href="add.html"><span class="icon-edit"></span> 修改</a> <a class="button border-red" href="javascript:void(0)" onclick="return del(1,1,1)"><span class="icon-trash-o"></span> 删除</a> </div></td> </tr> <tr> <td style="text-align:left; padding-left:20px;"><input type="checkbox" name="id[]" value="" /> 1</td> <td><input type="text" name="sort[1]" value="1" style="width:50px; text-align:center; border:1px solid #ddd; padding:7px 0;" /></td> <td width="10%"><img src="images/11.jpg" alt="" width="70" height="50" /></td> <td>这是一套MUI后台精美管理系统,感谢您的支持</td> <td><font color="#00CC99">首页</font></td> <td>产品分类</td> <td>2016-07-01</td> <td><div class="button-group"> <a class="button border-main" href="add.html"><span class="icon-edit"></span> 修改</a> <a class="button border-red" href="javascript:void(0)" onclick="return del(1,1,1)"><span class="icon-trash-o"></span> 删除</a> </div></td> </tr> <tr> <td style="text-align:left; padding-left:20px;"><input type="checkbox" name="id[]" value="" /> 1</td> <td><input type="text" name="sort[1]" value="1" style="width:50px; text-align:center; border:1px solid #ddd; padding:7px 0;" /></td> <td width="10%"><img src="images/11.jpg" alt="" width="70" height="50" /></td> <td>这是一套MUI后台精美管理系统,感谢您的支持</td> <td><font color="#00CC99">首页</font></td> <td>产品分类</td> <td>2016-07-01</td> <td><div class="button-group"> <a class="button border-main" href="add.html"><span class="icon-edit"></span> 修改</a> <a class="button border-red" href="javascript:void(0)" onclick="return del(1,1,1)"><span class="icon-trash-o"></span> 删除</a> </div></td> </tr> <tr> <td style="text-align:left; padding-left:20px;"><input type="checkbox" name="id[]" value="" /> 1</td> <td><input type="text" name="sort[1]" value="1" style="width:50px; text-align:center; border:1px solid #ddd; padding:7px 0;" /></td> <td width="10%"><img src="images/11.jpg" alt="" width="70" height="50" /></td> <td>这是一套MUI后台精美管理系统,感谢您的支持</td> <td><font color="#00CC99">首页</font></td> <td>产品分类</td> <td>2016-07-01</td> <td><div class="button-group"> <a class="button border-main" href="add.html"><span class="icon-edit"></span> 修改</a> <a class="button border-red" href="javascript:void(0)" onclick="return del(1,1,1)"><span class="icon-trash-o"></span> 删除</a> </div></td> </tr> <tr> <td style="text-align:left; padding:19px 0;padding-left:20px;"><input type="checkbox" id="checkall"/> 全选 </td> <td colspan="7" style="text-align:left;padding-left:20px;"><a href="javascript:void(0)" class="button border-red icon-trash-o" style="padding:5px 15px;" onclick="DelSelect()"> 删除</a> <a href="javascript:void(0)" style="padding:5px 15px; margin:0 10px;" class="button border-blue icon-edit" onclick="sorts()"> 排序</a> 操作: <select name="ishome" style="padding:5px 15px; border:1px solid #ddd;" onchange="changeishome(this)"> <option value="">首页</option> <option value="1">是</option> <option value="0">否</option> </select> <select name="isvouch" style="padding:5px 15px; border:1px solid #ddd;" onchange="changeisvouch(this)"> <option value="">推荐</option> <option value="1">是</option> <option value="0">否</option> </select> <select name="istop" style="padding:5px 15px; border:1px solid #ddd;" onchange="changeistop(this)"> <option value="">置顶</option> <option value="1">是</option> <option value="0">否</option> </select> &nbsp;&nbsp;&nbsp; 移动到: <select name="movecid" style="padding:5px 15px; border:1px solid #ddd;" onchange="changecate(this)"> <option value="">请选择分类</option> <option value="">产品分类</option> <option value="">产品分类</option> <option value="">产品分类</option> <option value="">产品分类</option> </select> <select name="copynum" style="padding:5px 15px; border:1px solid #ddd;" onchange="changecopy(this)"> <option value="">请选择复制</option> <option value="5">复制5条</option> <option value="10">复制10条</option> <option value="15">复制15条</option> <option value="20">复制20条</option> </select></td> </tr> <tr> <td colspan="8"><div class="pagelist"> <a href="">上一页</a> <span class="current">1</span><a href="">2</a><a href="">3</a><a href="">下一页</a><a href="">尾页</a> </div></td> </tr> </table> </div> </form> <script type="text/javascript"> //搜索 function changesearch(){ } //单个删除 function del(id,mid,iscid){ if(confirm("您确定要删除吗?")){ } } //全选 $("#checkall").click(function(){ $("input[name='id[]']").each(function(){ if (this.checked) { this.checked = false; } else { this.checked = true; } }); }) //批量删除 function DelSelect(){ var Checkbox=false; $("input[name='id[]']").each(function(){ if (this.checked==true) { Checkbox=true; } }); if (Checkbox){ var t=confirm("您确认要删除选中的内容吗?"); if (t==false) return false; $("#listform").submit(); } else{ alert("请选择您要删除的内容!"); return false; } } //批量排序 function sorts(){ var Checkbox=false; $("input[name='id[]']").each(function(){ if (this.checked==true) { Checkbox=true; } }); if (Checkbox){ $("#listform").submit(); } else{ alert("请选择要操作的内容!"); return false; } } //批量首页显示 function changeishome(o){ var Checkbox=false; $("input[name='id[]']").each(function(){ if (this.checked==true) { Checkbox=true; } }); if (Checkbox){ $("#listform").submit(); } else{ alert("请选择要操作的内容!"); return false; } } //批量推荐 function changeisvouch(o){ var Checkbox=false; $("input[name='id[]']").each(function(){ if (this.checked==true) { Checkbox=true; } }); if (Checkbox){ $("#listform").submit(); } else{ alert("请选择要操作的内容!"); return false; } } //批量置顶 function changeistop(o){ var Checkbox=false; $("input[name='id[]']").each(function(){ if (this.checked==true) { Checkbox=true; } }); if (Checkbox){ $("#listform").submit(); } else{ alert("请选择要操作的内容!"); return false; } } //批量移动 function changecate(o){ var Checkbox=false; $("input[name='id[]']").each(function(){ if (this.checked==true) { Checkbox=true; } }); if (Checkbox){ $("#listform").submit(); } else{ alert("请选择要操作的内容!"); return false; } } //批量复制 function changecopy(o){ var Checkbox=false; $("input[name='id[]']").each(function(){ if (this.checked==true) { Checkbox=true; } }); if (Checkbox){ var i = 0; $("input[name='id[]']").each(function(){ if (this.checked==true) { i++; } }); if(i>1){ alert("只能选择一条信息!"); $(o).find("option:first").prop("selected","selected"); }else{ $("#listform").submit(); } } else{ alert("请选择要复制的内容!"); $(o).find("option:first").prop("selected","selected"); return false; } } </script> </body> </html>
a5295992/rc_long
WebRoot/www/html/list.html
HTML
apache-2.0
13,748
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Wed Jan 16 10:54:26 MST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Package org.wildfly.swarm.config.elytron (BOM: * : All 2.3.0.Final-SNAPSHOT API)</title> <meta name="date" content="2019-01-16"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package org.wildfly.swarm.config.elytron (BOM: * : All 2.3.0.Final-SNAPSHOT API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.3.0.Final-SNAPSHOT</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/elytron/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package org.wildfly.swarm.config.elytron" class="title">Uses of Package<br>org.wildfly.swarm.config.elytron</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.elytron">org.wildfly.swarm.config.elytron</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a> used by <a href="../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AddPrefixRoleMapper.html#org.wildfly.swarm.config">AddPrefixRoleMapper</a> <div class="block">A role mapper definition for a role mapper that adds a prefix to each provided.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AddPrefixRoleMapperConsumer.html#org.wildfly.swarm.config">AddPrefixRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AddPrefixRoleMapperSupplier.html#org.wildfly.swarm.config">AddPrefixRoleMapperSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AddSuffixRoleMapper.html#org.wildfly.swarm.config">AddSuffixRoleMapper</a> <div class="block">A role mapper definition for a role mapper that adds a suffix to each provided.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AddSuffixRoleMapperConsumer.html#org.wildfly.swarm.config">AddSuffixRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AddSuffixRoleMapperSupplier.html#org.wildfly.swarm.config">AddSuffixRoleMapperSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateHTTPServerMechanismFactory.html#org.wildfly.swarm.config">AggregateHTTPServerMechanismFactory</a> <div class="block">A http server factory definition where the http server factory is an aggregation of other http server factories.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateHTTPServerMechanismFactoryConsumer.html#org.wildfly.swarm.config">AggregateHTTPServerMechanismFactoryConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateHTTPServerMechanismFactorySupplier.html#org.wildfly.swarm.config">AggregateHTTPServerMechanismFactorySupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregatePrincipalDecoder.html#org.wildfly.swarm.config">AggregatePrincipalDecoder</a> <div class="block">A principal decoder definition where the principal decoder is an aggregation of other principal decoders.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregatePrincipalDecoderConsumer.html#org.wildfly.swarm.config">AggregatePrincipalDecoderConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregatePrincipalDecoderSupplier.html#org.wildfly.swarm.config">AggregatePrincipalDecoderSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregatePrincipalTransformer.html#org.wildfly.swarm.config">AggregatePrincipalTransformer</a> <div class="block">A principal transformer aggregating more principal transformers.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregatePrincipalTransformerConsumer.html#org.wildfly.swarm.config">AggregatePrincipalTransformerConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregatePrincipalTransformerSupplier.html#org.wildfly.swarm.config">AggregatePrincipalTransformerSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateProviders.html#org.wildfly.swarm.config">AggregateProviders</a> <div class="block">An aggregation of two or more Provider[] resources.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateProvidersConsumer.html#org.wildfly.swarm.config">AggregateProvidersConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateProvidersSupplier.html#org.wildfly.swarm.config">AggregateProvidersSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateRealm.html#org.wildfly.swarm.config">AggregateRealm</a> <div class="block">A realm definition that is an aggregation of two realms, one for the authentication steps and one for loading the identity for the authorization steps.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateRealmConsumer.html#org.wildfly.swarm.config">AggregateRealmConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateRealmSupplier.html#org.wildfly.swarm.config">AggregateRealmSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateRoleMapper.html#org.wildfly.swarm.config">AggregateRoleMapper</a> <div class="block">A role mapper definition where the role mapper is an aggregation of other role mappers.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateRoleMapperConsumer.html#org.wildfly.swarm.config">AggregateRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateRoleMapperSupplier.html#org.wildfly.swarm.config">AggregateRoleMapperSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateSASLServerFactory.html#org.wildfly.swarm.config">AggregateSASLServerFactory</a> <div class="block">A sasl server factory definition where the sasl server factory is an aggregation of other sasl server factories.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateSASLServerFactoryConsumer.html#org.wildfly.swarm.config">AggregateSASLServerFactoryConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateSASLServerFactorySupplier.html#org.wildfly.swarm.config">AggregateSASLServerFactorySupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateSecurityEventListener.html#org.wildfly.swarm.config">AggregateSecurityEventListener</a> <div class="block">An aggregation of two or more security event listener resources.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateSecurityEventListenerConsumer.html#org.wildfly.swarm.config">AggregateSecurityEventListenerConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateSecurityEventListenerSupplier.html#org.wildfly.swarm.config">AggregateSecurityEventListenerSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AuthenticationConfiguration.html#org.wildfly.swarm.config">AuthenticationConfiguration</a> <div class="block">An individual authentication configuration definition.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AuthenticationConfigurationConsumer.html#org.wildfly.swarm.config">AuthenticationConfigurationConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AuthenticationConfigurationSupplier.html#org.wildfly.swarm.config">AuthenticationConfigurationSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AuthenticationContext.html#org.wildfly.swarm.config">AuthenticationContext</a> <div class="block">An individual authentication context definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AuthenticationContextConsumer.html#org.wildfly.swarm.config">AuthenticationContextConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AuthenticationContextSupplier.html#org.wildfly.swarm.config">AuthenticationContextSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CachingRealm.html#org.wildfly.swarm.config">CachingRealm</a> <div class="block">A realm definition that enables caching to another security realm.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CachingRealmConsumer.html#org.wildfly.swarm.config">CachingRealmConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CachingRealmSupplier.html#org.wildfly.swarm.config">CachingRealmSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CertificateAuthorityAccount.html#org.wildfly.swarm.config">CertificateAuthorityAccount</a> <div class="block">A certificate authority account definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CertificateAuthorityAccountConsumer.html#org.wildfly.swarm.config">CertificateAuthorityAccountConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CertificateAuthorityAccountSupplier.html#org.wildfly.swarm.config">CertificateAuthorityAccountSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ChainedPrincipalTransformer.html#org.wildfly.swarm.config">ChainedPrincipalTransformer</a> <div class="block">A principal transformer definition where the principal transformer is a chaining of other principal transformers.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ChainedPrincipalTransformerConsumer.html#org.wildfly.swarm.config">ChainedPrincipalTransformerConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ChainedPrincipalTransformerSupplier.html#org.wildfly.swarm.config">ChainedPrincipalTransformerSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ClientSslContext.html#org.wildfly.swarm.config">ClientSslContext</a> <div class="block">An SSLContext for use on the client side of a connection.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ClientSslContextConsumer.html#org.wildfly.swarm.config">ClientSslContextConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ClientSslContextSupplier.html#org.wildfly.swarm.config">ClientSslContextSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConcatenatingPrincipalDecoder.html#org.wildfly.swarm.config">ConcatenatingPrincipalDecoder</a> <div class="block">A principal decoder definition where the principal decoder is a concatenation of other principal decoders.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConcatenatingPrincipalDecoderConsumer.html#org.wildfly.swarm.config">ConcatenatingPrincipalDecoderConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConcatenatingPrincipalDecoderSupplier.html#org.wildfly.swarm.config">ConcatenatingPrincipalDecoderSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConfigurableHTTPServerMechanismFactory.html#org.wildfly.swarm.config">ConfigurableHTTPServerMechanismFactory</a> <div class="block">A HTTP server factory definition that wraps another HTTP server factory and applies the specified configuration and filtering.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConfigurableHTTPServerMechanismFactoryConsumer.html#org.wildfly.swarm.config">ConfigurableHTTPServerMechanismFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConfigurableHTTPServerMechanismFactorySupplier.html#org.wildfly.swarm.config">ConfigurableHTTPServerMechanismFactorySupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConfigurableSASLServerFactory.html#org.wildfly.swarm.config">ConfigurableSASLServerFactory</a> <div class="block">A SaslServerFactory definition that wraps another SaslServerFactory and applies the specified configuration and filtering.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConfigurableSASLServerFactoryConsumer.html#org.wildfly.swarm.config">ConfigurableSASLServerFactoryConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConfigurableSASLServerFactorySupplier.html#org.wildfly.swarm.config">ConfigurableSASLServerFactorySupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPermissionMapper.html#org.wildfly.swarm.config">ConstantPermissionMapper</a> <div class="block">Definition of a permission mapper that always returns the same constant.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPermissionMapperConsumer.html#org.wildfly.swarm.config">ConstantPermissionMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPermissionMapperSupplier.html#org.wildfly.swarm.config">ConstantPermissionMapperSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPrincipalDecoder.html#org.wildfly.swarm.config">ConstantPrincipalDecoder</a> <div class="block">Definition of a principal decoder that always returns the same constant.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPrincipalDecoderConsumer.html#org.wildfly.swarm.config">ConstantPrincipalDecoderConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPrincipalDecoderSupplier.html#org.wildfly.swarm.config">ConstantPrincipalDecoderSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPrincipalTransformer.html#org.wildfly.swarm.config">ConstantPrincipalTransformer</a> <div class="block">A principal transformer definition for a PrincipalTransformer that always returns the same constant.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPrincipalTransformerConsumer.html#org.wildfly.swarm.config">ConstantPrincipalTransformerConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPrincipalTransformerSupplier.html#org.wildfly.swarm.config">ConstantPrincipalTransformerSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantRealmMapper.html#org.wildfly.swarm.config">ConstantRealmMapper</a> <div class="block">Definition of a constant RealmMapper that always returns the same value.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantRealmMapperConsumer.html#org.wildfly.swarm.config">ConstantRealmMapperConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantRealmMapperSupplier.html#org.wildfly.swarm.config">ConstantRealmMapperSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantRoleMapper.html#org.wildfly.swarm.config">ConstantRoleMapper</a> <div class="block">A role mapper definition where a constant set of roles is always returned.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantRoleMapperConsumer.html#org.wildfly.swarm.config">ConstantRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantRoleMapperSupplier.html#org.wildfly.swarm.config">ConstantRoleMapperSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CredentialStore.html#org.wildfly.swarm.config">CredentialStore</a> <div class="block">Credential store to keep alias for sensitive information such as passwords for external services.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CredentialStoreConsumer.html#org.wildfly.swarm.config">CredentialStoreConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CredentialStoreSupplier.html#org.wildfly.swarm.config">CredentialStoreSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomCredentialSecurityFactory.html#org.wildfly.swarm.config">CustomCredentialSecurityFactory</a> <div class="block">A custom credential SecurityFactory definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomCredentialSecurityFactoryConsumer.html#org.wildfly.swarm.config">CustomCredentialSecurityFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomCredentialSecurityFactorySupplier.html#org.wildfly.swarm.config">CustomCredentialSecurityFactorySupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomModifiableRealm.html#org.wildfly.swarm.config">CustomModifiableRealm</a> <div class="block">Custom realm configured as being modifiable will be expected to implement the ModifiableSecurityRealm interface.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomModifiableRealmConsumer.html#org.wildfly.swarm.config">CustomModifiableRealmConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomModifiableRealmSupplier.html#org.wildfly.swarm.config">CustomModifiableRealmSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPermissionMapper.html#org.wildfly.swarm.config">CustomPermissionMapper</a> <div class="block">Definition of a custom permission mapper.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPermissionMapperConsumer.html#org.wildfly.swarm.config">CustomPermissionMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPermissionMapperSupplier.html#org.wildfly.swarm.config">CustomPermissionMapperSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPrincipalDecoder.html#org.wildfly.swarm.config">CustomPrincipalDecoder</a> <div class="block">Definition of a custom principal decoder</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPrincipalDecoderConsumer.html#org.wildfly.swarm.config">CustomPrincipalDecoderConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPrincipalDecoderSupplier.html#org.wildfly.swarm.config">CustomPrincipalDecoderSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPrincipalTransformer.html#org.wildfly.swarm.config">CustomPrincipalTransformer</a> <div class="block">A custom principal transformer definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPrincipalTransformerConsumer.html#org.wildfly.swarm.config">CustomPrincipalTransformerConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPrincipalTransformerSupplier.html#org.wildfly.swarm.config">CustomPrincipalTransformerSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRealm.html#org.wildfly.swarm.config">CustomRealm</a> <div class="block">A custom realm definitions can implement either the SecurityRealm interface or the ModifiableSecurityRealm interface.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRealmConsumer.html#org.wildfly.swarm.config">CustomRealmConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRealmMapper.html#org.wildfly.swarm.config">CustomRealmMapper</a> <div class="block">Definition of a custom RealmMapper</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRealmMapperConsumer.html#org.wildfly.swarm.config">CustomRealmMapperConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRealmMapperSupplier.html#org.wildfly.swarm.config">CustomRealmMapperSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRealmSupplier.html#org.wildfly.swarm.config">CustomRealmSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRoleDecoder.html#org.wildfly.swarm.config">CustomRoleDecoder</a> <div class="block">Definition of a custom RoleDecoder</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRoleDecoderConsumer.html#org.wildfly.swarm.config">CustomRoleDecoderConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRoleDecoderSupplier.html#org.wildfly.swarm.config">CustomRoleDecoderSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRoleMapper.html#org.wildfly.swarm.config">CustomRoleMapper</a> <div class="block">Definition of a custom RoleMapper</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRoleMapperConsumer.html#org.wildfly.swarm.config">CustomRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRoleMapperSupplier.html#org.wildfly.swarm.config">CustomRoleMapperSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomSecurityEventListener.html#org.wildfly.swarm.config">CustomSecurityEventListener</a> <div class="block">A custom security event listener.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomSecurityEventListenerConsumer.html#org.wildfly.swarm.config">CustomSecurityEventListenerConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomSecurityEventListenerSupplier.html#org.wildfly.swarm.config">CustomSecurityEventListenerSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/DirContext.html#org.wildfly.swarm.config">DirContext</a> <div class="block">The configuration to connect to a directory (LDAP) server.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/DirContextConsumer.html#org.wildfly.swarm.config">DirContextConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/DirContextSupplier.html#org.wildfly.swarm.config">DirContextSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FileAuditLog.html#org.wildfly.swarm.config">FileAuditLog</a> <div class="block">An audit logger that logs to a local file.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FileAuditLogConsumer.html#org.wildfly.swarm.config">FileAuditLogConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FileAuditLogSupplier.html#org.wildfly.swarm.config">FileAuditLogSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FilesystemRealm.html#org.wildfly.swarm.config">FilesystemRealm</a> <div class="block">A simple security realm definition backed by the filesystem.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FilesystemRealmConsumer.html#org.wildfly.swarm.config">FilesystemRealmConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FilesystemRealmSupplier.html#org.wildfly.swarm.config">FilesystemRealmSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FilteringKeyStore.html#org.wildfly.swarm.config">FilteringKeyStore</a> <div class="block">A filtering KeyStore definition.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FilteringKeyStoreConsumer.html#org.wildfly.swarm.config">FilteringKeyStoreConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FilteringKeyStoreSupplier.html#org.wildfly.swarm.config">FilteringKeyStoreSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/HTTPAuthenticationFactory.html#org.wildfly.swarm.config">HTTPAuthenticationFactory</a> <div class="block">Resource containing the association of a SecurityDomain with a HttpServerAuthenticationMechanismFactory.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/HTTPAuthenticationFactoryConsumer.html#org.wildfly.swarm.config">HTTPAuthenticationFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/HTTPAuthenticationFactorySupplier.html#org.wildfly.swarm.config">HTTPAuthenticationFactorySupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/IdentityRealm.html#org.wildfly.swarm.config">IdentityRealm</a> <div class="block">Realm definition for a realm which contains a single pre-defined identity.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/IdentityRealmConsumer.html#org.wildfly.swarm.config">IdentityRealmConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/IdentityRealmSupplier.html#org.wildfly.swarm.config">IdentityRealmSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/JaspiConfiguration.html#org.wildfly.swarm.config">JaspiConfiguration</a> <div class="block">Resource containing the JASPI ServerAuthModule configuration for the servlet profile.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/JaspiConfigurationConsumer.html#org.wildfly.swarm.config">JaspiConfigurationConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/JaspiConfigurationSupplier.html#org.wildfly.swarm.config">JaspiConfigurationSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/JDBCRealm.html#org.wildfly.swarm.config">JDBCRealm</a> <div class="block">A security realm definition backed by database using JDBC.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/JDBCRealmConsumer.html#org.wildfly.swarm.config">JDBCRealmConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/JDBCRealmSupplier.html#org.wildfly.swarm.config">JDBCRealmSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KerberosSecurityFactory.html#org.wildfly.swarm.config">KerberosSecurityFactory</a> <div class="block">A security factory for obtaining a GSSCredential for use during authentication.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KerberosSecurityFactoryConsumer.html#org.wildfly.swarm.config">KerberosSecurityFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KerberosSecurityFactorySupplier.html#org.wildfly.swarm.config">KerberosSecurityFactorySupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyManager.html#org.wildfly.swarm.config">KeyManager</a> <div class="block">A key manager definition for creating the KeyManager as used to create an SSLContext.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyManagerConsumer.html#org.wildfly.swarm.config">KeyManagerConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyManagerSupplier.html#org.wildfly.swarm.config">KeyManagerSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyStore.html#org.wildfly.swarm.config">KeyStore</a> <div class="block">A KeyStore definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyStoreConsumer.html#org.wildfly.swarm.config">KeyStoreConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyStoreRealm.html#org.wildfly.swarm.config">KeyStoreRealm</a> <div class="block">A security realm definition backed by a key store.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyStoreRealmConsumer.html#org.wildfly.swarm.config">KeyStoreRealmConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyStoreRealmSupplier.html#org.wildfly.swarm.config">KeyStoreRealmSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyStoreSupplier.html#org.wildfly.swarm.config">KeyStoreSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LdapKeyStore.html#org.wildfly.swarm.config">LdapKeyStore</a> <div class="block">A LdapKeyStore definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LdapKeyStoreConsumer.html#org.wildfly.swarm.config">LdapKeyStoreConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LdapKeyStoreSupplier.html#org.wildfly.swarm.config">LdapKeyStoreSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LdapRealm.html#org.wildfly.swarm.config">LdapRealm</a> <div class="block">A security realm definition backed by LDAP.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LdapRealmConsumer.html#org.wildfly.swarm.config">LdapRealmConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LdapRealmSupplier.html#org.wildfly.swarm.config">LdapRealmSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LogicalPermissionMapper.html#org.wildfly.swarm.config">LogicalPermissionMapper</a> <div class="block">Definition of a logical permission mapper.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LogicalPermissionMapperConsumer.html#org.wildfly.swarm.config">LogicalPermissionMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LogicalPermissionMapperSupplier.html#org.wildfly.swarm.config">LogicalPermissionMapperSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LogicalRoleMapper.html#org.wildfly.swarm.config">LogicalRoleMapper</a> <div class="block">A RoleMapper definition for a RoleMapper that performs a logical operation using two referenced RoleMappers.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LogicalRoleMapperConsumer.html#org.wildfly.swarm.config">LogicalRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LogicalRoleMapperSupplier.html#org.wildfly.swarm.config">LogicalRoleMapperSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MappedRegexRealmMapper.html#org.wildfly.swarm.config">MappedRegexRealmMapper</a> <div class="block">Definition of a RealmMapper implementation that first uses a regular expression to extract the realm name, this is then converted using the configured mapping of realm names.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MappedRegexRealmMapperConsumer.html#org.wildfly.swarm.config">MappedRegexRealmMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MappedRegexRealmMapperSupplier.html#org.wildfly.swarm.config">MappedRegexRealmMapperSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MappedRoleMapper.html#org.wildfly.swarm.config">MappedRoleMapper</a> <div class="block">A RoleMapper definition for a RoleMapper that performs a mapping based on configured map.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MappedRoleMapperConsumer.html#org.wildfly.swarm.config">MappedRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MappedRoleMapperSupplier.html#org.wildfly.swarm.config">MappedRoleMapperSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MechanismProviderFilteringSASLServerFactory.html#org.wildfly.swarm.config">MechanismProviderFilteringSASLServerFactory</a> <div class="block">A SaslServerFactory definition that wraps another SaslServerFactory and enables filtering of mechanisms based on the mechanism name and Provider name and version.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MechanismProviderFilteringSASLServerFactoryConsumer.html#org.wildfly.swarm.config">MechanismProviderFilteringSASLServerFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MechanismProviderFilteringSASLServerFactorySupplier.html#org.wildfly.swarm.config">MechanismProviderFilteringSASLServerFactorySupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PeriodicRotatingFileAuditLog.html#org.wildfly.swarm.config">PeriodicRotatingFileAuditLog</a> <div class="block">An audit log definition for persisting an audit log to a local files rotating the log after a time period derived from the given suffix string, which should be in a format understood by java.time.format.DateTimeFormatter.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PeriodicRotatingFileAuditLogConsumer.html#org.wildfly.swarm.config">PeriodicRotatingFileAuditLogConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PeriodicRotatingFileAuditLogSupplier.html#org.wildfly.swarm.config">PeriodicRotatingFileAuditLogSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PermissionSet.html#org.wildfly.swarm.config">PermissionSet</a> <div class="block">Definition of a permission set.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PermissionSetConsumer.html#org.wildfly.swarm.config">PermissionSetConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PermissionSetSupplier.html#org.wildfly.swarm.config">PermissionSetSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/Policy.html#org.wildfly.swarm.config">Policy</a> <div class="block">A definition that sets up a policy provider.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PolicyConsumer.html#org.wildfly.swarm.config">PolicyConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PolicySupplier.html#org.wildfly.swarm.config">PolicySupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PropertiesRealm.html#org.wildfly.swarm.config">PropertiesRealm</a> <div class="block">A security realm definition backed by properties files.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PropertiesRealmConsumer.html#org.wildfly.swarm.config">PropertiesRealmConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PropertiesRealmSupplier.html#org.wildfly.swarm.config">PropertiesRealmSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderHTTPServerMechanismFactory.html#org.wildfly.swarm.config">ProviderHTTPServerMechanismFactory</a> <div class="block">A http server factory definition where the http server factory is an aggregation of factories from the Provider[]</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderHTTPServerMechanismFactoryConsumer.html#org.wildfly.swarm.config">ProviderHTTPServerMechanismFactoryConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderHTTPServerMechanismFactorySupplier.html#org.wildfly.swarm.config">ProviderHTTPServerMechanismFactorySupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderLoader.html#org.wildfly.swarm.config">ProviderLoader</a> <div class="block">A definition for a Provider loader.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderLoaderConsumer.html#org.wildfly.swarm.config">ProviderLoaderConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderLoaderSupplier.html#org.wildfly.swarm.config">ProviderLoaderSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderSASLServerFactory.html#org.wildfly.swarm.config">ProviderSASLServerFactory</a> <div class="block">A sasl server factory definition where the sasl server factory is an aggregation of factories from the Provider[]</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderSASLServerFactoryConsumer.html#org.wildfly.swarm.config">ProviderSASLServerFactoryConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderSASLServerFactorySupplier.html#org.wildfly.swarm.config">ProviderSASLServerFactorySupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/RegexPrincipalTransformer.html#org.wildfly.swarm.config">RegexPrincipalTransformer</a> <div class="block">A regular expression based principal transformer</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/RegexPrincipalTransformerConsumer.html#org.wildfly.swarm.config">RegexPrincipalTransformerConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/RegexPrincipalTransformerSupplier.html#org.wildfly.swarm.config">RegexPrincipalTransformerSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/RegexValidatingPrincipalTransformer.html#org.wildfly.swarm.config">RegexValidatingPrincipalTransformer</a> <div class="block">A regular expression based principal transformer which uses the regular expression to validate the name.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/RegexValidatingPrincipalTransformerConsumer.html#org.wildfly.swarm.config">RegexValidatingPrincipalTransformerConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/RegexValidatingPrincipalTransformerSupplier.html#org.wildfly.swarm.config">RegexValidatingPrincipalTransformerSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SASLAuthenticationFactory.html#org.wildfly.swarm.config">SASLAuthenticationFactory</a> <div class="block">Resource containing the association of a SecurityDomain with a SaslServerFactory.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SASLAuthenticationFactoryConsumer.html#org.wildfly.swarm.config">SASLAuthenticationFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SASLAuthenticationFactorySupplier.html#org.wildfly.swarm.config">SASLAuthenticationFactorySupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SecurityDomain.html#org.wildfly.swarm.config">SecurityDomain</a> <div class="block">A security domain definition.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SecurityDomainConsumer.html#org.wildfly.swarm.config">SecurityDomainConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SecurityDomainSupplier.html#org.wildfly.swarm.config">SecurityDomainSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServerSslContext.html#org.wildfly.swarm.config">ServerSslContext</a> <div class="block">An SSLContext for use on the server side of a connection.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServerSslContextConsumer.html#org.wildfly.swarm.config">ServerSslContextConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServerSslContextSupplier.html#org.wildfly.swarm.config">ServerSslContextSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServerSslSniContext.html#org.wildfly.swarm.config">ServerSslSniContext</a> <div class="block">A server side SNI Aware SSLContext that selects between an underlying context based on the provided SNI name</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServerSslSniContextConsumer.html#org.wildfly.swarm.config">ServerSslSniContextConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServerSslSniContextSupplier.html#org.wildfly.swarm.config">ServerSslSniContextSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServiceLoaderHTTPServerMechanismFactory.html#org.wildfly.swarm.config">ServiceLoaderHTTPServerMechanismFactory</a> <div class="block">A http server factory definition where the http server factory is an aggregation of factories identified using a ServiceLoader</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServiceLoaderHTTPServerMechanismFactoryConsumer.html#org.wildfly.swarm.config">ServiceLoaderHTTPServerMechanismFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServiceLoaderHTTPServerMechanismFactorySupplier.html#org.wildfly.swarm.config">ServiceLoaderHTTPServerMechanismFactorySupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServiceLoaderSASLServerFactory.html#org.wildfly.swarm.config">ServiceLoaderSASLServerFactory</a> <div class="block">A sasl server factory definition where the sasl server factory is an aggregation of factories identified using a ServiceLoader</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServiceLoaderSASLServerFactoryConsumer.html#org.wildfly.swarm.config">ServiceLoaderSASLServerFactoryConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServiceLoaderSASLServerFactorySupplier.html#org.wildfly.swarm.config">ServiceLoaderSASLServerFactorySupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimplePermissionMapper.html#org.wildfly.swarm.config">SimplePermissionMapper</a> <div class="block">Definition of a simple configured permission mapper.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimplePermissionMapperConsumer.html#org.wildfly.swarm.config">SimplePermissionMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimplePermissionMapperSupplier.html#org.wildfly.swarm.config">SimplePermissionMapperSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimpleRegexRealmMapper.html#org.wildfly.swarm.config">SimpleRegexRealmMapper</a> <div class="block">Definition of a simple RealmMapper that attempts to extract the realm name using the capture group from the regular expression, if that does not provide a match then the delegate RealmMapper is used instead.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimpleRegexRealmMapperConsumer.html#org.wildfly.swarm.config">SimpleRegexRealmMapperConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimpleRegexRealmMapperSupplier.html#org.wildfly.swarm.config">SimpleRegexRealmMapperSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimpleRoleDecoder.html#org.wildfly.swarm.config">SimpleRoleDecoder</a> <div class="block">Definition of a simple RoleDecoder that takes a single attribute and maps it directly to roles.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimpleRoleDecoderConsumer.html#org.wildfly.swarm.config">SimpleRoleDecoderConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimpleRoleDecoderSupplier.html#org.wildfly.swarm.config">SimpleRoleDecoderSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SizeRotatingFileAuditLog.html#org.wildfly.swarm.config">SizeRotatingFileAuditLog</a> <div class="block">An audit log definition for persisting an audit log to a local files rotating the log after the size of the file grows beyond a certain point and keeping a fixed number of backups.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SizeRotatingFileAuditLogConsumer.html#org.wildfly.swarm.config">SizeRotatingFileAuditLogConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SizeRotatingFileAuditLogSupplier.html#org.wildfly.swarm.config">SizeRotatingFileAuditLogSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SyslogAuditLog.html#org.wildfly.swarm.config">SyslogAuditLog</a> <div class="block">An audit logger that sends audit events to a remote syslog server.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SyslogAuditLogConsumer.html#org.wildfly.swarm.config">SyslogAuditLogConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SyslogAuditLogSupplier.html#org.wildfly.swarm.config">SyslogAuditLogSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/TokenRealm.html#org.wildfly.swarm.config">TokenRealm</a> <div class="block">A security realm definition capable of validating and extracting identities from security tokens.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/TokenRealmConsumer.html#org.wildfly.swarm.config">TokenRealmConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/TokenRealmSupplier.html#org.wildfly.swarm.config">TokenRealmSupplier</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/TrustManager.html#org.wildfly.swarm.config">TrustManager</a> <div class="block">A trust manager definition for creating the TrustManager[] as used to create an SSLContext.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/TrustManagerConsumer.html#org.wildfly.swarm.config">TrustManagerConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/TrustManagerSupplier.html#org.wildfly.swarm.config">TrustManagerSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/X500AttributePrincipalDecoder.html#org.wildfly.swarm.config">X500AttributePrincipalDecoder</a> <div class="block">Definition of a X.500 attribute based principal decoder</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/X500AttributePrincipalDecoderConsumer.html#org.wildfly.swarm.config">X500AttributePrincipalDecoderConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/X500AttributePrincipalDecoderSupplier.html#org.wildfly.swarm.config">X500AttributePrincipalDecoderSupplier</a>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.elytron"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a> used by <a href="../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AddPrefixRoleMapper.html#org.wildfly.swarm.config.elytron">AddPrefixRoleMapper</a> <div class="block">A role mapper definition for a role mapper that adds a prefix to each provided.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AddPrefixRoleMapperConsumer.html#org.wildfly.swarm.config.elytron">AddPrefixRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AddSuffixRoleMapper.html#org.wildfly.swarm.config.elytron">AddSuffixRoleMapper</a> <div class="block">A role mapper definition for a role mapper that adds a suffix to each provided.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AddSuffixRoleMapperConsumer.html#org.wildfly.swarm.config.elytron">AddSuffixRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateHTTPServerMechanismFactory.html#org.wildfly.swarm.config.elytron">AggregateHTTPServerMechanismFactory</a> <div class="block">A http server factory definition where the http server factory is an aggregation of other http server factories.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateHTTPServerMechanismFactoryConsumer.html#org.wildfly.swarm.config.elytron">AggregateHTTPServerMechanismFactoryConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregatePrincipalDecoder.html#org.wildfly.swarm.config.elytron">AggregatePrincipalDecoder</a> <div class="block">A principal decoder definition where the principal decoder is an aggregation of other principal decoders.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregatePrincipalDecoderConsumer.html#org.wildfly.swarm.config.elytron">AggregatePrincipalDecoderConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregatePrincipalTransformer.html#org.wildfly.swarm.config.elytron">AggregatePrincipalTransformer</a> <div class="block">A principal transformer aggregating more principal transformers.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregatePrincipalTransformerConsumer.html#org.wildfly.swarm.config.elytron">AggregatePrincipalTransformerConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateProviders.html#org.wildfly.swarm.config.elytron">AggregateProviders</a> <div class="block">An aggregation of two or more Provider[] resources.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateProvidersConsumer.html#org.wildfly.swarm.config.elytron">AggregateProvidersConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateRealm.html#org.wildfly.swarm.config.elytron">AggregateRealm</a> <div class="block">A realm definition that is an aggregation of two realms, one for the authentication steps and one for loading the identity for the authorization steps.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateRealmConsumer.html#org.wildfly.swarm.config.elytron">AggregateRealmConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateRoleMapper.html#org.wildfly.swarm.config.elytron">AggregateRoleMapper</a> <div class="block">A role mapper definition where the role mapper is an aggregation of other role mappers.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateRoleMapperConsumer.html#org.wildfly.swarm.config.elytron">AggregateRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateSASLServerFactory.html#org.wildfly.swarm.config.elytron">AggregateSASLServerFactory</a> <div class="block">A sasl server factory definition where the sasl server factory is an aggregation of other sasl server factories.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateSASLServerFactoryConsumer.html#org.wildfly.swarm.config.elytron">AggregateSASLServerFactoryConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateSecurityEventListener.html#org.wildfly.swarm.config.elytron">AggregateSecurityEventListener</a> <div class="block">An aggregation of two or more security event listener resources.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AggregateSecurityEventListenerConsumer.html#org.wildfly.swarm.config.elytron">AggregateSecurityEventListenerConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AuthenticationConfiguration.html#org.wildfly.swarm.config.elytron">AuthenticationConfiguration</a> <div class="block">An individual authentication configuration definition.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AuthenticationConfiguration.ForwardingMode.html#org.wildfly.swarm.config.elytron">AuthenticationConfiguration.ForwardingMode</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AuthenticationConfigurationConsumer.html#org.wildfly.swarm.config.elytron">AuthenticationConfigurationConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AuthenticationContext.html#org.wildfly.swarm.config.elytron">AuthenticationContext</a> <div class="block">An individual authentication context definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/AuthenticationContextConsumer.html#org.wildfly.swarm.config.elytron">AuthenticationContextConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CachingRealm.html#org.wildfly.swarm.config.elytron">CachingRealm</a> <div class="block">A realm definition that enables caching to another security realm.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CachingRealmConsumer.html#org.wildfly.swarm.config.elytron">CachingRealmConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CertificateAuthorityAccount.html#org.wildfly.swarm.config.elytron">CertificateAuthorityAccount</a> <div class="block">A certificate authority account definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CertificateAuthorityAccount.CertificateAuthority.html#org.wildfly.swarm.config.elytron">CertificateAuthorityAccount.CertificateAuthority</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CertificateAuthorityAccountConsumer.html#org.wildfly.swarm.config.elytron">CertificateAuthorityAccountConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ChainedPrincipalTransformer.html#org.wildfly.swarm.config.elytron">ChainedPrincipalTransformer</a> <div class="block">A principal transformer definition where the principal transformer is a chaining of other principal transformers.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ChainedPrincipalTransformerConsumer.html#org.wildfly.swarm.config.elytron">ChainedPrincipalTransformerConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ClientSslContext.html#org.wildfly.swarm.config.elytron">ClientSslContext</a> <div class="block">An SSLContext for use on the client side of a connection.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ClientSslContext.ClientSslContextResources.html#org.wildfly.swarm.config.elytron">ClientSslContext.ClientSslContextResources</a> <div class="block">Child mutators for ClientSslContext</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ClientSslContextConsumer.html#org.wildfly.swarm.config.elytron">ClientSslContextConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConcatenatingPrincipalDecoder.html#org.wildfly.swarm.config.elytron">ConcatenatingPrincipalDecoder</a> <div class="block">A principal decoder definition where the principal decoder is a concatenation of other principal decoders.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConcatenatingPrincipalDecoderConsumer.html#org.wildfly.swarm.config.elytron">ConcatenatingPrincipalDecoderConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConfigurableHTTPServerMechanismFactory.html#org.wildfly.swarm.config.elytron">ConfigurableHTTPServerMechanismFactory</a> <div class="block">A HTTP server factory definition that wraps another HTTP server factory and applies the specified configuration and filtering.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConfigurableHTTPServerMechanismFactoryConsumer.html#org.wildfly.swarm.config.elytron">ConfigurableHTTPServerMechanismFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConfigurableSASLServerFactory.html#org.wildfly.swarm.config.elytron">ConfigurableSASLServerFactory</a> <div class="block">A SaslServerFactory definition that wraps another SaslServerFactory and applies the specified configuration and filtering.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConfigurableSASLServerFactoryConsumer.html#org.wildfly.swarm.config.elytron">ConfigurableSASLServerFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPermissionMapper.html#org.wildfly.swarm.config.elytron">ConstantPermissionMapper</a> <div class="block">Definition of a permission mapper that always returns the same constant.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPermissionMapperConsumer.html#org.wildfly.swarm.config.elytron">ConstantPermissionMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPrincipalDecoder.html#org.wildfly.swarm.config.elytron">ConstantPrincipalDecoder</a> <div class="block">Definition of a principal decoder that always returns the same constant.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPrincipalDecoderConsumer.html#org.wildfly.swarm.config.elytron">ConstantPrincipalDecoderConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPrincipalTransformer.html#org.wildfly.swarm.config.elytron">ConstantPrincipalTransformer</a> <div class="block">A principal transformer definition for a PrincipalTransformer that always returns the same constant.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantPrincipalTransformerConsumer.html#org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantRealmMapper.html#org.wildfly.swarm.config.elytron">ConstantRealmMapper</a> <div class="block">Definition of a constant RealmMapper that always returns the same value.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantRealmMapperConsumer.html#org.wildfly.swarm.config.elytron">ConstantRealmMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantRoleMapper.html#org.wildfly.swarm.config.elytron">ConstantRoleMapper</a> <div class="block">A role mapper definition where a constant set of roles is always returned.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ConstantRoleMapperConsumer.html#org.wildfly.swarm.config.elytron">ConstantRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CredentialStore.html#org.wildfly.swarm.config.elytron">CredentialStore</a> <div class="block">Credential store to keep alias for sensitive information such as passwords for external services.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CredentialStoreConsumer.html#org.wildfly.swarm.config.elytron">CredentialStoreConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomCredentialSecurityFactory.html#org.wildfly.swarm.config.elytron">CustomCredentialSecurityFactory</a> <div class="block">A custom credential SecurityFactory definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomCredentialSecurityFactoryConsumer.html#org.wildfly.swarm.config.elytron">CustomCredentialSecurityFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomModifiableRealm.html#org.wildfly.swarm.config.elytron">CustomModifiableRealm</a> <div class="block">Custom realm configured as being modifiable will be expected to implement the ModifiableSecurityRealm interface.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomModifiableRealmConsumer.html#org.wildfly.swarm.config.elytron">CustomModifiableRealmConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPermissionMapper.html#org.wildfly.swarm.config.elytron">CustomPermissionMapper</a> <div class="block">Definition of a custom permission mapper.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPermissionMapperConsumer.html#org.wildfly.swarm.config.elytron">CustomPermissionMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPrincipalDecoder.html#org.wildfly.swarm.config.elytron">CustomPrincipalDecoder</a> <div class="block">Definition of a custom principal decoder</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPrincipalDecoderConsumer.html#org.wildfly.swarm.config.elytron">CustomPrincipalDecoderConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPrincipalTransformer.html#org.wildfly.swarm.config.elytron">CustomPrincipalTransformer</a> <div class="block">A custom principal transformer definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomPrincipalTransformerConsumer.html#org.wildfly.swarm.config.elytron">CustomPrincipalTransformerConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRealm.html#org.wildfly.swarm.config.elytron">CustomRealm</a> <div class="block">A custom realm definitions can implement either the SecurityRealm interface or the ModifiableSecurityRealm interface.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRealmConsumer.html#org.wildfly.swarm.config.elytron">CustomRealmConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRealmMapper.html#org.wildfly.swarm.config.elytron">CustomRealmMapper</a> <div class="block">Definition of a custom RealmMapper</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRealmMapperConsumer.html#org.wildfly.swarm.config.elytron">CustomRealmMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRoleDecoder.html#org.wildfly.swarm.config.elytron">CustomRoleDecoder</a> <div class="block">Definition of a custom RoleDecoder</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRoleDecoderConsumer.html#org.wildfly.swarm.config.elytron">CustomRoleDecoderConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRoleMapper.html#org.wildfly.swarm.config.elytron">CustomRoleMapper</a> <div class="block">Definition of a custom RoleMapper</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomRoleMapperConsumer.html#org.wildfly.swarm.config.elytron">CustomRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomSecurityEventListener.html#org.wildfly.swarm.config.elytron">CustomSecurityEventListener</a> <div class="block">A custom security event listener.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/CustomSecurityEventListenerConsumer.html#org.wildfly.swarm.config.elytron">CustomSecurityEventListenerConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/DirContext.html#org.wildfly.swarm.config.elytron">DirContext</a> <div class="block">The configuration to connect to a directory (LDAP) server.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/DirContext.ReferralMode.html#org.wildfly.swarm.config.elytron">DirContext.ReferralMode</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/DirContextConsumer.html#org.wildfly.swarm.config.elytron">DirContextConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FileAuditLog.html#org.wildfly.swarm.config.elytron">FileAuditLog</a> <div class="block">An audit logger that logs to a local file.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FileAuditLogConsumer.html#org.wildfly.swarm.config.elytron">FileAuditLogConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FilesystemRealm.html#org.wildfly.swarm.config.elytron">FilesystemRealm</a> <div class="block">A simple security realm definition backed by the filesystem.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FilesystemRealmConsumer.html#org.wildfly.swarm.config.elytron">FilesystemRealmConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FilteringKeyStore.html#org.wildfly.swarm.config.elytron">FilteringKeyStore</a> <div class="block">A filtering KeyStore definition.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/FilteringKeyStoreConsumer.html#org.wildfly.swarm.config.elytron">FilteringKeyStoreConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/Format.html#org.wildfly.swarm.config.elytron">Format</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/HTTPAuthenticationFactory.html#org.wildfly.swarm.config.elytron">HTTPAuthenticationFactory</a> <div class="block">Resource containing the association of a SecurityDomain with a HttpServerAuthenticationMechanismFactory.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/HTTPAuthenticationFactoryConsumer.html#org.wildfly.swarm.config.elytron">HTTPAuthenticationFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/IdentityRealm.html#org.wildfly.swarm.config.elytron">IdentityRealm</a> <div class="block">Realm definition for a realm which contains a single pre-defined identity.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/IdentityRealmConsumer.html#org.wildfly.swarm.config.elytron">IdentityRealmConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/JaspiConfiguration.html#org.wildfly.swarm.config.elytron">JaspiConfiguration</a> <div class="block">Resource containing the JASPI ServerAuthModule configuration for the servlet profile.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/JaspiConfigurationConsumer.html#org.wildfly.swarm.config.elytron">JaspiConfigurationConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/JDBCRealm.html#org.wildfly.swarm.config.elytron">JDBCRealm</a> <div class="block">A security realm definition backed by database using JDBC.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/JDBCRealmConsumer.html#org.wildfly.swarm.config.elytron">JDBCRealmConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KerberosSecurityFactory.html#org.wildfly.swarm.config.elytron">KerberosSecurityFactory</a> <div class="block">A security factory for obtaining a GSSCredential for use during authentication.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KerberosSecurityFactoryConsumer.html#org.wildfly.swarm.config.elytron">KerberosSecurityFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyManager.html#org.wildfly.swarm.config.elytron">KeyManager</a> <div class="block">A key manager definition for creating the KeyManager as used to create an SSLContext.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyManagerConsumer.html#org.wildfly.swarm.config.elytron">KeyManagerConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyStore.html#org.wildfly.swarm.config.elytron">KeyStore</a> <div class="block">A KeyStore definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyStoreConsumer.html#org.wildfly.swarm.config.elytron">KeyStoreConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyStoreRealm.html#org.wildfly.swarm.config.elytron">KeyStoreRealm</a> <div class="block">A security realm definition backed by a key store.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/KeyStoreRealmConsumer.html#org.wildfly.swarm.config.elytron">KeyStoreRealmConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LdapKeyStore.html#org.wildfly.swarm.config.elytron">LdapKeyStore</a> <div class="block">A LdapKeyStore definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LdapKeyStoreConsumer.html#org.wildfly.swarm.config.elytron">LdapKeyStoreConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LdapRealm.html#org.wildfly.swarm.config.elytron">LdapRealm</a> <div class="block">A security realm definition backed by LDAP.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LdapRealmConsumer.html#org.wildfly.swarm.config.elytron">LdapRealmConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LogicalPermissionMapper.html#org.wildfly.swarm.config.elytron">LogicalPermissionMapper</a> <div class="block">Definition of a logical permission mapper.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LogicalPermissionMapper.LogicalOperation.html#org.wildfly.swarm.config.elytron">LogicalPermissionMapper.LogicalOperation</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LogicalPermissionMapperConsumer.html#org.wildfly.swarm.config.elytron">LogicalPermissionMapperConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LogicalRoleMapper.html#org.wildfly.swarm.config.elytron">LogicalRoleMapper</a> <div class="block">A RoleMapper definition for a RoleMapper that performs a logical operation using two referenced RoleMappers.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LogicalRoleMapper.LogicalOperation.html#org.wildfly.swarm.config.elytron">LogicalRoleMapper.LogicalOperation</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/LogicalRoleMapperConsumer.html#org.wildfly.swarm.config.elytron">LogicalRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MappedRegexRealmMapper.html#org.wildfly.swarm.config.elytron">MappedRegexRealmMapper</a> <div class="block">Definition of a RealmMapper implementation that first uses a regular expression to extract the realm name, this is then converted using the configured mapping of realm names.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MappedRegexRealmMapperConsumer.html#org.wildfly.swarm.config.elytron">MappedRegexRealmMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MappedRoleMapper.html#org.wildfly.swarm.config.elytron">MappedRoleMapper</a> <div class="block">A RoleMapper definition for a RoleMapper that performs a mapping based on configured map.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MappedRoleMapperConsumer.html#org.wildfly.swarm.config.elytron">MappedRoleMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MechanismProviderFilteringSASLServerFactory.html#org.wildfly.swarm.config.elytron">MechanismProviderFilteringSASLServerFactory</a> <div class="block">A SaslServerFactory definition that wraps another SaslServerFactory and enables filtering of mechanisms based on the mechanism name and Provider name and version.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/MechanismProviderFilteringSASLServerFactoryConsumer.html#org.wildfly.swarm.config.elytron">MechanismProviderFilteringSASLServerFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PeriodicRotatingFileAuditLog.html#org.wildfly.swarm.config.elytron">PeriodicRotatingFileAuditLog</a> <div class="block">An audit log definition for persisting an audit log to a local files rotating the log after a time period derived from the given suffix string, which should be in a format understood by java.time.format.DateTimeFormatter.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PeriodicRotatingFileAuditLogConsumer.html#org.wildfly.swarm.config.elytron">PeriodicRotatingFileAuditLogConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PermissionSet.html#org.wildfly.swarm.config.elytron">PermissionSet</a> <div class="block">Definition of a permission set.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PermissionSetConsumer.html#org.wildfly.swarm.config.elytron">PermissionSetConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/Policy.html#org.wildfly.swarm.config.elytron">Policy</a> <div class="block">A definition that sets up a policy provider.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PolicyConsumer.html#org.wildfly.swarm.config.elytron">PolicyConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PropertiesRealm.html#org.wildfly.swarm.config.elytron">PropertiesRealm</a> <div class="block">A security realm definition backed by properties files.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/PropertiesRealmConsumer.html#org.wildfly.swarm.config.elytron">PropertiesRealmConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderHTTPServerMechanismFactory.html#org.wildfly.swarm.config.elytron">ProviderHTTPServerMechanismFactory</a> <div class="block">A http server factory definition where the http server factory is an aggregation of factories from the Provider[]</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderHTTPServerMechanismFactoryConsumer.html#org.wildfly.swarm.config.elytron">ProviderHTTPServerMechanismFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderLoader.html#org.wildfly.swarm.config.elytron">ProviderLoader</a> <div class="block">A definition for a Provider loader.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderLoaderConsumer.html#org.wildfly.swarm.config.elytron">ProviderLoaderConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderSASLServerFactory.html#org.wildfly.swarm.config.elytron">ProviderSASLServerFactory</a> <div class="block">A sasl server factory definition where the sasl server factory is an aggregation of factories from the Provider[]</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ProviderSASLServerFactoryConsumer.html#org.wildfly.swarm.config.elytron">ProviderSASLServerFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/RegexPrincipalTransformer.html#org.wildfly.swarm.config.elytron">RegexPrincipalTransformer</a> <div class="block">A regular expression based principal transformer</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/RegexPrincipalTransformerConsumer.html#org.wildfly.swarm.config.elytron">RegexPrincipalTransformerConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/RegexValidatingPrincipalTransformer.html#org.wildfly.swarm.config.elytron">RegexValidatingPrincipalTransformer</a> <div class="block">A regular expression based principal transformer which uses the regular expression to validate the name.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/RegexValidatingPrincipalTransformerConsumer.html#org.wildfly.swarm.config.elytron">RegexValidatingPrincipalTransformerConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SASLAuthenticationFactory.html#org.wildfly.swarm.config.elytron">SASLAuthenticationFactory</a> <div class="block">Resource containing the association of a SecurityDomain with a SaslServerFactory.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SASLAuthenticationFactoryConsumer.html#org.wildfly.swarm.config.elytron">SASLAuthenticationFactoryConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SecurityDomain.html#org.wildfly.swarm.config.elytron">SecurityDomain</a> <div class="block">A security domain definition.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SecurityDomainConsumer.html#org.wildfly.swarm.config.elytron">SecurityDomainConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServerSslContext.html#org.wildfly.swarm.config.elytron">ServerSslContext</a> <div class="block">An SSLContext for use on the server side of a connection.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServerSslContext.ServerSslContextResources.html#org.wildfly.swarm.config.elytron">ServerSslContext.ServerSslContextResources</a> <div class="block">Child mutators for ServerSslContext</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServerSslContextConsumer.html#org.wildfly.swarm.config.elytron">ServerSslContextConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServerSslSniContext.html#org.wildfly.swarm.config.elytron">ServerSslSniContext</a> <div class="block">A server side SNI Aware SSLContext that selects between an underlying context based on the provided SNI name</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServerSslSniContextConsumer.html#org.wildfly.swarm.config.elytron">ServerSslSniContextConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServiceLoaderHTTPServerMechanismFactory.html#org.wildfly.swarm.config.elytron">ServiceLoaderHTTPServerMechanismFactory</a> <div class="block">A http server factory definition where the http server factory is an aggregation of factories identified using a ServiceLoader</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServiceLoaderHTTPServerMechanismFactoryConsumer.html#org.wildfly.swarm.config.elytron">ServiceLoaderHTTPServerMechanismFactoryConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServiceLoaderSASLServerFactory.html#org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactory</a> <div class="block">A sasl server factory definition where the sasl server factory is an aggregation of factories identified using a ServiceLoader</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/ServiceLoaderSASLServerFactoryConsumer.html#org.wildfly.swarm.config.elytron">ServiceLoaderSASLServerFactoryConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimplePermissionMapper.html#org.wildfly.swarm.config.elytron">SimplePermissionMapper</a> <div class="block">Definition of a simple configured permission mapper.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimplePermissionMapper.MappingMode.html#org.wildfly.swarm.config.elytron">SimplePermissionMapper.MappingMode</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimplePermissionMapperConsumer.html#org.wildfly.swarm.config.elytron">SimplePermissionMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimpleRegexRealmMapper.html#org.wildfly.swarm.config.elytron">SimpleRegexRealmMapper</a> <div class="block">Definition of a simple RealmMapper that attempts to extract the realm name using the capture group from the regular expression, if that does not provide a match then the delegate RealmMapper is used instead.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimpleRegexRealmMapperConsumer.html#org.wildfly.swarm.config.elytron">SimpleRegexRealmMapperConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimpleRoleDecoder.html#org.wildfly.swarm.config.elytron">SimpleRoleDecoder</a> <div class="block">Definition of a simple RoleDecoder that takes a single attribute and maps it directly to roles.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SimpleRoleDecoderConsumer.html#org.wildfly.swarm.config.elytron">SimpleRoleDecoderConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SizeRotatingFileAuditLog.html#org.wildfly.swarm.config.elytron">SizeRotatingFileAuditLog</a> <div class="block">An audit log definition for persisting an audit log to a local files rotating the log after the size of the file grows beyond a certain point and keeping a fixed number of backups.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SizeRotatingFileAuditLogConsumer.html#org.wildfly.swarm.config.elytron">SizeRotatingFileAuditLogConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SslSession.html#org.wildfly.swarm.config.elytron">SslSession</a> <div class="block">A currently established SSL session.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SslSessionConsumer.html#org.wildfly.swarm.config.elytron">SslSessionConsumer</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SslSessionSupplier.html#org.wildfly.swarm.config.elytron">SslSessionSupplier</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/State.html#org.wildfly.swarm.config.elytron">State</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SyslogAuditLog.html#org.wildfly.swarm.config.elytron">SyslogAuditLog</a> <div class="block">An audit logger that sends audit events to a remote syslog server.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SyslogAuditLog.Transport.html#org.wildfly.swarm.config.elytron">SyslogAuditLog.Transport</a>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/SyslogAuditLogConsumer.html#org.wildfly.swarm.config.elytron">SyslogAuditLogConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/TokenRealm.html#org.wildfly.swarm.config.elytron">TokenRealm</a> <div class="block">A security realm definition capable of validating and extracting identities from security tokens.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/TokenRealmConsumer.html#org.wildfly.swarm.config.elytron">TokenRealmConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/TrustManager.html#org.wildfly.swarm.config.elytron">TrustManager</a> <div class="block">A trust manager definition for creating the TrustManager[] as used to create an SSLContext.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/TrustManagerConsumer.html#org.wildfly.swarm.config.elytron">TrustManagerConsumer</a>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/X500AttributePrincipalDecoder.html#org.wildfly.swarm.config.elytron">X500AttributePrincipalDecoder</a> <div class="block">Definition of a X.500 attribute based principal decoder</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../../org/wildfly/swarm/config/elytron/class-use/X500AttributePrincipalDecoderConsumer.html#org.wildfly.swarm.config.elytron">X500AttributePrincipalDecoderConsumer</a>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.3.0.Final-SNAPSHOT</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/elytron/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2.3.0.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/elytron/package-use.html
HTML
apache-2.0
108,868
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_112) on Tue Aug 01 17:30:01 MST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>org.wildfly.swarm.mail Class Hierarchy (Public javadocs 2017.8.1 API)</title> <meta name="date" content="2017-08-01"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.wildfly.swarm.mail Class Hierarchy (Public javadocs 2017.8.1 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.8.1</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/wildfly/swarm/logstash/package-tree.html">Prev</a></li> <li><a href="../../../../org/wildfly/swarm/mail/detect/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/wildfly/swarm/mail/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">Hierarchy For Package org.wildfly.swarm.mail</h1> <span class="packageHierarchyLabel">Package Hierarchies:</span> <ul class="horizontal"> <li><a href="../../../../overview-tree.html">All Packages</a></li> </ul> </div> <div class="contentContainer"> <h2 title="Class Hierarchy">Class Hierarchy</h2> <ul> <li type="circle">java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a> <ul> <li type="circle">&lt;any&gt; <ul> <li type="circle">org.wildfly.swarm.mail.<a href="../../../../org/wildfly/swarm/mail/EnhancedMailSession.html" title="class in org.wildfly.swarm.mail"><span class="typeNameLink">EnhancedMailSession</span></a></li> <li type="circle">org.wildfly.swarm.mail.<a href="../../../../org/wildfly/swarm/mail/EnhancedSMTPServer.html" title="class in org.wildfly.swarm.mail"><span class="typeNameLink">EnhancedSMTPServer</span></a></li> <li type="circle">org.wildfly.swarm.mail.<a href="../../../../org/wildfly/swarm/mail/MailFraction.html" title="class in org.wildfly.swarm.mail"><span class="typeNameLink">MailFraction</span></a> (implements org.wildfly.swarm.spi.api.<a href="../../../../org/wildfly/swarm/spi/api/Fraction.html" title="interface in org.wildfly.swarm.spi.api">Fraction</a>&lt;T&gt;)</li> </ul> </li> </ul> </li> </ul> <h2 title="Interface Hierarchy">Interface Hierarchy</h2> <ul> <li type="circle">org.wildfly.swarm.mail.<a href="../../../../org/wildfly/swarm/mail/EnhancedMailSessionConsumer.html" title="interface in org.wildfly.swarm.mail"><span class="typeNameLink">EnhancedMailSessionConsumer</span></a></li> <li type="circle">org.wildfly.swarm.mail.<a href="../../../../org/wildfly/swarm/mail/EnhancedSMTPServerConsumer.html" title="interface in org.wildfly.swarm.mail"><span class="typeNameLink">EnhancedSMTPServerConsumer</span></a></li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li class="navBarCell1Rev">Tree</li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.8.1</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/wildfly/swarm/logstash/package-tree.html">Prev</a></li> <li><a href="../../../../org/wildfly/swarm/mail/detect/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/wildfly/swarm/mail/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2017.8.1/apidocs/org/wildfly/swarm/mail/package-tree.html
HTML
apache-2.0
6,349
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Wed Jun 10 10:20:19 MST 2020 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.container.config.ConfigViewFactory (BOM: * : All 2.6.1.Final-SNAPSHOT API)</title> <meta name="date" content="2020-06-10"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.wildfly.swarm.container.config.ConfigViewFactory (BOM: * : All 2.6.1.Final-SNAPSHOT API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/container/config/ConfigViewFactory.html" title="class in org.wildfly.swarm.container.config">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.6.1.Final-SNAPSHOT</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/container/config/class-use/ConfigViewFactory.html" target="_top">Frames</a></li> <li><a href="ConfigViewFactory.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.container.config.ConfigViewFactory" class="title">Uses of Class<br>org.wildfly.swarm.container.config.ConfigViewFactory</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/wildfly/swarm/container/config/ConfigViewFactory.html" title="class in org.wildfly.swarm.container.config">ConfigViewFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.container.config">org.wildfly.swarm.container.config</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.container.config"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/container/config/ConfigViewFactory.html" title="class in org.wildfly.swarm.container.config">ConfigViewFactory</a> in <a href="../../../../../../org/wildfly/swarm/container/config/package-summary.html">org.wildfly.swarm.container.config</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/container/config/package-summary.html">org.wildfly.swarm.container.config</a> that return <a href="../../../../../../org/wildfly/swarm/container/config/ConfigViewFactory.html" title="class in org.wildfly.swarm.container.config">ConfigViewFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/wildfly/swarm/container/config/ConfigViewFactory.html" title="class in org.wildfly.swarm.container.config">ConfigViewFactory</a></code></td> <td class="colLast"><span class="typeNameLabel">ConfigViewFactory.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/container/config/ConfigViewFactory.html#defaultFactory--">defaultFactory</a></span>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../org/wildfly/swarm/container/config/ConfigViewFactory.html" title="class in org.wildfly.swarm.container.config">ConfigViewFactory</a></code></td> <td class="colLast"><span class="typeNameLabel">ConfigViewFactory.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/container/config/ConfigViewFactory.html#defaultFactory-java.util.Properties-java.util.Map-">defaultFactory</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/util/Properties.html?is-external=true" title="class or interface in java.util">Properties</a>&nbsp;properties, <a href="https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&gt;&nbsp;environment)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/container/config/ConfigViewFactory.html" title="class in org.wildfly.swarm.container.config">ConfigViewFactory</a></code></td> <td class="colLast"><span class="typeNameLabel">ConfigViewFactory.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/container/config/ConfigViewFactory.html#load-java.lang.String-">load</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;profileName)</code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/container/config/ConfigViewFactory.html" title="class in org.wildfly.swarm.container.config">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.6.1.Final-SNAPSHOT</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/container/config/class-use/ConfigViewFactory.html" target="_top">Frames</a></li> <li><a href="ConfigViewFactory.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2020 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2.6.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/container/config/class-use/ConfigViewFactory.html
HTML
apache-2.0
9,088
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Sun Mar 17 11:03:32 MST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>ConstantPrincipalTransformerConsumer (BOM: * : All 2.4.0.Final API)</title> <meta name="date" content="2019-03-17"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="ConstantPrincipalTransformerConsumer (BOM: * : All 2.4.0.Final API)"; } } catch(err) { } //--> var methods = {"i0":6,"i1":18}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/ConstantPrincipalTransformerConsumer.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.4.0.Final</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformer.html" title="class in org.wildfly.swarm.config.elytron"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerSupplier.html" title="interface in org.wildfly.swarm.config.elytron"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" target="_top">Frames</a></li> <li><a href="ConstantPrincipalTransformerConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.wildfly.swarm.config.elytron</div> <h2 title="Interface ConstantPrincipalTransformerConsumer" class="title">Interface ConstantPrincipalTransformerConsumer&lt;T extends <a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformer.html" title="class in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformer</a>&lt;T&gt;&gt;</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Functional Interface:</dt> <dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd> </dl> <hr> <br> <pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a> public interface <span class="typeNameLabel">ConstantPrincipalTransformerConsumer&lt;T extends <a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformer.html" title="class in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformer</a>&lt;T&gt;&gt;</span></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html#accept-T-">accept</a></span>(<a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="type parameter in ConstantPrincipalTransformerConsumer">T</a>&nbsp;value)</code> <div class="block">Configure a pre-constructed instance of ConstantPrincipalTransformer resource</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>default <a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="type parameter in ConstantPrincipalTransformerConsumer">T</a>&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html#andThen-org.wildfly.swarm.config.elytron.ConstantPrincipalTransformerConsumer-">andThen</a></span>(<a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="type parameter in ConstantPrincipalTransformerConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="accept-org.wildfly.swarm.config.elytron.ConstantPrincipalTransformer-"> <!-- --> </a><a name="accept-T-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>accept</h4> <pre>void&nbsp;accept(<a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="type parameter in ConstantPrincipalTransformerConsumer">T</a>&nbsp;value)</pre> <div class="block">Configure a pre-constructed instance of ConstantPrincipalTransformer resource</div> </li> </ul> <a name="andThen-org.wildfly.swarm.config.elytron.ConstantPrincipalTransformerConsumer-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>andThen</h4> <pre>default&nbsp;<a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="type parameter in ConstantPrincipalTransformerConsumer">T</a>&gt;&nbsp;andThen(<a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ConstantPrincipalTransformerConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" title="type parameter in ConstantPrincipalTransformerConsumer">T</a>&gt;&nbsp;after)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/ConstantPrincipalTransformerConsumer.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.4.0.Final</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformer.html" title="class in org.wildfly.swarm.config.elytron"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerSupplier.html" title="interface in org.wildfly.swarm.config.elytron"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html" target="_top">Frames</a></li> <li><a href="ConstantPrincipalTransformerConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2.4.0.Final/apidocs/org/wildfly/swarm/config/elytron/ConstantPrincipalTransformerConsumer.html
HTML
apache-2.0
12,007
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_92) on Sat Jul 30 10:44:58 CEST 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>RequestListener (Togglz 2.3.0.Final API)</title> <meta name="date" content="2016-07-30"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="RequestListener (Togglz 2.3.0.Final API)"; } } catch(err) { } //--> var methods = {"i0":6,"i1":6}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/RequestListener.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/togglz/servlet/spi/CSRFTokenProvider.html" title="interface in org.togglz.servlet.spi"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/togglz/servlet/spi/ServletContextBeanFinder.html" title="class in org.togglz.servlet.spi"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/togglz/servlet/spi/RequestListener.html" target="_top">Frames</a></li> <li><a href="RequestListener.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.togglz.servlet.spi</div> <h2 title="Interface RequestListener" class="title">Interface RequestListener</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Superinterfaces:</dt> <dd><a href="../../../../org/togglz/core/util/Weighted.html" title="interface in org.togglz.core.util">Weighted</a></dd> </dl> <dl> <dt>All Known Implementing Classes:</dt> <dd><a href="../../../../org/togglz/servlet/util/HttpServletRequestHolderListener.html" title="class in org.togglz.servlet.util">HttpServletRequestHolderListener</a></dd> </dl> <hr> <br> <pre>public interface <span class="typeNameLabel">RequestListener</span> extends <a href="../../../../org/togglz/core/util/Weighted.html" title="interface in org.togglz.core.util">Weighted</a></pre> <div class="block">SPI for components that want to be notified about requests.</div> <dl> <dt><span class="simpleTagLabel">Author:</span></dt> <dd>Christian Kaltepoth</dd> </dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== NESTED CLASS SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="nested.class.summary"> <!-- --> </a> <h3>Nested Class Summary</h3> <ul class="blockList"> <li class="blockList"><a name="nested.classes.inherited.from.class.org.togglz.core.util.Weighted"> <!-- --> </a> <h3>Nested classes/interfaces inherited from interface&nbsp;org.togglz.core.util.<a href="../../../../org/togglz/core/util/Weighted.html" title="interface in org.togglz.core.util">Weighted</a></h3> <code><a href="../../../../org/togglz/core/util/Weighted.WeightedComparator.html" title="class in org.togglz.core.util">Weighted.WeightedComparator</a></code></li> </ul> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/togglz/servlet/spi/RequestListener.html#begin-javax.servlet.http.HttpServletRequest-javax.servlet.http.HttpServletResponse-">begin</a></span>(<a href="http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html?is-external=true" title="class or interface in javax.servlet.http">HttpServletRequest</a>&nbsp;request, <a href="http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletResponse.html?is-external=true" title="class or interface in javax.servlet.http">HttpServletResponse</a>&nbsp;response)</code> <div class="block">Called before the <a href="../../../../org/togglz/servlet/TogglzFilter.html" title="class in org.togglz.servlet"><code>TogglzFilter</code></a> processes a request.</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/togglz/servlet/spi/RequestListener.html#end-javax.servlet.http.HttpServletRequest-javax.servlet.http.HttpServletResponse-">end</a></span>(<a href="http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html?is-external=true" title="class or interface in javax.servlet.http">HttpServletRequest</a>&nbsp;request, <a href="http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletResponse.html?is-external=true" title="class or interface in javax.servlet.http">HttpServletResponse</a>&nbsp;response)</code> <div class="block">Called after the <a href="../../../../org/togglz/servlet/TogglzFilter.html" title="class in org.togglz.servlet"><code>TogglzFilter</code></a> processed a request.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.org.togglz.core.util.Weighted"> <!-- --> </a> <h3>Methods inherited from interface&nbsp;org.togglz.core.util.<a href="../../../../org/togglz/core/util/Weighted.html" title="interface in org.togglz.core.util">Weighted</a></h3> <code><a href="../../../../org/togglz/core/util/Weighted.html#priority--">priority</a></code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="begin-javax.servlet.http.HttpServletRequest-javax.servlet.http.HttpServletResponse-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>begin</h4> <pre>void&nbsp;begin(<a href="http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html?is-external=true" title="class or interface in javax.servlet.http">HttpServletRequest</a>&nbsp;request, <a href="http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletResponse.html?is-external=true" title="class or interface in javax.servlet.http">HttpServletResponse</a>&nbsp;response)</pre> <div class="block">Called before the <a href="../../../../org/togglz/servlet/TogglzFilter.html" title="class in org.togglz.servlet"><code>TogglzFilter</code></a> processes a request.</div> </li> </ul> <a name="end-javax.servlet.http.HttpServletRequest-javax.servlet.http.HttpServletResponse-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>end</h4> <pre>void&nbsp;end(<a href="http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html?is-external=true" title="class or interface in javax.servlet.http">HttpServletRequest</a>&nbsp;request, <a href="http://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletResponse.html?is-external=true" title="class or interface in javax.servlet.http">HttpServletResponse</a>&nbsp;response)</pre> <div class="block">Called after the <a href="../../../../org/togglz/servlet/TogglzFilter.html" title="class in org.togglz.servlet"><code>TogglzFilter</code></a> processed a request.</div> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/RequestListener.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/togglz/servlet/spi/CSRFTokenProvider.html" title="interface in org.togglz.servlet.spi"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/togglz/servlet/spi/ServletContextBeanFinder.html" title="class in org.togglz.servlet.spi"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/togglz/servlet/spi/RequestListener.html" target="_top">Frames</a></li> <li><a href="RequestListener.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016. All Rights Reserved.</small></p> </body> </html>
togglz/togglz-site
apidocs/2.3.0.Final/org/togglz/servlet/spi/RequestListener.html
HTML
apache-2.0
12,466
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_112) on Tue Sep 12 14:31:21 MST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>StateTransferComponentSupplier (BOM: * : All 2017.9.5 API)</title> <meta name="date" content="2017-09-12"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="StateTransferComponentSupplier (BOM: * : All 2017.9.5 API)"; } } catch(err) { } //--> var methods = {"i0":6}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/StateTransferComponentSupplier.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.9.5</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferComponentConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPool.html" title="class in org.wildfly.swarm.config.infinispan.cache_container"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/infinispan/cache_container/StateTransferComponentSupplier.html" target="_top">Frames</a></li> <li><a href="StateTransferComponentSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.wildfly.swarm.config.infinispan.cache_container</div> <h2 title="Interface StateTransferComponentSupplier" class="title">Interface StateTransferComponentSupplier&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferComponent.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">StateTransferComponent</a>&gt;</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Functional Interface:</dt> <dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd> </dl> <hr> <br> <pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a> public interface <span class="typeNameLabel">StateTransferComponentSupplier&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferComponent.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">StateTransferComponent</a>&gt;</span></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferComponent.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">StateTransferComponent</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferComponentSupplier.html#get--">get</a></span>()</code> <div class="block">Constructed instance of StateTransferComponent resource</div> </td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="get--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>get</h4> <pre><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferComponent.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">StateTransferComponent</a>&nbsp;get()</pre> <div class="block">Constructed instance of StateTransferComponent resource</div> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>The instance</dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/StateTransferComponentSupplier.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.9.5</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferComponentConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPool.html" title="class in org.wildfly.swarm.config.infinispan.cache_container"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/infinispan/cache_container/StateTransferComponentSupplier.html" target="_top">Frames</a></li> <li><a href="StateTransferComponentSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2017.9.5/apidocs/org/wildfly/swarm/config/infinispan/cache_container/StateTransferComponentSupplier.html
HTML
apache-2.0
9,947
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=edge, chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>读伴儿成绩单</title> <link rel="stylesheet" type="text/css" href="css/page_main.css"> <link rel="stylesheet" type="text/css" href="css/show_page.css"> </head> <body> <div class="show_page"> <div class="result_box"> <h3 class="title_r"> <img src="image/crown.png"> 王楠同学的读伴儿成绩单 </h3> <ul class="list_text"> <li> <span>全国排名:</span> <b>TOP 7</b> </li> <li> <span>坚果数:</span> <b>5426</b> 颗 <img class="nut_1" src="image/nut1.png"> </li> <li> <span>累计登录天数:</span> <b>30<img class="star_i" src="image/star_i.png"></b> 天 <img class="nut_2" src="image/nut2.png"> </li> </ul> <img class="nut_fox" src="image/nut_fox.png"> <a class="my_show" href=""><img src="image/nut3.png"><span>进入读伴儿去晒成绩</span></a> </div> </div> </body> </html>
ireneAi/readingmate
微信端html页面/微信1019html/show_page.html
HTML
apache-2.0
1,104
<include file='public:header'/> <header class="top-fixed bg-yellow bg-inverse"> <div class="top-back"> <a class="top-addr" href="<{:U('index/index')}>"><i class="icon-angle-left"></i></a> </div> <div class="top-title"> 买单系统 </div> <div class="top-share"> <a href="<{:U('pay/create')}>" class="top-addr icon-plus"> 增加</a> </div> </header> <style> .button-toolbar .button-group {padding: 0 10px;} .list-media-x { margin-top: 0.0rem;} .list-media-x p {margin-top: 0.0rem;} </style> <div class="line xiaoqu-search"> <form method="post" action="<{:U('pay/index')}>" id="form1" class="form1"> <div class="form-group"> <div class="field"> <div class="input-group"> <span class="addbtn"><button type="button" class="button icon-search"></button></span> <input type="text" class="input" name="keyword" size="50" value="<{$keyword}>" placeholder="请输入会员手机号码" /> <span class="addbtn"><button type="submit" class="button">搜索</button></span> </div> </div> </div> </form> </div> <div class="blank-10 bg"></div> <div class="list-media-x" id="list-media"> <ul> <foreach name="list" item="var"> <li class="line "> <dt><a class="x3">ID:<{$var.id}></a><a class="x9 text-right">创建时间:<{$var.create_time|date='Y-m-d H:i',###}></a></dt> <dd class="zhong"> <div class="12"> <p>会员手机:<{$var.mobile}></p> <p>消费金额:<{$var.total}></p> <p>优惠券抵扣:-<{$var.yhk}></p> <if condition="$var['integral']"> <p>使用秀币:<{$var.integral}>(抵扣:-<{:round($var['integral']/100,2)}>)</p> </if> <p>备注:<{$var['remark']}></p> <p>赠品消费:<{$var['keywords']}></p> <foreach name="var['zp']" item="row"> <p><{$key}> x <{$row}></a></p> </foreach> </div> </dd> <dl> <p class="text-left x7"> <a class="margin-top">实付:&nbsp;<font color="red"><{:round($var['total'] - $var['yhk'],2)}></font></a> <br> <if condition="$var['pay_time']"> <a class="margin-top">付款时间:&nbsp;<font color="#999"><{$var.create_time|date='Y-m-d H:i',###}></font></a> </if> </p> <p class="text-right x5"> <eq name="var.status" value="1"> <a class="button button-small bg-gray">等待付款</a> <!--<a class="button button-small bg-blue" href="<{:U('news/edit',array('article_id'=>$var['article_id']))}>">编辑</a>--> <a href="<{:U('pay/pay',array('id'=>$var['id']))}>" class="button button-small margin-top bg-dot">线下支付</a> <a href="javascript:void(0);" rel="<{$var.id}>" class="jquery-delete button button-small margin-top bg-dot">删除</a> <else/> <eq name="var.is_offline" value="1"> <a class="button button-small bg-green margin-top">已完成</a> <else/> <a class="button button-small bg-green margin-top">已完成(线下)</a> </eq> </eq> </p> </dl> </li> <div class="blank-10 bg"></div> </foreach> </ul> </div> <div class="blank-20"></div> <div class="container login-open"> <h5 style="text-align:center"><{$page}><!--分页代码不要忘记加--> </h5> </div> <script> $(document).ready(function () { $(document).on('click', ".jquery-delete", function (e) { var id = $(this).attr('rel'); layer.confirm('您确定要删除?', { skin: 'layer-ext-demo', area: ['50%', 'auto'], //宽高 btn: ['是的', '不'], //按钮 shade: false //不显示遮罩 }, function () { $.post("<{:U('pay/delete')}>", {id: id}, function (result) { if (result.status == "success") { layer.msg(result.msg); setTimeout(function () { location.reload(); }, 1000); } else { layer.msg(result.msg); } }, 'json'); }); }); }); </script> <include file="public:footer"/>
ksyydream/llx_admin
themes/default/Store/pay/index.html
HTML
apache-2.0
3,941
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.6.0_27) on Mon Dec 02 12:06:31 MST 2013 --> <title>AdapterChoices</title> <meta name="date" content="2013-12-02"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="AdapterChoices"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/AdapterChoices.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../ca/ualberta/cmput301f13t13/storyhoard/gui/AdapterChapters.html" title="class in ca.ualberta.cmput301f13t13.storyhoard.gui"><span class="strong">PREV CLASS</span></a></li> <li><a href="../../../../../ca/ualberta/cmput301f13t13/storyhoard/gui/AdapterStories.html" title="class in ca.ualberta.cmput301f13t13.storyhoard.gui"><span class="strong">NEXT CLASS</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?ca/ualberta/cmput301f13t13/storyhoard/gui/AdapterChoices.html" target="_top">FRAMES</a></li> <li><a href="AdapterChoices.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>SUMMARY:&nbsp;</li> <li>NESTED&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">CONSTR</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">METHOD</a></li> </ul> <ul class="subNavList"> <li>DETAIL:&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">CONSTR</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">METHOD</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <p class="subTitle">ca.ualberta.cmput301f13t13.storyhoard.gui</p> <h2 title="Class AdapterChoices" class="title">Class AdapterChoices</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li><any></li> <li> <ul class="inheritance"> <li>ca.ualberta.cmput301f13t13.storyhoard.gui.AdapterChoices</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <strong>AdapterChoices</strong> extends <any></pre> <div class="block">Class which handles taking the Choice object and adapting it to a displayable view type. This extends the array adapter for choice objects. This users the adapter design pattern.</div> <dl><dt><span class="strong">Author:</span></dt> <dd>Alexander Wong</dd></dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../ca/ualberta/cmput301f13t13/storyhoard/gui/AdapterChoices.html#AdapterChoices(Context, int, java.util.ArrayList)">AdapterChoices</a></strong>(Context&nbsp;context, int&nbsp;layoutResourceId, java.util.ArrayList&lt;<a href="../../../../../ca/ualberta/cmput301f13t13/storyhoard/dataClasses/Choice.html" title="class in ca.ualberta.cmput301f13t13.storyhoard.dataClasses">Choice</a>&gt;&nbsp;data)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>View</code></td> <td class="colLast"><code><strong><a href="../../../../../ca/ualberta/cmput301f13t13/storyhoard/gui/AdapterChoices.html#getView(int, View, ViewGroup)">getView</a></strong>(int&nbsp;position, View&nbsp;convertView, ViewGroup&nbsp;parent)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="AdapterChoices(Context, int, java.util.ArrayList)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>AdapterChoices</h4> <pre>public&nbsp;AdapterChoices(Context&nbsp;context, int&nbsp;layoutResourceId, java.util.ArrayList&lt;<a href="../../../../../ca/ualberta/cmput301f13t13/storyhoard/dataClasses/Choice.html" title="class in ca.ualberta.cmput301f13t13.storyhoard.dataClasses">Choice</a>&gt;&nbsp;data)</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="getView(int, View, ViewGroup)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>getView</h4> <pre>public&nbsp;View&nbsp;getView(int&nbsp;position, View&nbsp;convertView, ViewGroup&nbsp;parent)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/AdapterChoices.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../ca/ualberta/cmput301f13t13/storyhoard/gui/AdapterChapters.html" title="class in ca.ualberta.cmput301f13t13.storyhoard.gui"><span class="strong">PREV CLASS</span></a></li> <li><a href="../../../../../ca/ualberta/cmput301f13t13/storyhoard/gui/AdapterStories.html" title="class in ca.ualberta.cmput301f13t13.storyhoard.gui"><span class="strong">NEXT CLASS</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?ca/ualberta/cmput301f13t13/storyhoard/gui/AdapterChoices.html" target="_top">FRAMES</a></li> <li><a href="AdapterChoices.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>SUMMARY:&nbsp;</li> <li>NESTED&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">CONSTR</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">METHOD</a></li> </ul> <ul class="subNavList"> <li>DETAIL:&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">CONSTR</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">METHOD</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
CMPUT301F13T13/StoryHoard
docs/ca/ualberta/cmput301f13t13/storyhoard/gui/AdapterChoices.html
HTML
apache-2.0
9,686
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_112) on Tue Sep 12 14:31:27 MST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Package org.wildfly.swarm.jaxrs.btm.zipkin (BOM: * : All 2017.9.5 API)</title> <meta name="date" content="2017-09-12"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package org.wildfly.swarm.jaxrs.btm.zipkin (BOM: * : All 2017.9.5 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.9.5</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/jaxrs/btm/zipkin/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package org.wildfly.swarm.jaxrs.btm.zipkin" class="title">Uses of Package<br>org.wildfly.swarm.jaxrs.btm.zipkin</h1> </div> <div class="contentContainer">No usage of org.wildfly.swarm.jaxrs.btm.zipkin</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.9.5</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/jaxrs/btm/zipkin/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2017.9.5/apidocs/org/wildfly/swarm/jaxrs/btm/zipkin/package-use.html
HTML
apache-2.0
4,542
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Wed Jul 17 13:50:51 MST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.wildfly.swarm.config.messaging.activemq.server.ReplicationSlaveHAPolicySupplier (BOM: * : All 2.5.0.Final API)</title> <meta name="date" content="2019-07-17"> <link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.wildfly.swarm.config.messaging.activemq.server.ReplicationSlaveHAPolicySupplier (BOM: * : All 2.5.0.Final API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/ReplicationSlaveHAPolicySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.5.0.Final</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?org/wildfly/swarm/config/messaging/activemq/server/class-use/ReplicationSlaveHAPolicySupplier.html" target="_top">Frames</a></li> <li><a href="ReplicationSlaveHAPolicySupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.messaging.activemq.server.ReplicationSlaveHAPolicySupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.messaging.activemq.server.ReplicationSlaveHAPolicySupplier</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/ReplicationSlaveHAPolicySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">ReplicationSlaveHAPolicySupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.messaging.activemq">org.wildfly.swarm.config.messaging.activemq</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.messaging.activemq"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/ReplicationSlaveHAPolicySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">ReplicationSlaveHAPolicySupplier</a> in <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/package-summary.html">org.wildfly.swarm.config.messaging.activemq</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/package-summary.html">org.wildfly.swarm.config.messaging.activemq</a> with parameters of type <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/ReplicationSlaveHAPolicySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">ReplicationSlaveHAPolicySupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/Server.html" title="type parameter in Server">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Server.</span><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/Server.html#replicationSlaveHaPolicy-org.wildfly.swarm.config.messaging.activemq.server.ReplicationSlaveHAPolicySupplier-">replicationSlaveHaPolicy</a></span>(<a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/ReplicationSlaveHAPolicySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">ReplicationSlaveHAPolicySupplier</a>&nbsp;supplier)</code> <div class="block">A messaging resource that allows you to configure High Availability for the ActiveMQ server (the value of ha-policy can be live-only, replication-master, replication-slave, or replication-colocated).</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/ReplicationSlaveHAPolicySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.5.0.Final</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?org/wildfly/swarm/config/messaging/activemq/server/class-use/ReplicationSlaveHAPolicySupplier.html" target="_top">Frames</a></li> <li><a href="ReplicationSlaveHAPolicySupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2.5.0.Final/apidocs/org/wildfly/swarm/config/messaging/activemq/server/class-use/ReplicationSlaveHAPolicySupplier.html
HTML
apache-2.0
8,535
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>&quot;blas/ext/base/dsnansumors/docs/types/index.d&quot; | stdlib</title> <meta name="description" content="stdlib is a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing."> <meta name="author" content="stdlib"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <!-- Icons --> <link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png"> <link rel="manifest" href="../manifest.json"> <link rel="mask-icon" href="../safari-pinned-tab.svg" color="#5bbad5"> <meta name="theme-color" content="#ffffff"> <!-- Facebook Open Graph --> <meta property="og:type" content="website"> <meta property="og:site_name" content="stdlib"> <meta property="og:url" content="https://stdlib.io/"> <meta property="og:title" content="A standard library for JavaScript and Node.js."> <meta property="og:description" content="stdlib is a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing."> <meta property="og:locale" content="en_US"> <meta property="og:image" content=""> <!-- Twitter --> <meta name="twitter:card" content="A standard library for JavaScript and Node.js."> <meta name="twitter:site" content="@stdlibjs"> <meta name="twitter:url" content="https://stdlib.io/"> <meta name="twitter:title" content="stdlib"> <meta name="twitter:description" content="stdlib is a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing."> <meta name="twitter:image" content=""> <link rel="stylesheet" href="../assets/css/main.css"> <link rel="stylesheet" href="../assets/css/theme.css"> </head> <body> <header> <div class="tsd-page-toolbar"> <div class="container"> <div class="table-wrap"> <div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base=".."> <div class="field"> <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label> <input id="tsd-search-field" type="text" /> </div> <ul class="results"> <li class="state loading">Preparing search index...</li> <li class="state failure">The search index is not available</li> </ul> <a href="../index.html" class="title"><img src="../logo_white.svg" alt="stdlib"></a> </div> <div class="table-cell" id="tsd-widgets"> <div id="tsd-filter"> <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a> <div class="tsd-filter-group"> <div class="tsd-select" id="tsd-filter-visibility"> <span class="tsd-select-label">All</span> <ul class="tsd-select-list"> <li data-value="public">Public</li> <li data-value="protected">Public/Protected</li> <li data-value="private" class="selected">All</li> </ul> </div> <input type="checkbox" id="tsd-filter-inherited" checked /> <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label> <input type="checkbox" id="tsd-filter-only-exported" /> <label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label> </div> </div> <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a> </div> </div> </div> </div> <div class="tsd-page-title"> <div class="container"> <ul class="tsd-breadcrumb"> <li> <a href="../globals.html">Globals</a> </li> <li> <a href="_blas_ext_base_dsnansumors_docs_types_index_d_.html">&quot;blas/ext/base/dsnansumors/docs/types/index.d&quot;</a> </li> </ul> <h1>External module &quot;blas/ext/base/dsnansumors/docs/types/index.d&quot;</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <section class="tsd-panel-group tsd-index-group"> <h2>Index</h2> <section class="tsd-panel tsd-index-panel"> <div class="tsd-index-content"> <section class="tsd-index-section tsd-is-not-exported"> <h3>Interfaces</h3> <ul class="tsd-index-list"> <li class="tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported"><a href="../interfaces/_blas_ext_base_dsnansumors_docs_types_index_d_.routine.html" class="tsd-kind-icon">Routine</a></li> </ul> </section> <section class="tsd-index-section "> <h3>Variables</h3> <ul class="tsd-index-list"> <li class="tsd-kind-variable tsd-parent-kind-external-module"><a href="_blas_ext_base_dsnansumors_docs_types_index_d_.html#dsnansumors" class="tsd-kind-icon">dsnansumors</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group "> <h2>Variables</h2> <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-external-module"> <a name="dsnansumors" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagExport assignment">Export assignment</span> dsnansumors</h3> <div class="tsd-signature tsd-kind-icon">dsnansumors<span class="tsd-signature-symbol">:</span> <a href="../interfaces/_blas_base_ccopy_docs_types_index_d_.routine.html" class="tsd-signature-type">Routine</a></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/blas/ext/base/dsnansumors/docs/types/index.d.ts#L87">lib/node_modules/@stdlib/blas/ext/base/dsnansumors/docs/types/index.d.ts:87</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Computes the sum of single-precision floating-point strided array elements, ignoring <code>NaN</code> values, using ordinary recursive summation with extended accumulation, and returning an extended precision result.</p> </div> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>number of indexed elements</p> </dd> <dt>param</dt> <dd><p>input array</p> </dd> <dt>param</dt> <dd><p>stride length</p> </dd> <dt>returns</dt> <dd><p>sum</p> </dd> </div> </section> </section> </div> <div class="col-4 col-menu menu-sticky-wrap menu-highlight"> <nav class="tsd-navigation primary"> <ul> <li class="globals "> <a href="../globals.html"><em>Packages</em></a> </li> <li class="current tsd-kind-external-module"> <a href="_blas_ext_base_dsnansumors_docs_types_index_d_.html">&quot;blas/ext/base/dsnansumors/docs/types/index.d&quot;</a> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../interfaces/_blas_ext_base_dsnansumors_docs_types_index_d_.routine.html" class="tsd-kind-icon">Routine</a> </li> <li class=" tsd-kind-variable tsd-parent-kind-external-module"> <a href="_blas_ext_base_dsnansumors_docs_types_index_d_.html#dsnansumors" class="tsd-kind-icon">dsnansumors</a> </li> </ul> </nav> </div> </div> </div> <footer> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> <ul class="tsd-legend"> <li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li> <li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li> <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li> <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li> <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li> <li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li> <li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li> <li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li> <li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li> <li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li> <li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li> <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li> <li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li> </ul> </div> </div> <div class="bottom-nav center border-top"> <a href="https://www.patreon.com/athan">Donate</a> / <a href="/docs/api/">Docs</a> / <a href="https://gitter.im/stdlib-js/stdlib">Chat</a> / <a href="https://twitter.com/stdlibjs">Twitter</a> / <a href="https://github.com/stdlib-js/stdlib">Contribute</a> </div> </footer> <div class="overlay"></div> <script src="../assets/js/main.js"></script> <script src="../assets/js/theme.js"></script> <script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-105890493-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
stdlib-js/www
public/docs/ts/latest/modules/_blas_ext_base_dsnansumors_docs_types_index_d_.html
HTML
apache-2.0
13,196
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_60-ea) on Fri Nov 04 13:24:40 EDT 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.config.webservices.ClientConfig.ClientConfigResources (Public javadocs 2016.11.0 API)</title> <meta name="date" content="2016-11-04"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.wildfly.swarm.config.webservices.ClientConfig.ClientConfigResources (Public javadocs 2016.11.0 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfig.ClientConfigResources.html" title="class in org.wildfly.swarm.config.webservices">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2016.11.0</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/webservices/class-use/ClientConfig.ClientConfigResources.html" target="_top">Frames</a></li> <li><a href="ClientConfig.ClientConfigResources.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.config.webservices.ClientConfig.ClientConfigResources" class="title">Uses of Class<br>org.wildfly.swarm.config.webservices.ClientConfig.ClientConfigResources</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfig.ClientConfigResources.html" title="class in org.wildfly.swarm.config.webservices">ClientConfig.ClientConfigResources</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.webservices">org.wildfly.swarm.config.webservices</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.webservices"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfig.ClientConfigResources.html" title="class in org.wildfly.swarm.config.webservices">ClientConfig.ClientConfigResources</a> in <a href="../../../../../../org/wildfly/swarm/config/webservices/package-summary.html">org.wildfly.swarm.config.webservices</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/webservices/package-summary.html">org.wildfly.swarm.config.webservices</a> that return <a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfig.ClientConfigResources.html" title="class in org.wildfly.swarm.config.webservices">ClientConfig.ClientConfigResources</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfig.ClientConfigResources.html" title="class in org.wildfly.swarm.config.webservices">ClientConfig.ClientConfigResources</a></code></td> <td class="colLast"><span class="typeNameLabel">ClientConfig.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfig.html#subresources--">subresources</a></span>()</code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfig.ClientConfigResources.html" title="class in org.wildfly.swarm.config.webservices">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2016.11.0</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/webservices/class-use/ClientConfig.ClientConfigResources.html" target="_top">Frames</a></li> <li><a href="ClientConfig.ClientConfigResources.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2016.11.0/apidocs/org/wildfly/swarm/config/webservices/class-use/ClientConfig.ClientConfigResources.html
HTML
apache-2.0
7,608
<!DOCTYPE html> <html lang="en-US"> <meta charset="utf-8"> <title>Redirecting…</title> <link rel="canonical" href="/v0.1/blog/istio-auth-for-microservices.html"> <meta http-equiv="refresh" content="0; url=/v0.1/blog/istio-auth-for-microservices.html"> <h1>Redirecting…</h1> <a href="/v0.1/blog/istio-auth-for-microservices.html">Click here if you are not redirected.</a> <script>location="/v0.1/blog/istio-auth-for-microservices.html"</script> </html>
istio/istio.io
archive/v0.1/blog/0.1-auth.html
HTML
apache-2.0
470
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Sat Mar 16 04:11:57 MST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.wildfly.swarm.config.elytron.IdentityRealmSupplier (BOM: * : All 2.3.1.Final-SNAPSHOT API)</title> <meta name="date" content="2019-03-16"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.wildfly.swarm.config.elytron.IdentityRealmSupplier (BOM: * : All 2.3.1.Final-SNAPSHOT API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/elytron/IdentityRealmSupplier.html" title="interface in org.wildfly.swarm.config.elytron">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.3.1.Final-SNAPSHOT</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/elytron/class-use/IdentityRealmSupplier.html" target="_top">Frames</a></li> <li><a href="IdentityRealmSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.elytron.IdentityRealmSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.elytron.IdentityRealmSupplier</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/wildfly/swarm/config/elytron/IdentityRealmSupplier.html" title="interface in org.wildfly.swarm.config.elytron">IdentityRealmSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/elytron/IdentityRealmSupplier.html" title="interface in org.wildfly.swarm.config.elytron">IdentityRealmSupplier</a> in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/elytron/IdentityRealmSupplier.html" title="interface in org.wildfly.swarm.config.elytron">IdentityRealmSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/Elytron.html" title="type parameter in Elytron">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Elytron.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.html#identityRealm-org.wildfly.swarm.config.elytron.IdentityRealmSupplier-">identityRealm</a></span>(<a href="../../../../../../org/wildfly/swarm/config/elytron/IdentityRealmSupplier.html" title="interface in org.wildfly.swarm.config.elytron">IdentityRealmSupplier</a>&nbsp;supplier)</code> <div class="block">Install a supplied IdentityRealm object to the list of subresources</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/elytron/IdentityRealmSupplier.html" title="interface in org.wildfly.swarm.config.elytron">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">Thorntail API, 2.3.1.Final-SNAPSHOT</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/elytron/class-use/IdentityRealmSupplier.html" target="_top">Frames</a></li> <li><a href="IdentityRealmSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2.3.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/elytron/class-use/IdentityRealmSupplier.html
HTML
apache-2.0
7,541
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Mon Jan 15 08:36:40 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>SingletonPolicyConsumer (BOM: * : All 2018.1.0 API)</title> <meta name="date" content="2018-01-15"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="SingletonPolicyConsumer (BOM: * : All 2018.1.0 API)"; } } catch(err) { } //--> var methods = {"i0":6,"i1":18}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/SingletonPolicyConsumer.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2018.1.0</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicy.SingletonPolicyResources.html" title="class in org.wildfly.swarm.config.singleton"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicySupplier.html" title="interface in org.wildfly.swarm.config.singleton"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html" target="_top">Frames</a></li> <li><a href="SingletonPolicyConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.wildfly.swarm.config.singleton</div> <h2 title="Interface SingletonPolicyConsumer" class="title">Interface SingletonPolicyConsumer&lt;T extends <a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicy.html" title="class in org.wildfly.swarm.config.singleton">SingletonPolicy</a>&lt;T&gt;&gt;</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Functional Interface:</dt> <dd>This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.</dd> </dl> <hr> <br> <pre><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/FunctionalInterface.html?is-external=true" title="class or interface in java.lang">@FunctionalInterface</a> public interface <span class="typeNameLabel">SingletonPolicyConsumer&lt;T extends <a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicy.html" title="class in org.wildfly.swarm.config.singleton">SingletonPolicy</a>&lt;T&gt;&gt;</span></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html#accept-T-">accept</a></span>(<a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html" title="type parameter in SingletonPolicyConsumer">T</a>&nbsp;value)</code> <div class="block">Configure a pre-constructed instance of SingletonPolicy resource</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>default <a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html" title="interface in org.wildfly.swarm.config.singleton">SingletonPolicyConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html" title="type parameter in SingletonPolicyConsumer">T</a>&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html#andThen-org.wildfly.swarm.config.singleton.SingletonPolicyConsumer-">andThen</a></span>(<a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html" title="interface in org.wildfly.swarm.config.singleton">SingletonPolicyConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html" title="type parameter in SingletonPolicyConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="accept-org.wildfly.swarm.config.singleton.SingletonPolicy-"> <!-- --> </a><a name="accept-T-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>accept</h4> <pre>void&nbsp;accept(<a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html" title="type parameter in SingletonPolicyConsumer">T</a>&nbsp;value)</pre> <div class="block">Configure a pre-constructed instance of SingletonPolicy resource</div> </li> </ul> <a name="andThen-org.wildfly.swarm.config.singleton.SingletonPolicyConsumer-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>andThen</h4> <pre>default&nbsp;<a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html" title="interface in org.wildfly.swarm.config.singleton">SingletonPolicyConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html" title="type parameter in SingletonPolicyConsumer">T</a>&gt;&nbsp;andThen(<a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html" title="interface in org.wildfly.swarm.config.singleton">SingletonPolicyConsumer</a>&lt;<a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html" title="type parameter in SingletonPolicyConsumer">T</a>&gt;&nbsp;after)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/SingletonPolicyConsumer.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2018.1.0</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicy.SingletonPolicyResources.html" title="class in org.wildfly.swarm.config.singleton"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../../org/wildfly/swarm/config/singleton/SingletonPolicySupplier.html" title="interface in org.wildfly.swarm.config.singleton"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html" target="_top">Frames</a></li> <li><a href="SingletonPolicyConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
wildfly-swarm/wildfly-swarm-javadocs
2018.1.0/apidocs/org/wildfly/swarm/config/singleton/SingletonPolicyConsumer.html
HTML
apache-2.0
11,520
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>&quot;utils/async/map-values/docs/types/index.d&quot; | stdlib</title> <meta name="description" content="stdlib is a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing."> <meta name="author" content="stdlib"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <!-- Icons --> <link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png"> <link rel="manifest" href="../manifest.json"> <link rel="mask-icon" href="../safari-pinned-tab.svg" color="#5bbad5"> <meta name="theme-color" content="#ffffff"> <!-- Facebook Open Graph --> <meta property="og:type" content="website"> <meta property="og:site_name" content="stdlib"> <meta property="og:url" content="https://stdlib.io/"> <meta property="og:title" content="A standard library for JavaScript and Node.js."> <meta property="og:description" content="stdlib is a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing."> <meta property="og:locale" content="en_US"> <meta property="og:image" content=""> <!-- Twitter --> <meta name="twitter:card" content="A standard library for JavaScript and Node.js."> <meta name="twitter:site" content="@stdlibjs"> <meta name="twitter:url" content="https://stdlib.io/"> <meta name="twitter:title" content="stdlib"> <meta name="twitter:description" content="stdlib is a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing."> <meta name="twitter:image" content=""> <link rel="stylesheet" href="../assets/css/main.css"> <link rel="stylesheet" href="../assets/css/theme.css"> </head> <body> <header> <div class="tsd-page-toolbar"> <div class="container"> <div class="table-wrap"> <div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base=".."> <div class="field"> <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label> <input id="tsd-search-field" type="text" /> </div> <ul class="results"> <li class="state loading">Preparing search index...</li> <li class="state failure">The search index is not available</li> </ul> <a href="../index.html" class="title"><img src="../logo_white.svg" alt="stdlib"></a> </div> <div class="table-cell" id="tsd-widgets"> <div id="tsd-filter"> <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a> <div class="tsd-filter-group"> <div class="tsd-select" id="tsd-filter-visibility"> <span class="tsd-select-label">All</span> <ul class="tsd-select-list"> <li data-value="public">Public</li> <li data-value="protected">Public/Protected</li> <li data-value="private" class="selected">All</li> </ul> </div> <input type="checkbox" id="tsd-filter-inherited" checked /> <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label> <input type="checkbox" id="tsd-filter-only-exported" /> <label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label> </div> </div> <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a> </div> </div> </div> </div> <div class="tsd-page-title"> <div class="container"> <ul class="tsd-breadcrumb"> <li> <a href="../globals.html">Globals</a> </li> <li> <a href="_utils_async_map_values_docs_types_index_d_.html">&quot;utils/async/map-values/docs/types/index.d&quot;</a> </li> </ul> <h1>External module &quot;utils/async/map-values/docs/types/index.d&quot;</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <section class="tsd-panel-group tsd-index-group"> <h2>Index</h2> <section class="tsd-panel tsd-index-panel"> <div class="tsd-index-content"> <section class="tsd-index-section tsd-is-not-exported"> <h3>Interfaces</h3> <ul class="tsd-index-list"> <li class="tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported"><a href="../interfaces/_utils_async_map_values_docs_types_index_d_.mapvaluesasync.html" class="tsd-kind-icon">Map<wbr>Values<wbr>Async</a></li> <li class="tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported"><a href="../interfaces/_utils_async_map_values_docs_types_index_d_.options.html" class="tsd-kind-icon">Options</a></li> </ul> </section> <section class="tsd-index-section tsd-is-not-exported"> <h3>Type aliases</h3> <ul class="tsd-index-list"> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#binary" class="tsd-kind-icon">Binary</a></li> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#binarytransform" class="tsd-kind-icon">Binary<wbr>Transform</a></li> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#callback" class="tsd-kind-icon">Callback</a></li> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#donebinary" class="tsd-kind-icon">Done<wbr>Binary</a></li> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#donecallback" class="tsd-kind-icon">Done<wbr>Callback</a></li> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#donenullary" class="tsd-kind-icon">Done<wbr>Nullary</a></li> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#doneunary" class="tsd-kind-icon">Done<wbr>Unary</a></li> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#factoryfunction" class="tsd-kind-icon">Factory<wbr>Function</a></li> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#nullary" class="tsd-kind-icon">Nullary</a></li> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#quaternarytransform" class="tsd-kind-icon">Quaternary<wbr>Transform</a></li> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#tertiarytransform" class="tsd-kind-icon">Tertiary<wbr>Transform</a></li> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#transform" class="tsd-kind-icon">Transform</a></li> <li class="tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"><a href="_utils_async_map_values_docs_types_index_d_.html#unary" class="tsd-kind-icon">Unary</a></li> </ul> </section> <section class="tsd-index-section "> <h3>Variables</h3> <ul class="tsd-index-list"> <li class="tsd-kind-variable tsd-parent-kind-external-module"><a href="_utils_async_map_values_docs_types_index_d_.html#mapvaluesasync-1" class="tsd-kind-icon">map<wbr>Values<wbr>Async</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-not-exported"> <h2>Type aliases</h2> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="binary" class="tsd-anchor"></a> <h3>Binary</h3> <div class="tsd-signature tsd-kind-icon">Binary<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span>, group<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L87">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:87</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Callback function.</p> </div> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>encountered error or null</p> </dd> <dt>param</dt> <dd><p>value group</p> </dd> </dl> </div> <div class="tsd-type-declaration"> <h4>Type declaration</h4> <ul class="tsd-parameters"> <li class="tsd-parameter-siganture"> <ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span>, group<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>error: <span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span></h5> </li> <li> <h5>group: <span class="tsd-signature-type">string</span></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4> </li> </ul> </li> </ul> </div> </section> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="binarytransform" class="tsd-anchor"></a> <h3>Binary<wbr>Transform</h3> <div class="tsd-signature tsd-kind-icon">Binary<wbr>Transform<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, next<span class="tsd-signature-symbol">: </span><a href="_utils_async_map_values_docs_types_index_d_.html#callback" class="tsd-signature-type">Callback</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L103">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:103</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Transform function.</p> </div> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>object key</p> </dd> <dt>param</dt> <dd><p>a callback to be invoked after processing an object <code>value</code></p> </dd> </dl> </div> <div class="tsd-type-declaration"> <h4>Type declaration</h4> <ul class="tsd-parameters"> <li class="tsd-parameter-siganture"> <ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, next<span class="tsd-signature-symbol">: </span><a href="_utils_async_map_values_docs_types_index_d_.html#callback" class="tsd-signature-type">Callback</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>value: <span class="tsd-signature-type">any</span></h5> </li> <li> <h5>next: <a href="_utils_async_map_values_docs_types_index_d_.html#callback" class="tsd-signature-type">Callback</a></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4> </li> </ul> </li> </ul> </div> </section> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="callback" class="tsd-anchor"></a> <h3>Callback</h3> <div class="tsd-signature tsd-kind-icon">Callback<span class="tsd-signature-symbol">:</span> <a href="_utils_async_map_values_docs_types_index_d_.html#nullary" class="tsd-signature-type">Nullary</a><span class="tsd-signature-symbol"> | </span><a href="_utils_async_map_values_docs_types_index_d_.html#unary" class="tsd-signature-type">Unary</a><span class="tsd-signature-symbol"> | </span><a href="_utils_async_map_values_docs_types_index_d_.html#binary" class="tsd-signature-type">Binary</a></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L95">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:95</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Callback function.</p> </div> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>encountered error or null</p> </dd> <dt>param</dt> <dd><p>value group</p> </dd> </dl> </div> </section> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="donebinary" class="tsd-anchor"></a> <h3>Done<wbr>Binary</h3> <div class="tsd-signature tsd-kind-icon">Done<wbr>Binary<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span>, out<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L59">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:59</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Callback invoked upon completion.</p> </div> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>encountered error or null</p> </dd> <dt>param</dt> <dd><p>output object</p> </dd> </dl> </div> <div class="tsd-type-declaration"> <h4>Type declaration</h4> <ul class="tsd-parameters"> <li class="tsd-parameter-siganture"> <ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span>, out<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>error: <span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span></h5> </li> <li> <h5>out: <span class="tsd-signature-type">any</span></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4> </li> </ul> </li> </ul> </div> </section> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="donecallback" class="tsd-anchor"></a> <h3>Done<wbr>Callback</h3> <div class="tsd-signature tsd-kind-icon">Done<wbr>Callback<span class="tsd-signature-symbol">:</span> <a href="_utils_async_map_values_docs_types_index_d_.html#donenullary" class="tsd-signature-type">DoneNullary</a><span class="tsd-signature-symbol"> | </span><a href="_utils_async_map_values_docs_types_index_d_.html#doneunary" class="tsd-signature-type">DoneUnary</a><span class="tsd-signature-symbol"> | </span><a href="_utils_async_map_values_docs_types_index_d_.html#donebinary" class="tsd-signature-type">DoneBinary</a></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L67">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:67</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Callback invoked upon completion.</p> </div> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>encountered error or null</p> </dd> <dt>param</dt> <dd><p>output object</p> </dd> </dl> </div> </section> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="donenullary" class="tsd-anchor"></a> <h3>Done<wbr>Nullary</h3> <div class="tsd-signature tsd-kind-icon">Done<wbr>Nullary<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L44">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:44</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Callback invoked upon completion.</p> </div> </div> <div class="tsd-type-declaration"> <h4>Type declaration</h4> <ul class="tsd-parameters"> <li class="tsd-parameter-siganture"> <ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4> </li> </ul> </li> </ul> </div> </section> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="doneunary" class="tsd-anchor"></a> <h3>Done<wbr>Unary</h3> <div class="tsd-signature tsd-kind-icon">Done<wbr>Unary<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L51">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:51</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Callback invoked upon completion.</p> </div> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>encountered error or null</p> </dd> </dl> </div> <div class="tsd-type-declaration"> <h4>Type declaration</h4> <ul class="tsd-parameters"> <li class="tsd-parameter-siganture"> <ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>error: <span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4> </li> </ul> </li> </ul> </div> </section> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="factoryfunction" class="tsd-anchor"></a> <h3>Factory<wbr>Function</h3> <div class="tsd-signature tsd-kind-icon">Factory<wbr>Function<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>obj<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, done<span class="tsd-signature-symbol">: </span><a href="_utils_async_map_values_docs_types_index_d_.html#donecallback" class="tsd-signature-type">DoneCallback</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L140">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:140</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Maps keys from one object to a new object having the same values.</p> </div> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>the input object</p> </dd> <dt>param</dt> <dd><p>function to invoke upon completion</p> </dd> </dl> </div> <div class="tsd-type-declaration"> <h4>Type declaration</h4> <ul class="tsd-parameters"> <li class="tsd-parameter-siganture"> <ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>obj<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, done<span class="tsd-signature-symbol">: </span><a href="_utils_async_map_values_docs_types_index_d_.html#donecallback" class="tsd-signature-type">DoneCallback</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>obj: <span class="tsd-signature-type">any</span></h5> </li> <li> <h5>done: <a href="_utils_async_map_values_docs_types_index_d_.html#donecallback" class="tsd-signature-type">DoneCallback</a></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4> </li> </ul> </li> </ul> </div> </section> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="nullary" class="tsd-anchor"></a> <h3>Nullary</h3> <div class="tsd-signature tsd-kind-icon">Nullary<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L72">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:72</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Callback function.</p> </div> </div> <div class="tsd-type-declaration"> <h4>Type declaration</h4> <ul class="tsd-parameters"> <li class="tsd-parameter-siganture"> <ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4> </li> </ul> </li> </ul> </div> </section> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="quaternarytransform" class="tsd-anchor"></a> <h3>Quaternary<wbr>Transform</h3> <div class="tsd-signature tsd-kind-icon">Quaternary<wbr>Transform<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, obj<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, next<span class="tsd-signature-symbol">: </span><a href="_utils_async_map_values_docs_types_index_d_.html#callback" class="tsd-signature-type">Callback</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L122">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:122</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Transform function.</p> </div> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>object key</p> </dd> <dt>param</dt> <dd><p>object value corresponding to <code>key</code></p> </dd> <dt>param</dt> <dd><p>the input object</p> </dd> <dt>param</dt> <dd><p>a callback to be invoked after processing an object <code>value</code></p> </dd> </dl> </div> <div class="tsd-type-declaration"> <h4>Type declaration</h4> <ul class="tsd-parameters"> <li class="tsd-parameter-siganture"> <ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, obj<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, next<span class="tsd-signature-symbol">: </span><a href="_utils_async_map_values_docs_types_index_d_.html#callback" class="tsd-signature-type">Callback</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>value: <span class="tsd-signature-type">any</span></h5> </li> <li> <h5>index: <span class="tsd-signature-type">number</span></h5> </li> <li> <h5>obj: <span class="tsd-signature-type">any</span></h5> </li> <li> <h5>next: <a href="_utils_async_map_values_docs_types_index_d_.html#callback" class="tsd-signature-type">Callback</a></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4> </li> </ul> </li> </ul> </div> </section> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="tertiarytransform" class="tsd-anchor"></a> <h3>Tertiary<wbr>Transform</h3> <div class="tsd-signature tsd-kind-icon">Tertiary<wbr>Transform<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, next<span class="tsd-signature-symbol">: </span><a href="_utils_async_map_values_docs_types_index_d_.html#callback" class="tsd-signature-type">Callback</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L112">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:112</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Transform function.</p> </div> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>object key</p> </dd> <dt>param</dt> <dd><p>object value corresponding to <code>key</code></p> </dd> <dt>param</dt> <dd><p>a callback to be invoked after processing an object <code>value</code></p> </dd> </dl> </div> <div class="tsd-type-declaration"> <h4>Type declaration</h4> <ul class="tsd-parameters"> <li class="tsd-parameter-siganture"> <ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span>, index<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, next<span class="tsd-signature-symbol">: </span><a href="_utils_async_map_values_docs_types_index_d_.html#callback" class="tsd-signature-type">Callback</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>value: <span class="tsd-signature-type">any</span></h5> </li> <li> <h5>index: <span class="tsd-signature-type">number</span></h5> </li> <li> <h5>next: <a href="_utils_async_map_values_docs_types_index_d_.html#callback" class="tsd-signature-type">Callback</a></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4> </li> </ul> </li> </ul> </div> </section> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="transform" class="tsd-anchor"></a> <h3>Transform</h3> <div class="tsd-signature tsd-kind-icon">Transform<span class="tsd-signature-symbol">:</span> <a href="_utils_async_map_values_docs_types_index_d_.html#unary" class="tsd-signature-type">Unary</a><span class="tsd-signature-symbol"> | </span><a href="_utils_async_map_values_docs_types_index_d_.html#binarytransform" class="tsd-signature-type">BinaryTransform</a><span class="tsd-signature-symbol"> | </span><a href="_utils_async_map_values_docs_types_index_d_.html#tertiarytransform" class="tsd-signature-type">TertiaryTransform</a><span class="tsd-signature-symbol"> | </span><a href="_utils_async_map_values_docs_types_index_d_.html#quaternarytransform" class="tsd-signature-type">QuaternaryTransform</a></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L132">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:132</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Transform function.</p> </div> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>object key</p> </dd> <dt>param</dt> <dd><p>object value corresponding to <code>key</code></p> </dd> <dt>param</dt> <dd><p>the input object</p> </dd> <dt>param</dt> <dd><p>a callback to be invoked after processing an object <code>value</code></p> </dd> </dl> </div> </section> <section class="tsd-panel tsd-member tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a name="unary" class="tsd-anchor"></a> <h3>Unary</h3> <div class="tsd-signature tsd-kind-icon">Unary<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L79">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:79</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Callback function.</p> </div> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>encountered error or null</p> </dd> </dl> </div> <div class="tsd-type-declaration"> <h4>Type declaration</h4> <ul class="tsd-parameters"> <li class="tsd-parameter-siganture"> <ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-type-alias tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>error<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>error: <span class="tsd-signature-type">Error</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">null</span></h5> </li> </ul> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span> </h4> </li> </ul> </li> </ul> </div> </section> </section> <section class="tsd-panel-group tsd-member-group "> <h2>Variables</h2> <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-external-module"> <a name="mapvaluesasync-1" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagExport assignment">Export assignment</span> map<wbr>Values<wbr>Async</h3> <div class="tsd-signature tsd-kind-icon">map<wbr>Values<wbr>Async<span class="tsd-signature-symbol">:</span> <a href="../interfaces/_utils_async_map_values_docs_types_index_d_.mapvaluesasync.html" class="tsd-signature-type">MapValuesAsync</a></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/stdlib-js/stdlib/blob/61b1a8a068/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts#L426">lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts:426</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Maps values from one object to a new object having the same keys.</p> </div> <a href="#notes" id="notes" style="color: inherit; text-decoration: none;"> <h2>Notes</h2> </a> <ul> <li>If a provided function calls the provided callback with a truthy error argument, the function suspends execution and immediately calls the <code>done</code> callback for subsequent error handling.</li> <li>This function does <strong>not</strong> guarantee that execution is asynchronous. To do so, wrap the <code>done</code> callback in a function which either executes at the end of the current stack (e.g., <code>nextTick</code>) or during a subsequent turn of the event loop (e.g., <code>setImmediate</code>, <code>setTimeout</code>).</li> <li>Iteration and insertion order are <strong>not</strong> guaranteed.</li> <li>The function only operates on own properties, not inherited properties.</li> </ul> <dl class="tsd-comment-tags"> <dt>param</dt> <dd><p>source object</p> </dd> <dt>param</dt> <dd><p>function options</p> </dd> <dt>param</dt> <dd><p>execution context</p> </dd> <dt>param</dt> <dd><p>maximum number of pending invocations at any one time</p> </dd> <dt>param</dt> <dd><p>boolean indicating whether to wait for a previous invocation to complete before invoking a provided function for the next own property (default: false)</p> </dd> <dt>param</dt> <dd><p>transform function</p> </dd> <dt>param</dt> <dd><p>function to invoke upon completion</p> </dd> <dt>throws</dt> <dd><p>must provide valid options</p> </dd> </div> </section> </section> </div> <div class="col-4 col-menu menu-sticky-wrap menu-highlight"> <nav class="tsd-navigation primary"> <ul> <li class="globals "> <a href="../globals.html"><em>Packages</em></a> </li> <li class="current tsd-kind-external-module"> <a href="_utils_async_map_values_docs_types_index_d_.html">&quot;utils/async/map-<wbr>values/docs/types/index.d&quot;</a> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../interfaces/_utils_async_map_values_docs_types_index_d_.mapvaluesasync.html" class="tsd-kind-icon">Map<wbr>Values<wbr>Async</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../interfaces/_utils_async_map_values_docs_types_index_d_.options.html" class="tsd-kind-icon">Options</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#binary" class="tsd-kind-icon">Binary</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#binarytransform" class="tsd-kind-icon">Binary<wbr>Transform</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#callback" class="tsd-kind-icon">Callback</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#donebinary" class="tsd-kind-icon">Done<wbr>Binary</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#donecallback" class="tsd-kind-icon">Done<wbr>Callback</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#donenullary" class="tsd-kind-icon">Done<wbr>Nullary</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#doneunary" class="tsd-kind-icon">Done<wbr>Unary</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#factoryfunction" class="tsd-kind-icon">Factory<wbr>Function</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#nullary" class="tsd-kind-icon">Nullary</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#quaternarytransform" class="tsd-kind-icon">Quaternary<wbr>Transform</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#tertiarytransform" class="tsd-kind-icon">Tertiary<wbr>Transform</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#transform" class="tsd-kind-icon">Transform</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module tsd-is-not-exported"> <a href="_utils_async_map_values_docs_types_index_d_.html#unary" class="tsd-kind-icon">Unary</a> </li> <li class=" tsd-kind-variable tsd-parent-kind-external-module"> <a href="_utils_async_map_values_docs_types_index_d_.html#mapvaluesasync-1" class="tsd-kind-icon">map<wbr>Values<wbr>Async</a> </li> </ul> </nav> </div> </div> </div> <footer> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> <ul class="tsd-legend"> <li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li> <li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li> <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li> <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li> <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li> <li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li> <li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li> <li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li> <li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li> <li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li> <li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li> <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li> <li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li> </ul> </div> </div> <div class="bottom-nav center border-top"> <a href="https://www.patreon.com/athan">Donate</a> / <a href="/docs/api/">Docs</a> / <a href="https://gitter.im/stdlib-js/stdlib">Chat</a> / <a href="https://twitter.com/stdlibjs">Twitter</a> / <a href="https://github.com/stdlib-js/stdlib">Contribute</a> </div> </footer> <div class="overlay"></div> <script src="../assets/js/main.js"></script> <script src="../assets/js/theme.js"></script> <script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-105890493-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
stdlib-js/www
public/docs/ts/latest/modules/_utils_async_map_values_docs_types_index_d_.html
HTML
apache-2.0
51,970
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_121) on Sat Jan 30 10:29:26 GMT 2021 --> <title>Uses of Class org.primaresearch.labels.LabelGroup (PrimaBasic API)</title> <meta name="date" content="2021-01-30"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.primaresearch.labels.LabelGroup (PrimaBasic API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/primaresearch/labels/LabelGroup.html" title="class in org.primaresearch.labels">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/primaresearch/labels/class-use/LabelGroup.html" target="_top">Frames</a></li> <li><a href="LabelGroup.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.primaresearch.labels.LabelGroup" class="title">Uses of Class<br>org.primaresearch.labels.LabelGroup</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../org/primaresearch/labels/LabelGroup.html" title="class in org.primaresearch.labels">LabelGroup</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.primaresearch.labels">org.primaresearch.labels</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.primaresearch.labels"> <!-- --> </a> <h3>Uses of <a href="../../../../org/primaresearch/labels/LabelGroup.html" title="class in org.primaresearch.labels">LabelGroup</a> in <a href="../../../../org/primaresearch/labels/package-summary.html">org.primaresearch.labels</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../org/primaresearch/labels/package-summary.html">org.primaresearch.labels</a> that return types with arguments of type <a href="../../../../org/primaresearch/labels/LabelGroup.html" title="class in org.primaresearch.labels">LabelGroup</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>java.util.Map&lt;java.lang.String,<a href="../../../../org/primaresearch/labels/LabelGroup.html" title="class in org.primaresearch.labels">LabelGroup</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Labels.</span><code><span class="memberNameLink"><a href="../../../../org/primaresearch/labels/Labels.html#getGroups--">getGroups</a></span>()</code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../org/primaresearch/labels/package-summary.html">org.primaresearch.labels</a> with parameters of type <a href="../../../../org/primaresearch/labels/LabelGroup.html" title="class in org.primaresearch.labels">LabelGroup</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">Labels.</span><code><span class="memberNameLink"><a href="../../../../org/primaresearch/labels/Labels.html#addGroup-org.primaresearch.labels.LabelGroup-">addGroup</a></span>(<a href="../../../../org/primaresearch/labels/LabelGroup.html" title="class in org.primaresearch.labels">LabelGroup</a>&nbsp;group)</code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/primaresearch/labels/LabelGroup.html" title="class in org.primaresearch.labels">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/primaresearch/labels/class-use/LabelGroup.html" target="_top">Frames</a></li> <li><a href="LabelGroup.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small><i>Copyright &#169; 2019 PRImA Research Lab. All Rights Reserved.</i></small></p> </body> </html>
PRImA-Research-Lab/prima-core-libs
java/PrimaBasic/apidoc/org/primaresearch/labels/class-use/LabelGroup.html
HTML
apache-2.0
7,535
@(webSocketUrl: String)(implicit webJarsUtil: org.webjars.play.WebJarsUtil) <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> @Html(webJarsUtil.css("bootstrap.min.css")) @Html(webJarsUtil.css("bootstrap-theme.min.css")) <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")"> <link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")"> <title>Chat Room</title> </head> <body> <div class="wrap"> <div class="container-fluid"> <div> <h1 class="">Chat Room</h1> </div> <div class="row"> <div class="col-lg-12"> <ul id="messages" class="list-unstyled"> </ul> </div> </div> </div> </div> <div class="footer navbar-fixed-bottom"> <div class="row"> <div class="col-xs-8 col-sm-9"> <input id="message" placeholder="Type Here" type="text" autofocus autocomplete="off" spellcheck="false" autocorrect="off" class="form-control input-lg" /> </div> <div class="col-xs-4 col-sm-3"> <button id="send" type="submit" class="btn btn-primary btn-lg btn-block">Send</button> </div> </div> </div> @Html(webJarsUtil.script("jquery.min.js")) <script type='text/javascript' src='@routes.Assets.at("javascripts/modernizr-3.5.0.js")'></script> <script type='text/javascript' src='@routes.Assets.at("javascripts/app.js")' data-url='@webSocketUrl'></script> </body> </html>
play2-maven-plugin/play2-maven-test-projects
play26/scala/chatroom-example-using-webjars-assets/app/views/index.scala.html
HTML
apache-2.0
1,980
<div class="container-fluid"> <div class="row"> <div id="large_menu" data-ng-class="{'div-animate': toggleSideMenu}" class="col-lg-2 col-md-3 col-sm-3 menu_back" style="paddin: 0;"> <ul class="menu_large"> <li><a href="#about" class="gn-icon gn-icon-download">About</a></li> <li><a href="#service" class="gn-icon gn-icon-cog">Service</a></li> <li><a href="#works" class="gn-icon gn-icon-help">Works</a></li> <li><a href="#contact" class="gn-icon gn-icon-archive">Contact</a></li> </ul> </div> <div id="main_div" class="col-lg-10 col-md-10 col-sm-10 col-lg-offset-1 col-md-offset-1 col-sm-offset-1" style="padding-top: 50px; text-align: center;"> <div class="cmn-t-border"> <div class="white_box white_box_height"> <form data-ng-submit="addLeaves()" name="leavePolicy" novalidate> <div class="col-lg-10 col-lg-offset-1"> <!-- <form data-ng-submit="addLeaves()" name="leavePolicy" novalidate> --> <div class="row" style="margin-top: 1%; margin-bottom: 1%;"> <div class="col-lg-6"> <h3 id="events-editor"> <span class="pull-left" style="font-family: 'Lato', Arial, sans-serif !important;">Manage Leaves</span> </h3> </div> <div class="col-lg-6"> <button class="btn btn-primary pull-right" data-ng-click="addMore()">Add new</button> <div class="clearfix"> <div data-year-drop style="float: left;"> Year: <select data-ng-model="year" data-ng-options="y for y in years" name="year" required></select> <span class="error" data-ng-show="submitted && leavePolicy.year.$error.required">Required !</span> </div> Full/Partial :<select data-ng-model="leavesType" name="leavesType" required> <option data-ng-selected="true" value="">--select leaves type--</option> <option value="full">Full</option> <option value="partial">Partial</option> </select> <span class="error" data-ng-show="submitted && leavePolicy.leavesType.$error.required">Required !</span> </div> </div> </div> <div class="form-group"> <table class="table table-bordered"> <thead> <tr> <th>Leave Type</th> <th>Total Leaves</th> <th>Remove</th> </tr> </thead> <tbody> <tr data-ng-repeat="type in types | orderBy:'$index':true"> <td><input type="text" ng-model="type.leaveType" name="leaveType_{{$index}}" required> <span class="error" ng-show="submitted && leavePolicy.leaveType_{{$index}}.$error.required">Type is required.</span></td> <td> <p class="input-group" style="max-width: 100%"> <input type="number" name="totalLeaves_{{$index}}" ng-model="type.totalLeaves" required> <span class="error" ng-show="submitted && leavePolicy.totalLeaves_{{$index}}.$error.required"> Required!</span> <span class="error" ng-show="leavePolicy.totalLeaves_{{$index}}.$error.number"> Not valid number!</span> </p> </td> <td><button class="btn btn-danger" data-ng-click="remove($index)" type="button">Delete</button></td> </tr> </tbody> </table> </div> </div> <div class="col-lg-10 col-lg-offset-1"> <div class="row" style="margin-top: 1%; margin-bottom: 1%;"> <div class="col-lg-6"></div> <div class="col-lg-6"> <input type="submit" value="Submit" class="btn btn-primary pull-right" data-ng-click="submitted=true"> </div> </div> </div> <!-- <div class="row" style="margin-top: 1%; margin-bottom: 1%;"> <div class="col-lg-12"> <input type="submit" value="Submit" class="btn btn-primary pull-right" ng-click="submitted=true"> <div class="clearfix"></div> </div> </div> --> </form> </div> </div> </div> </div> </div>
Khan1Usman/leavemanagement
LeaveManagement/src/main/webapp/resources/leave-management-angular-src/partials/leave_admin_setup.html
HTML
apache-2.0
4,239
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0) on Thu Aug 09 18:46:52 EDT 2012 --> <title>Uses of Package org.drip.service.env</title> <meta name="date" content="2012-08-09"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package org.drip.service.env"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/service/env/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package org.drip.service.env" class="title">Uses of Package<br>org.drip.service.env</h1> </div> <div class="contentContainer">No usage of org.drip.service.env</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/service/env/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
tectronics/creditsuite
1.6/docs/Javadoc/org/drip/service/env/package-use.html
HTML
apache-2.0
3,875
<!DOCTYPE html> <!-- saved from url=(0041)https://bl.ocks.org/mbostock/raw/3886208/ --> <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <style> body { font: 10px sans-serif; } .axis path, .axis line { fill: none; stroke: #000; shape-rendering: crispEdges; } .bar { fill: steelblue; } .x.axis path { display: none; } </style> </head><body> <script src="./files/d3.v3.min.js"></script> <script> var margin = {top: 20, right: 20, bottom: 30, left: 40}, width = 960 - margin.left - margin.right, height = 500 - margin.top - margin.bottom; var x = d3.scale.ordinal() .rangeRoundBands([0, width], .1); var y = d3.scale.linear() .rangeRound([height, 0]); var color = d3.scale.ordinal() .range(["#98abc5", "#8a89a6", "#7b6888", "#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); var xAxis = d3.svg.axis() .scale(x) .orient("bottom"); var yAxis = d3.svg.axis() .scale(y) .orient("left") .tickFormat(d3.format(".2s")); var svg = d3.select("body").append("svg") .attr("width", width + margin.left + margin.right) .attr("height", height + margin.top + margin.bottom) .append("g") .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); d3.csv("./files/nop.csv", function(error, data) { if (error) throw error; color.domain(d3.keys(data[0]).filter(function(key) { return key !== "delta"; })); data.forEach(function(d) { var y0 = 0; d.ages = color.domain().map(function(name) { return {name: name, y0: y0, y1: y0 += +d[name]}; }); d.total = d.ages[d.ages.length - 1].y1; }); data.sort(function(a, b) { return b.total - a.total; }); x.domain(data.map(function(d) { return d.delta; })); y.domain([0, d3.max(data, function(d) { return d.total; })]); svg.append("g") .attr("class", "x axis") .attr("transform", "translate(0," + height + ")") .call(xAxis); svg.append("g") .attr("class", "y axis") .call(yAxis) .append("text") .attr("transform", "rotate(-90)") .attr("y", 6) .attr("dy", ".71em") .style("text-anchor", "end") .text("Percentage of AS-pairs"); var state = svg.selectAll(".delta") .data(data) .enter().append("g") .attr("class", "g") .attr("transform", function(d) { return "translate(" + x(d.delta) + ",0)"; }); state.selectAll("rect") .data(function(d) { return d.ages; }) .enter().append("rect") .attr("width", x.rangeBand()) .attr("y", function(d) { return y(d.y1); }) .attr("height", function(d) { return y(d.y0) - y(d.y1); }) .style("fill", function(d) { return color(d.name); }); var legend = svg.selectAll(".legend") .data(color.domain().slice().reverse()) .enter().append("g") .attr("class", "legend") .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); legend.append("rect") .attr("x", width - 18) .attr("width", 18) .attr("height", 18) .style("fill", color); legend.append("text") .attr("x", width - 24) .attr("y", 9) .attr("dy", ".35em") .style("text-anchor", "end") .text(function(d) { return d; }); }); </script></body></html>
colin-scott/personal_website
research/stacked_bar_chart/stack_bar_graph.html
HTML
apache-2.0
3,233
{% extends "admin/base_site" %} {% block coltype %}colSM{% endblock %} {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">Home</a> &rsaquo; <a href="../">Documentation</a> &rsaquo; Tags</div>{% endblock %} {% block title %}Template tags{% endblock %} {% block content %} <h1>Template tag documentation</h1> <div id="content-main"> {% regroup tags|dictsort:"library" by library as tag_libraries %} {% for library in tag_libraries %} <div class="module"> <h2>{% if library.grouper %}{{ library.grouper }}{% else %}Built-in tags{% endif %}</h2> {% if library.grouper %}<p class="small quiet">To use these tags, put <code>{% templatetag openblock %} load {{ library.grouper }} {% templatetag closeblock %}</code> in your template before using the tag.</p><hr>{% endif %} {% for tag in library.list|dictsort:"name" %} <h3 id="{{ tag.name }}">{{ tag.name }}</h3> <h4>{{ tag.title }}</h4> <p>{{ tag.body }}</p> {% if not forloop.last %}<hr />{% endif %} {% endfor %} </div> {% endfor %} </div> {% endblock %} {% block sidebar %} <div id="content-related"> {% regroup tags|dictsort:"library" by library as tag_libraries %} {% for library in tag_libraries %} <div class="module"> <h2>{% if library.grouper %}{{ library.grouper }}{% else %}Built-in tags{% endif %}</h2> <ul> {% for tag in library.list|dictsort:"name" %} <li><a href="#{{ tag.name }}">{{ tag.name }}</a></li> {% endfor %} </ul> </div> {% endfor %} </div> {% endblock %}
tungvx/deploy
Django-0.90/django/contrib/admin/templates/admin_doc/template_tag_index.html
HTML
apache-2.0
1,512
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" /> <link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media="all"/> <link rel="stylesheet" href="../../../../../aui/css/aui-experimental.min.css" media="all"/> <!--[if IE 9]><link rel="stylesheet" href="../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]--> <style type="text/css" media="all"> @import url('../../../../../style.css'); @import url('../../../../../tree.css'); </style> <script src="../../../../../jquery-1.8.3.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script> <script src="../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script> <script src="../../../../../package-nodes-tree.js" type="text/javascript"></script> <script src="../../../../../clover-tree.js" type="text/javascript"></script> <script src="../../../../../clover.js" type="text/javascript"></script> <script src="../../../../../clover-descriptions.js" type="text/javascript"></script> <script src="../../../../../cloud.js" type="text/javascript"></script> <title>ABA Route Transit Number Validator 1.0.1-SNAPSHOT</title> </head> <body> <div id="page"> <header id="header" role="banner"> <nav class="aui-header aui-dropdown2-trigger-group" role="navigation"> <div class="aui-header-inner"> <div class="aui-header-primary"> <h1 id="logo" class="aui-header-logo aui-header-logo-clover"> <a href="http://openclover.org" title="Visit OpenClover home page"><span class="aui-header-logo-device">OpenClover</span></a> </h1> </div> <div class="aui-header-secondary"> <ul class="aui-nav"> <li id="system-help-menu"> <a class="aui-nav-link" title="Open online documentation" target="_blank" href="http://openclover.org/documentation"> <span class="aui-icon aui-icon-small aui-iconfont-help">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <a href="http://cardatechnologies.com" target="_top"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </a> </div> <div class="aui-page-header-main" > <h1> <a href="http://cardatechnologies.com" target="_top"> ABA Route Transit Number Validator 1.0.1-SNAPSHOT </a> </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li> <li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li> <li><a href="test-Test_AbaRouteValidator_16.html">Class Test_AbaRouteValidator_16</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_35405_good </h1> <table class="aui"> <thead> <tr> <th>Test</th> <th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th> <th><label title="When the test execution was started">Start time</label></th> <th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th> <th><label title="A failure or error message if the test is not successful.">Message</label></th> </tr> </thead> <tbody> <tr> <td> <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_16.html?line=9784#src-9784" >testAbaNumberCheck_35405_good</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:45:32 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</div> <table class="aui aui-table-sortable"> <thead> <tr> <th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th> <th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_35405_good</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=23420#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a> </td> <td> <span class="sortValue">0.7352941</span>73.5% </td> <td class="align-middle" style="width: 100%" colspan="3"> <div> <div title="73.5% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:73.5%"></div></div></div> </td> </tr> </tbody> </table> </div> <!-- class="aui-page-panel-content-clover" --> <footer id="footer" role="contentinfo"> <section class="footer-body"> <ul> <li> Report generated by <a target="_new" href="http://openclover.org">OpenClover</a> v 4.4.1 on Sat Aug 7 2021 12:49:26 MDT using coverage data from Sat Aug 7 2021 12:47:23 MDT. </li> </ul> <ul> <li>OpenClover is free and open-source software. </li> </ul> </section> </footer> </section> <!-- class="aui-page-panel-content" --> </div> <!-- class="aui-page-panel-inner" --> </div> <!-- class="aui-page-panel" --> </div> <!-- id="page" --> </body> </html>
dcarda/aba.route.validator
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_16_testAbaNumberCheck_35405_good_i2k.html
HTML
apache-2.0
9,179
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="zh"> <head> <!-- Generated by javadoc (1.8.0_05) on Thu Oct 23 11:22:38 CST 2014 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>org.kymjs.aframe.ui.activity</title> <meta name="date" content="2014-10-23"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.kymjs.aframe.ui.activity"; } } catch(err) { } //--> </script> <noscript> <div>您的浏览器已禁用 JavaScript。</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="跳过导航链接">跳过导航链接</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="../../../../../overview-summary.html">概览</a></li> <li class="navBarCell1Rev">程序包</li> <li>类</li> <li><a href="package-use.html">使用</a></li> <li><a href="package-tree.html">树</a></li> <li><a href="../../../../../deprecated-list.html">已过时</a></li> <li><a href="../../../../../index-files/index-1.html">索引</a></li> <li><a href="../../../../../help-doc.html">帮助</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/kymjs/aframe/ui/package-summary.html">上一个程序包</a></li> <li><a href="../../../../../org/kymjs/aframe/ui/fragment/package-summary.html">下一个程序包</a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/kymjs/aframe/ui/activity/package-summary.html" target="_top">框架</a></li> <li><a href="package-summary.html" target="_top">无框架</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">所有类</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="程序包" class="title">程序包&nbsp;org.kymjs.aframe.ui.activity</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="接口概要表, 列表接口和解释"> <caption><span>接口概要</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">接口</th> <th class="colLast" scope="col">说明</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/kymjs/aframe/ui/activity/I_KJActivity.html" title="org.kymjs.aframe.ui.activity中的接口">I_KJActivity</a></td> <td class="colLast"> <div class="block">KJFrameActivity接口协议,实现此接口可使用KJActivityManager堆栈<br> <b>创建时间</b> 2014-3-1 <br> <b>最后修改时间</b> 2014-5-30</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/kymjs/aframe/ui/activity/I_SkipActivity.html" title="org.kymjs.aframe.ui.activity中的接口">I_SkipActivity</a></td> <td class="colLast"> <div class="block">规范Activity跳转的接口协议</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="类概要表, 列表类和解释"> <caption><span>类概要</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">类</th> <th class="colLast" scope="col">说明</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/kymjs/aframe/ui/activity/BaseActivity.html" title="org.kymjs.aframe.ui.activity中的类">BaseActivity</a></td> <td class="colLast"> <div class="block">Application BaseActivity,you should inherit it for your Activity<br> <b>创建时间</b> 2014-5-28</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/kymjs/aframe/ui/activity/BaseSplash.html" title="org.kymjs.aframe.ui.activity中的类">BaseSplash</a></td> <td class="colLast"> <div class="block">应用启动的欢迎界面模板</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/kymjs/aframe/ui/activity/KJFragmentActivity.html" title="org.kymjs.aframe.ui.activity中的类">KJFragmentActivity</a></td> <td class="colLast"> <div class="block">Application BaseActivity plus.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/kymjs/aframe/ui/activity/KJFrameActivity.html" title="org.kymjs.aframe.ui.activity中的类">KJFrameActivity</a></td> <td class="colLast"> <div class="block">Activity's framework,the developer shouldn't extends it<br> <b>创建时间</b> 2014-3-1 <br> <b>最后修改时间</b> 2014-10-17<br></div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/kymjs/aframe/ui/activity/SimpleBrowserTemplet.html" title="org.kymjs.aframe.ui.activity中的类">SimpleBrowserTemplet</a></td> <td class="colLast"> <div class="block">简单浏览器模板<br> <b>说明</b> 开发者必须首先实现initWebVie(WebView mWebView)方法,将webview返回。</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/kymjs/aframe/ui/activity/SlidTemplet.html" title="org.kymjs.aframe.ui.activity中的类">SlidTemplet</a></td> <td class="colLast"> <div class="block">具有侧滑缩放效果侧滑界面模板<br> <b>警告</b> 在changeFragment()中必须调用super.changeFragment(targetFragment);</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="枚举概要表, 列表枚举和解释"> <caption><span>枚举概要</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">枚举</th> <th class="colLast" scope="col">说明</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/kymjs/aframe/ui/activity/BaseActivity.ActivityState.html" title="org.kymjs.aframe.ui.activity中的枚举">BaseActivity.ActivityState</a></td> <td class="colLast"> <div class="block">当前Activity状态</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/kymjs/aframe/ui/activity/BaseActivity.ScreenOrientation.html" title="org.kymjs.aframe.ui.activity中的枚举">BaseActivity.ScreenOrientation</a></td> <td class="colLast"> <div class="block">Activity显示方向</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="跳过导航链接">跳过导航链接</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="../../../../../overview-summary.html">概览</a></li> <li class="navBarCell1Rev">程序包</li> <li>类</li> <li><a href="package-use.html">使用</a></li> <li><a href="package-tree.html">树</a></li> <li><a href="../../../../../deprecated-list.html">已过时</a></li> <li><a href="../../../../../index-files/index-1.html">索引</a></li> <li><a href="../../../../../help-doc.html">帮助</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/kymjs/aframe/ui/package-summary.html">上一个程序包</a></li> <li><a href="../../../../../org/kymjs/aframe/ui/fragment/package-summary.html">下一个程序包</a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/kymjs/aframe/ui/activity/package-summary.html" target="_top">框架</a></li> <li><a href="package-summary.html" target="_top">无框架</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">所有类</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
geniusgithub/KJFrameForAndroid
doc/html_document/org/kymjs/aframe/ui/activity/package-summary.html
HTML
apache-2.0
9,007
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc --> <title>LocalDeviceRepresentation.FavouriteChangedListener (HappyBrackets API)</title> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="LocalDeviceRepresentation.FavouriteChangedListener (HappyBrackets API)"; } } catch(err) { } //--> var methods = {"i0":6}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../net/happybrackets/controller/network/LocalDeviceRepresentation.DeviceRemovedListener.html" title="interface in net.happybrackets.controller.network"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../net/happybrackets/controller/network/LocalDeviceRepresentation.GainChangedListener.html" title="interface in net.happybrackets.controller.network"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?net/happybrackets/controller/network/LocalDeviceRepresentation.FavouriteChangedListener.html" target="_top">Frames</a></li> <li><a href="LocalDeviceRepresentation.FavouriteChangedListener.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">net.happybrackets.controller.network</div> <h2 title="Interface LocalDeviceRepresentation.FavouriteChangedListener" class="title">Interface LocalDeviceRepresentation.FavouriteChangedListener</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Enclosing class:</dt> <dd><a href="../../../../net/happybrackets/controller/network/LocalDeviceRepresentation.html" title="class in net.happybrackets.controller.network">LocalDeviceRepresentation</a></dd> </dl> <hr> <br> <pre>public static interface <span class="typeNameLabel">LocalDeviceRepresentation.FavouriteChangedListener</span></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/happybrackets/controller/network/LocalDeviceRepresentation.FavouriteChangedListener.html#favouriteChanged-net.happybrackets.controller.network.LocalDeviceRepresentation-">favouriteChanged</a></span>(<a href="../../../../net/happybrackets/controller/network/LocalDeviceRepresentation.html" title="class in net.happybrackets.controller.network">LocalDeviceRepresentation</a>&nbsp;device)</code>&nbsp;</td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="favouriteChanged-net.happybrackets.controller.network.LocalDeviceRepresentation-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>favouriteChanged</h4> <pre>void&nbsp;favouriteChanged(<a href="../../../../net/happybrackets/controller/network/LocalDeviceRepresentation.html" title="class in net.happybrackets.controller.network">LocalDeviceRepresentation</a>&nbsp;device)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../net/happybrackets/controller/network/LocalDeviceRepresentation.DeviceRemovedListener.html" title="interface in net.happybrackets.controller.network"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../net/happybrackets/controller/network/LocalDeviceRepresentation.GainChangedListener.html" title="interface in net.happybrackets.controller.network"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?net/happybrackets/controller/network/LocalDeviceRepresentation.FavouriteChangedListener.html" target="_top">Frames</a></li> <li><a href="LocalDeviceRepresentation.FavouriteChangedListener.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
orsjb/HappyBrackets
Distribution/HappyBrackets Developer Kit/HappyBrackets Project/libs/docs/hb/javadoc/net/happybrackets/controller/network/LocalDeviceRepresentation.FavouriteChangedListener.html
HTML
apache-2.0
8,724
{% load wagtailcore_tags %} {{ email_text|richtext }} <p>To reset your password click here:</p> <p><a href="{{ reset_link }}">{{ reset_link }}</a></p>
wagboot/wagboot
wagboot/templates/wagboot/blocks/password_reset_email.html
HTML
apache-2.0
152
<!DOCTYPE html> <head> <meta charset="utf-8"> <title>Line Chart</title> <style> body { font: 10px sans-serif; } .axis path, .axis line { fill: none; stroke: #000; shape-rendering: crispEdges; } .x.axis path { display: none; } .line1 { fill: none; stroke: #ff7f0e; stroke-width: 2px; } .line2 { fill: none; stroke: #1f77b4; stroke-width: 2px; } </style> </head> <body> <h2 id="name">Byte frequency correlation between a given file's byte distribution (orange line) and the <em>BFA signature (blue line) of it's file type</em> </h2> <p id="ff"></p> <script type="text/javascript" src="d3.min.js" charset="utf-8"></script> <script type="text/javascript" src="jquery.js"></script> <script> var fileName="bfc_correlation/bfc_corelation_values_output.json"; var margin = {top: 20, right: 20, bottom: 30, left: 50}, width = 1200 - margin.left - margin.right, height = 500 - margin.top - margin.bottom; var x = d3.scale.linear() .range([0, width]); var y = d3.scale.linear() .range([height, 0]); var xAxis = d3.svg.axis() .scale(x) .orient("bottom"); var yAxis = d3.svg.axis() .scale(y) .orient("left"); //document.getElementById("name").innerHTML+=fileName; $.getJSON(fileName, function(json) { var data=[]; var v=0; $.each(json, function(i,field){ v1=parseFloat(field[0]); v2=parseFloat(field[1]); //signature data.push({date: parseInt(i), close1: v1, close2:v2}); //console.log(i+" "+v); }); var line1 = d3.svg.line() .x(function(d) { return x(d.date); }) .y(function(d) { return y(d.close1); }); //signature line var line2 = d3.svg.line() .x(function(d) { return x(d.date); }) .y(function(d) { return y(d.close2); }); var svg = d3.select("body").append("svg") .attr("width", width + margin.left + margin.right) .attr("height", height + margin.top + margin.bottom) .append("g") .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); x.domain(d3.extent(data, function(d) { return d.date; })); //uncomment to get y-axis labels only for y-data available //y.domain(d3.extent(data, function(d) { return d.close; })); svg.append("g") .attr("class", "x axis") .attr("transform", "translate(0," + height + ")") .call(xAxis); svg.append("g") .attr("class", "y axis") .call(yAxis) .append("text") .attr("transform", "rotate(-90)") .attr("y", 6) .attr("dy", ".71em") .style("text-anchor", "end") .text("Normalized Frequency"); svg.append("path") .datum(data) .attr("class", "line1") .attr("d", line1); //signature line blue in color svg.append("path") .datum(data) .attr("class", "line2") .attr("d", line2); }); </script>
harshfatepuria/data-analysis-test
D3_BFC_Comparison_Multiline.html
HTML
apache-2.0
2,837
{% extends "sakai/base.html" %}{% load molly_sakai %}{% load molly_utils %}{% load i18n %} {% block extrahead %} <style type="text/css"> .signed-up td { background: #e5f0e1; background: -webkit-gradient(linear, left top, left bottom, from(#e5f0e1), to(#ddf0d6)); background: -moz-linear-gradient(center top, #e5f0e1, #ddf0d6); } .full td { background: #f0e1d6; background: -webkit-gradient(linear, left top, left bottom, from(#f0e7e1), to(#f0e1d6)); background: -moz-linear-gradient(center top, #f0e7e1, #f0e1d6); } .waiting-list td { background: #eff0d6; background: -webkit-gradient(linear, left top, left bottom, from(#eff0e1), to(#eff0d6)); background: -moz-linear-gradient(center top, #eff0e1, #eff0d6); } .on-waiting-list td { background: #eff0d6; background: -webkit-gradient(linear, left top, left bottom, from(#eff0e1), to(#eff0d6)); background: -moz-linear-gradient(center top, #eff0e1, #eff0d6); } .header { border-bottom: 1px solid #888; } table { border-spacing:0; width: 100%; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; text-shadow: 0px 1px 1px #fff; } table tr.new-week td { background: #DEE6FF; background: -webkit-gradient(linear, left top, left bottom, from(#A7BAC7), to(#DEE6FF)); background:-moz-linear-gradient(center top, #A7BAC7, #DEE6FF); padding: 5px 5px 5px 7px; border: 0; font-size: 1.1em; } table tr td { border-bottom: 1px solid #888; border-top: 1px solid #fff; padding: 7px 3px; background: #eee; background: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#eee)); background: -moz-linear-gradient(center top, #f3f3f3, #eee); } table tr td:last-child a { color: #fff; text-decoration:none; display: block; height: 2em; line-height: 2em; vertical-align: middle; text-shadow: 0 -1px 1px #000; } table tr:last-child td:first-child { border-bottom-left-radius: 5px; } table tr:last-child td:last-child { border-bottom-right-radius: 5px; } div.button { background:#002147 url('{{ STATIC_URL }}images/icons/list-arrow.png') no-repeat; background-position: right center; margin: 0 2px 0 auto; min-width: 70px; max-width: 100px; padding: 3px; box-shadow: 3px 3px 4px #999;-webkit-box-shadow: 3px 3px 4px #999;-moz-box-shadow: 3px 3px 4px #999; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-color: #ccc; border: 1px solid rgba(255,255,255,0.3); border-width: 1px 0 0 1px; } </style> {% endblock %} {% block content %} <div class="section"> <div class="header"> <h2>{{ event.title }}</h2> </div> {# Metadata about the sign-up slots #} <div class="section-content"> {# Time and Date #} {% ifequal event.start|date:"dMY" event.end|date:"dMY" %} {# Display Term Week + Name, Date + Time start -> end #} {{ event.startTime|from_sakai_timestamp|date:"d M Y" }} {{ event.startTime|from_sakai_timestamp|date:"g:iA" }} - {{ event.endTime|from_sakai_timestamp|date:"g:iA" }} {% else %} {# Display startTime + startDate - endTime + endDate #} {{ event.startTime|from_sakai_timestamp|date:"g:iA, d M Y" }} - {{ event.endTime|from_sakai_timestamp|date:"g:iA, d M Y" }} {% endifequal %} <br /> {# Location #} {{ event.location }} <dl> <dt>Description</dt> {# CLENSE ME! #} <dd>{{ event.description|sanitize_html }}</dd> <dt>{% trans "Organiser" %}</dt> <dd>{{ event.organizerName }}</dd> <dd></dd> <dt>{% trans "Status" %}</dt> {% if event.startToSignUp and not event.passedDeadline %} <dd>{% blocktrans with event.signupDeadline|from_sakai_timestamp|date:"DATETIME_FORMAT"|lower as signup_deadline %}Open to sign up until {{ signup_deadline }}{% endblocktrans %}</dd> {% else %} {% if event.passedDeadline and not event.meetingExpired %} <dd>{% trans "Sign up deadline has passed" %}</dd> {% else %} {% if event.meetingExpired %} <dd>{% trans "This meeting has already happened!" %}</dd> {% else %} <dd>{% blocktrans with event.signupBegins|from_sakai_timestamp|date:"DATETIME_FORMAT" as open_time %}Sign up will open on {{ open_time }}{% endblocktrans %}</dd> {% endif %} {% endif %} {% endif %} </dl> </div> {# End Metadata about the sign-up slots #} <table> <tbody> {# Loop through the individual slots #} {% for ts in event.signupTimeSlotItems %} <tr class="{{ ts|signup_status:event }}"> <td>{{ ts|signup_status:event|signup_status_human }}</td> <td> {# Time Range -- needs multi date possibility #} {{ ts.startTime|from_sakai_timestamp|date:"g:iA"|lower }} - {{ ts.endTime|from_sakai_timestamp|date:"g:iA"|lower }}<br /> {# max Attendees #} <small>{% blocktrans with ts|places_left as places_left and ts.maxNoOfAttendees as capacity %}Places available: {{ places_left }}/{{ capacity }}{% endblocktrans %}</small><br /> {# if the sign-up event is set up to display attendee names #} {% if ts.displayAttendees %} {% for attendee in ts.attendees %} {{ attendee.displayName }}{% if not forloop.last %},{% endif %} {% endfor %} {% else %} {# otherwise #} {% if ts.signedUp and not ts.attendees|length_is:"1" %} {% blocktrans count ts.attendees|length|add:"-1" as attendee_number %}You and {{ attendee_number }} other{% plural %}You and {{ attendee_number }} others{% endblocktrans %} {% else %} {% if ts.attendees|length_is:"0" %} {% trans "No one yet" %} {% else %} {% blocktrans count ts.attendees|length as attendee_number %}{{ attendee_number }} attendee{% plural %}{{ attendee_number }} attendees{% endblocktrans %} {% endif %} {% endif %} {% endif %} {# Is user signed up or on waiting list? #} {% if ts.signedUp %} {% trans "You're signed up" %} {% else %} {% if ts.onWaitList %}{% trans "You're on the waiting list" %}{% endif %} {% endif %} </td> <td> <form method="post" action="."> {% csrf_token %} <input type="hidden" name="timeslot_id" value="{{ ts.id }}"/> {% comment %} If meeting has a) Not Expired b) Not passed its deadline c) Is available to sign up d) Time slot is not locked {% endcomment %} {# The following mass of ifs results in a relevant button being displayed per time slot #} {% if not event.meetingExpired and not event.passedDeadline and event.startToSignUp and not ts.locked %} {# User is signed up to this slot, display cancel button #} {% if ts.signedUp %} <button type="submit" name="action" value="cancelSignup">{% trans "Cancel" %}</button> {% else %} {# User is on waiting list #} {% if ts.onWaitList %} <button type="submit" name="action" value="removeWaitList">{% trans "Leave waiting list" %}</button> {% else %} {# Slot is available #} {% if ts.available %} {# User is signed up to a different slot #} {% if signedUp %} <button type="submit" name="action" value="addToWaitList">{% trans "Move here" %}</button> {% else %} {# Let user sign up #} <button type="submit" name="action" value="signup">{% trans "Sign up" %}</button> {% endif %} {% else %} {# Let user join waiting list #} <button type="submit" name="action" value="addToWaitList">{% trans "Join waiting list" %}</button> {% endif %} {% endif %} {% endif %} {% endif %} </form> </td> </tr> {% endfor %} </tbody> </table> </div> {% endblock %}
mollyproject/mollyproject
molly/apps/sakai/templates/sakai/signup/detail.html
HTML
apache-2.0
10,049
<div id="signatureCaptureQR"> <spinner id="spinnerSignatureQR" label="{{ 'reimbursement.loading.label' | translate }}"></spinner> <div class="modal-header"> <a class="close" ng-click="dismiss()">&times;</a> <h3 class="modal-title">{{ 'reimbursement.captureSignature.qr.title' | translate }}</h3> </div> <div class="modal-body"> {{ 'reimbursement.captureSignature.qr.info' | translate }} <div class="qrCodeWrapper"> <div class="qrUrl">{{ qrUrl }}</div> <div class="or">{{ 'reimbursement.capture.or' | translate }}</div> <qrcode data="{{ qrUrl }}" size="300" version="5"></qrcode> </div> </div> <div class="modal-footer"> <button class="btn btn-default" ng-click="dismiss()"> <i class="fa fa-times"></i> {{ 'reimbursement.general.cancel' | translate }} </button> <button class="btn btn-primary" ng-click="checkAndClose()"> <i class="fa fa-check"></i> {{ 'reimbursement.captureSignature.qr.capturedOnMobile' | translate }} </button> </div> </div>
masterproject-reimbursement/reimbursement-client
src/html/templates/signature/signature-qr.tpl.html
HTML
apache-2.0
989
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_72) on Wed May 13 11:47:40 EDT 2015 --> <title>YamlFileNetworkTopologySnitch.Datacenter (apache-cassandra API)</title> <meta name="date" content="2015-05-13"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="YamlFileNetworkTopologySnitch.Datacenter (apache-cassandra API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/YamlFileNetworkTopologySnitch.Datacenter.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.html" title="class in org.apache.cassandra.locator"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.Node.html" title="class in org.apache.cassandra.locator"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.Datacenter.html" target="_top">Frames</a></li> <li><a href="YamlFileNetworkTopologySnitch.Datacenter.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#methods_inherited_from_class_java.lang.Object">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li>Method</li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.cassandra.locator</div> <h2 title="Class YamlFileNetworkTopologySnitch.Datacenter" class="title">Class YamlFileNetworkTopologySnitch.Datacenter</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.apache.cassandra.locator.YamlFileNetworkTopologySnitch.Datacenter</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Enclosing class:</dt> <dd><a href="../../../../org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.html" title="class in org.apache.cassandra.locator">YamlFileNetworkTopologySnitch</a></dd> </dl> <hr> <br> <pre>public static class <span class="strong">YamlFileNetworkTopologySnitch.Datacenter</span> extends java.lang.Object</pre> <div class="block">Data center object type for the YAML topology configuration.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field_summary"> <!-- --> </a> <h3>Field Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> <caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.Datacenter.html#dc_name">dc_name</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>java.util.List&lt;<a href="../../../../org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.Rack.html" title="class in org.apache.cassandra.locator">YamlFileNetworkTopologySnitch.Rack</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.Datacenter.html#racks">racks</a></strong></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.Datacenter.html#YamlFileNetworkTopologySnitch.Datacenter()">YamlFileNetworkTopologySnitch.Datacenter</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ FIELD DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="field_detail"> <!-- --> </a> <h3>Field Detail</h3> <a name="dc_name"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>dc_name</h4> <pre>public&nbsp;java.lang.String dc_name</pre> </li> </ul> <a name="racks"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>racks</h4> <pre>public&nbsp;java.util.List&lt;<a href="../../../../org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.Rack.html" title="class in org.apache.cassandra.locator">YamlFileNetworkTopologySnitch.Rack</a>&gt; racks</pre> </li> </ul> </li> </ul> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="YamlFileNetworkTopologySnitch.Datacenter()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>YamlFileNetworkTopologySnitch.Datacenter</h4> <pre>public&nbsp;YamlFileNetworkTopologySnitch.Datacenter()</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/YamlFileNetworkTopologySnitch.Datacenter.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.html" title="class in org.apache.cassandra.locator"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.Node.html" title="class in org.apache.cassandra.locator"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.Datacenter.html" target="_top">Frames</a></li> <li><a href="YamlFileNetworkTopologySnitch.Datacenter.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#methods_inherited_from_class_java.lang.Object">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li>Method</li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2015 The Apache Software Foundation</small></p> </body> </html>
anuragkapur/cassandra-2.1.2-ak-skynet
apache-cassandra-2.0.15/javadoc/org/apache/cassandra/locator/YamlFileNetworkTopologySnitch.Datacenter.html
HTML
apache-2.0
10,368
<!-- Copyright (c) 2016 Google Inc. All rights reserved. --> <style> table { margin: 0 0 40px; } table, th, td { padding: 30px; border: 1px solid; } </style> <table> <!-- header --> <tr> <th>template</th> <th>UI</th> </tr> <!-- email --> <tr> <td rowspan="4">email</td> <td><div id="email" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="email-with-email" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="email-with-email-disabled" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="email-error" class="firebaseui-container"></div></td> </tr> <!-- phone --> <tr> <td rowspan="2">phone</td> <td><div id="phone-number" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="phone-number-error" class="firebaseui-container"></div></td> </tr> <!-- phone confirmation code --> <tr> <td rowspan="2">phone confirmation code</td> <td><div id="phone-confirmation-code" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="phone-confirmation-code-error" class="firebaseui-container"></div></td> </tr> <!-- resend --> <tr> <td rowspan="2">resend</td> <td><div id="resend-countdown" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="resend-link" class="firebaseui-container"></div></td> </tr> <!-- idpButton --> <tr> <td>idpButton</td> <td><div id="idp-button" class="firebaseui-container"></div></td> </tr> <!-- submitButton --> <tr> <td rowspan="2">submitButton</td> <td><div id="submit-button" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="submit-button-custom-label" class="firebaseui-container"></div></td> </tr> <!-- name --> <tr> <td rowspan="3">name</td> <td><div id="name" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="name-with-name" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="name-error" class="firebaseui-container"></div></td> </tr> <!-- newPassword --> <tr> <td rowspan="3">newPassword</td> <td><div id="new-password" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="new-password-toggled" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="new-password-error" class="firebaseui-container"></div></td> </tr> <!-- password --> <tr> <td rowspan="3">password</td> <td><div id="password" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="password-current" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="password-error" class="firebaseui-container"></div></td> </tr> <!-- passwordRecoveryButton --> <tr> <td>passwordRecoveryButton</td> <td><div id="password-recovery-button" class="firebaseui-container"></div></td> </tr> <!-- troubleGettingEmailButton --> <tr> <td>troubleGettingEmailButton</td> <td><div id="trouble-getting-email-button" class="firebaseui-container"></div></td> </tr> <!-- resendEmailLinkButton --> <tr> <td>resendEmailLinkButton</td> <td><div id="resend-email-link-button" class="firebaseui-container"></div></td> </tr> <!-- cancelButton --> <tr> <td rowspan="2">cancelButton</td> <td><div id="cancel-button" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="cancel-button-custom-label" class="firebaseui-container"></div></td> </tr> <!-- infoBar --> <tr> <td>infoBar</td> <td> <div id="info-bar" class="firebaseui-container"> <p>First paragraph.</p> <p>Second paragraph.</p> <p>Third paragrapth.</p> </div> </td> </tr> <!-- tosPpLink --> <tr> <td>tosPpLink</td> <td><div id="tos-pp-link" class="firebaseui-container"></div></td> </tr> <!-- phoneTosPp --> <tr> <td>phoneTosPp</td> <td><div id="phone-tos-pp" class="firebaseui-container"></div></td> </tr> <!-- fullMessageTosPp --> <tr> <td>fullMessageTosPp</td> <td><div id="full-message-tos-pp" class="firebaseui-container"></div></td> </tr> <!-- busyIndicator --> <tr> <td rowspan="2">busyIndicator</td> <td> <div id="busy-indicator" class="firebaseui-container"> <h1>Title</h1> <p><a href="https://mail.google.com">Gmail</a></p> <p><a href="https://drive.google.com">Google Drive</a></p> <p><a href="https://calendar.google.com">Google Calendar</a></p> </div> </td> </tr> <tr> <td> <div id="busy-indicator-spinner" class="firebaseui-container"> <h1>Title</h1> <p><a href="https://mail.google.com">Gmail</a></p> <p><a href="https://drive.google.com">Google Drive</a></p> <p><a href="https://calendar.google.com">Google Calendar</a></p> </div> </td> </tr> <!-- recaptcha --> <tr> <td rowspan="2">recaptcha</td> <td><div id="recaptcha" class="firebaseui-container"></div></td> </tr> <tr> <td><div id="recaptcha-error" class="firebaseui-container"></div></td> </tr> <!-- loading dialog --> <tr> <td rowspan="2">loadingDialog</td> <td> <div class="firebaseui-container"> <button id="show-loading-dialog">Show loading dialog</button> </div> </td> </tr> <tr> <td> <div class="firebaseui-container"> <button id="show-loading-dialog-long">Show loading dialog with long text</button> </div> </td> </tr> <!-- done dialog --> <tr> <td>doneDialog</td> <td> <div class="firebaseui-container"> <button id="show-done-dialog">Show done dialog</button> </div> </td> </tr> <!-- listBox dialog --> <tr> <td rowspan="2">listBox</td> <td> <div class="firebaseui-container"> <button id="show-list-box">Show list box</button> </div> </td> </tr> <tr> <td> <div class="firebaseui-container"> <button id="show-list-box-with-icons">Show list box with icons</button> </div> </td> </tr> <!-- tenantSelectionButton --> <tr> <td>tenantSelectionButton</td> <td><div id="tenant-selection-button" class="firebaseui-container"></div></td> </tr> </table>
firebase/firebaseui-web
soy/elements_test_dom.html
HTML
apache-2.0
6,275
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_25) on Tue May 26 14:03:12 CDT 2015 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class com.gerken.gumbo.monitor.servlet.ConnectPartServlet (Gumbo HTTP-Based Monitor 1.0.0-SNAPSHOT API)</title> <meta name="date" content="2015-05-26"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.gerken.gumbo.monitor.servlet.ConnectPartServlet (Gumbo HTTP-Based Monitor 1.0.0-SNAPSHOT API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../com/gerken/gumbo/monitor/servlet/package-summary.html">Package</a></li> <li><a href="../../../../../../com/gerken/gumbo/monitor/servlet/ConnectPartServlet.html" title="class in com.gerken.gumbo.monitor.servlet">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/gerken/gumbo/monitor/servlet/class-use/ConnectPartServlet.html" target="_top">Frames</a></li> <li><a href="ConnectPartServlet.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.gerken.gumbo.monitor.servlet.ConnectPartServlet" class="title">Uses of Class<br>com.gerken.gumbo.monitor.servlet.ConnectPartServlet</h2> </div> <div class="classUseContainer">No usage of com.gerken.gumbo.monitor.servlet.ConnectPartServlet</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../com/gerken/gumbo/monitor/servlet/package-summary.html">Package</a></li> <li><a href="../../../../../../com/gerken/gumbo/monitor/servlet/ConnectPartServlet.html" title="class in com.gerken.gumbo.monitor.servlet">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/gerken/gumbo/monitor/servlet/class-use/ConnectPartServlet.html" target="_top">Frames</a></li> <li><a href="ConnectPartServlet.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2015. All rights reserved.</small></p> </body> </html>
chrisGerken/gumbo
gumbo-monitor-http/apidocs/com/gerken/gumbo/monitor/servlet/class-use/ConnectPartServlet.html
HTML
apache-2.0
4,528
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Hello MUI</title> <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <link rel="stylesheet" href="../css/mui.min.css"> <style> html, body { background-color: #efeff4; } p { text-indent: 22px; } span.mui-icon { font-size: 14px; color: #007aff; margin-left: -15px; padding-right: 10px; } </style> </head> <body> <header class="mui-bar mui-bar-nav"> <a class="mui-action-menu mui-icon mui-icon-bars mui-pull-right"></a> <a class="mui-action-back mui-icon mui-icon-back mui-pull-left"></a> <h1 class="mui-title">off canvas(侧滑导航)</h1> </header> <div class="mui-content"> <div class="mui-content-padded"> <p>这是webview模式右滑导航示例,主页面和菜单在不同的webview中, 优点是支持菜单内容在多页面的复用,缺点是不支持拖动手势(跟手); 当前页面为主界面,你可以在主界面放置任何内容; 打开侧滑菜单有多种方式: 1、在当前页面快速向左滑动(swipe); 2、点击页面右上角的 <span class="mui-icon mui-icon-bars"></span> 图标; 3、通过JS API触发(例如点击如下蓝色按钮体验); <span class="android-only">4、Android手机按menu键;</span> </p> <p style="padding: 5px 20px;margin-bottom: 5px;"> <button id="show-btn" type="button" class="mui-btn mui-btn-primary mui-btn-block" style="padding: 10px;"> 显示侧滑菜单 </button> </p> <p >侧滑菜单的移动动画,支持多种效果,切换如下选项体验不同动画效果:</p> </div> <form class="mui-input-group" style="margin-bottom: 15px;"> <div class="mui-input-row mui-radio"> <label>主界面移动、菜单不动</label> <input name="style" type="radio" checked="" value="main-move"> </div> <div class="mui-input-row mui-radio"> <label>主界面不动、菜单移动</label> <input name="style" type="radio" value="menu-move"> </div> <div class="mui-input-row mui-radio mui-hidden" id="move-togger"> <label>整体移动</label> <input name="style" type="radio" value="all-move"> </div> </form> </div> <script src="../js/mui.min.js"></script> <script> var main,menu, mask = mui.createMask(_closeMenu); var showMenu = false, mode = 'main-move'; //整体滑动暂不支持android手机,因为两个页面的移动动画,无法保证同步性; if (!mui.os.android) { //整体滑动暂不支持android手机,因为两个页面的移动动画,无法保证同步性; document.getElementById("move-togger").classList.remove('mui-hidden'); var spans = document.querySelectorAll('.android-only'); for (var i=0,len=spans.length;i<len;i++) { spans[i].style.display = "none"; } } mui.init({ swipeBack: false, beforeback: back }); function back() { if (showMenu) { //菜单处于显示状态,返回键应该先关闭菜单,阻止主窗口执行mui.back逻辑; closeMenu(); return false; } else { //菜单处于隐藏状态,执行返回时,要先close菜单页面,然后继续执行mui.back逻辑关闭主窗口; menu.close('none'); return true; } } //plusReady事件后,自动创建menu窗口; mui.plusReady(function() { main = plus.webview.currentWebview(); menu = mui.preload({ id: 'offcanvas-drag-left-plus-menu', url: 'offcanvas-drag-left-plus-menu.html', styles: { left: "30%", width: '70%', zindex: 9997 } }); }); /* * 显示菜单菜单 */ function openMenu() { if (!showMenu) { //解决android 4.4以下版本webview移动时,导致fixed定位元素错乱的bug; if (mui.os.android && parseFloat(mui.os.version) < 4.4) { document.querySelector("header.mui-bar").style.position = "static"; //同时需要修改以下.mui-contnt的padding-top,否则会多出空白; document.querySelector(".mui-bar-nav~.mui-content").style.paddingTop = "0px"; } //侧滑菜单处于隐藏状态,则立即显示出来; //显示完毕后,根据不同动画效果移动窗体; menu.show('none', 0, function() { switch (mode){ case 'main-move': //主窗体开始侧滑; main.setStyle({ left: '-70%', transition: { duration: 150 } }); break; case 'menu-move': menu.setStyle({ left: '30%', transition: { duration: 150 } }); break; case 'all-move': main.setStyle({ left: '-70%', transition: { duration: 150 } }); menu.setStyle({ left: '30%', transition: { duration: 150 } }); break; } }); //显示主窗体遮罩 mask.show(); showMenu = true; } } function closeMenu () { //窗体移动 _closeMenu(); //关闭遮罩 mask.close(); } /** * 关闭侧滑菜单(业务部分) */ function _closeMenu() { if (showMenu) { //解决android 4.4以下版本webview移动时,导致fixed定位元素错乱的bug; if (mui.os.android && parseFloat(mui.os.version) < 4.4) { document.querySelector("header.mui-bar").style.position = "fixed"; //同时需要修改以下.mui-contnt的padding-top,否则会多出空白; document.querySelector(".mui-bar-nav~.mui-content").style.paddingTop = "44px"; } switch (mode){ case 'main-move': //主窗体开始侧滑; main.setStyle({ left: '0', transition: { duration: 150 } }); break; case 'menu-move': //主窗体开始侧滑; menu.setStyle({ left: '100%', transition: { duration: 150 } }); break; case 'all-move': //主窗体开始侧滑; main.setStyle({ left: '0', transition: { duration: 150 } }); //menu页面同时移动 menu.setStyle({ left: '100%', transition: { duration: 150 } }); break; } //等窗体动画结束后,隐藏菜单webview,节省资源; setTimeout(function() { menu.hide(); }, 300); showMenu = false; } } //变换侧滑动画移动效果; mui('.mui-input-group').on('change', 'input', function() { if (this.checked) { switch (this.value) { case 'main-move': //仅主窗口移动的时候,menu页面的zindex值要低一点; menu.setStyle({left:'30%',zindex:9997}); // menu.hide(); mode = 'main-move'; break; case 'menu-move': menu.setStyle({left:'100%',zindex:9999}); mode = 'menu-move'; break; case 'all-move': //切换为整体移动 //变换menu界面初始化位置,整体移动时,Menu界面left需要在-70%的地方; menu.setStyle({ left: '100%' }); mode = 'all-move'; break; } } }); document.getElementById("show-btn").addEventListener('tap',openMenu); //点击侧滑图标,打开侧滑菜单; document.querySelector('.mui-action-menu').addEventListener('tap', openMenu); //在android4.4中的swipe事件,需要preventDefault一下,否则触发不正常 //故,在dragleft,dragright中preventDefault window.addEventListener('dragright', function(e) { e.detail.gesture.preventDefault(); }); window.addEventListener('dragleft', function(e) { e.detail.gesture.preventDefault(); }); //主界面向左滑动,若菜单未显示,则显示菜单;否则不做任何操作; window.addEventListener("swipeleft", openMenu); //主界面向右滑动,若菜单已显示,则关闭菜单;否则,不做任何操作; window.addEventListener("swiperight", closeMenu); //menu页面向右滑动,关闭菜单; window.addEventListener("menu:swiperight", closeMenu); //重写mui.menu方法,Android版本menu按键按下可自动打开、关闭侧滑菜单; mui.menu = function() { if (showMenu) { closeMenu(); } else { openMenu(); } } </script> </body> </html>
songbw/Jiannei
examples/offcanvas-drag-left-plus-main.html
HTML
apache-2.0
8,784
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>axes_grid example code: demo_axes_rgb.py &mdash; Matplotlib 1.3.1 documentation</title> <link rel="stylesheet" href="../../_static/pythonista.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', VERSION: '1.3.1', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="../../_static/jquery.js"></script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> <link rel="search" type="application/opensearchdescription+xml" title="Search within Matplotlib 1.3.1 documentation" href="../../_static/opensearch.xml"/> <link rel="top" title="Matplotlib 1.3.1 documentation" href="../../index.html" /> <link rel="shortcut icon" type="image/png" href="../../_static/py.png" /> <link rel="stylesheet" href="../_static/pythonista.css" type="text/css" /> <meta name = "viewport" content = "width=device-width,initial-scale=1.0,user-scalable=no;"> <script type="text/javascript"> var getTextForSample = function(i) { codeBlock = document.getElementsByClassName('highlight-python')[i]; return codeBlock.innerText; } var copySample = function (i) { window.location.href = '/__pythonista_copy__/' + encodeURI(getTextForSample(i)); } var openSample = function (i) { window.location.href = '/__pythonista_open__/' + encodeURI(getTextForSample(i)); } //Source: http://ejohn.org/blog/partial-functions-in-javascript/ Function.prototype.partial = function() { var fn = this, args = Array.prototype.slice.call(arguments); return function() { var arg = 0; for (var i = 0; i < args.length && arg < arguments.length; i++) if (args[i] === undefined) args[i] = arguments[arg++]; return fn.apply(this, args); }; }; window.onload=function() { //Add "Copy" and "Open in Editor" buttons for code samples: var inApp = navigator.userAgent.match(/AppleWebKit/i) != null && navigator.userAgent.match(/Safari/i) == null; if (inApp) { codeBlocks = document.getElementsByClassName('highlight-python'); for (var i = 0; i < codeBlocks.length; i++) { codeBlock = codeBlocks[i]; if (codeBlock.innerText.indexOf('>>>') == 0) { //Don't add header for interactive sessions continue; } var codeHeader = document.createElement('div'); codeHeader.className = 'pythonista-code-header'; var copyButton = document.createElement('button'); copyButton.className = 'pythonista-button'; copyButton.innerText = 'Copy'; copyButton.addEventListener('click', copySample.partial(i)); codeHeader.appendChild(copyButton); var openButton = document.createElement('button'); openButton.className = 'pythonista-button'; openButton.innerText = 'Open in Editor'; openButton.addEventListener('click', openSample.partial(i)); codeHeader.appendChild(openButton); codeBlock.parentElement.insertBefore(codeHeader, codeBlock); } } } </script> </head> <body ontouchstart=""> <div class="related"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../../genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="../../py-modindex.html" title="Python Module Index" >modules</a> |</li> <li><a href="http://omz-software.com/pythonista"><img src="../../_static/py.png" alt="" style="vertical-align: middle; margin-top: -4px; margin-right: 4px;"/></a></li> <li><a href="../../index.html">Matplotlib 1.3.1 documentation</a> &raquo;</li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="body"> <div class="section" id="axes-grid-example-code-demo-axes-rgb-py"> <span id="axes-grid-demo-axes-rgb"></span><h1>axes_grid example code: demo_axes_rgb.py<a class="headerlink" href="#axes-grid-example-code-demo-axes-rgb-py" title="Permalink to this headline">¶</a></h1> <p>(<a class="reference external" href="../../../../../Pythonista/matplotlib-1.3.1/doc/mpl_examples/axes_grid/demo_axes_rgb.py">Source code</a>)</p> <div class="figure"> <img alt="../../_images/demo_axes_rgb_00.png" src="../../_images/demo_axes_rgb_00.png" /> <p class="caption">(<a class="reference external" href="../../../../../Pythonista/matplotlib-1.3.1/doc/mpl_examples/axes_grid/demo_axes_rgb_00.png">png</a>)</p> </div> <div class="figure"> <img alt="../../_images/demo_axes_rgb_01.png" src="../../_images/demo_axes_rgb_01.png" /> <p class="caption">(<a class="reference external" href="../../../../../Pythonista/matplotlib-1.3.1/doc/mpl_examples/axes_grid/demo_axes_rgb_01.png">png</a>)</p> </div> <div class="highlight-python"><div class="highlight"><pre><span class="kn">import</span> <span class="nn">numpy</span> <span class="kn">as</span> <span class="nn">np</span> <span class="kn">import</span> <span class="nn">matplotlib.pyplot</span> <span class="kn">as</span> <span class="nn">plt</span> <span class="kn">from</span> <span class="nn">mpl_toolkits.axes_grid1.axes_rgb</span> <span class="kn">import</span> <span class="n">make_rgb_axes</span><span class="p">,</span> <span class="n">RGBAxes</span> <span class="k">def</span> <span class="nf">get_demo_image</span><span class="p">():</span> <span class="kn">from</span> <span class="nn">matplotlib.cbook</span> <span class="kn">import</span> <span class="n">get_sample_data</span> <span class="n">f</span> <span class="o">=</span> <span class="n">get_sample_data</span><span class="p">(</span><span class="s">&quot;axes_grid/bivariate_normal.npy&quot;</span><span class="p">,</span> <span class="n">asfileobj</span><span class="o">=</span><span class="bp">False</span><span class="p">)</span> <span class="n">z</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">load</span><span class="p">(</span><span class="n">f</span><span class="p">)</span> <span class="c"># z is a numpy array of 15x15</span> <span class="k">return</span> <span class="n">z</span><span class="p">,</span> <span class="p">(</span><span class="o">-</span><span class="mi">3</span><span class="p">,</span><span class="mi">4</span><span class="p">,</span><span class="o">-</span><span class="mi">4</span><span class="p">,</span><span class="mi">3</span><span class="p">)</span> <span class="k">def</span> <span class="nf">get_rgb</span><span class="p">():</span> <span class="n">Z</span><span class="p">,</span> <span class="n">extent</span> <span class="o">=</span> <span class="n">get_demo_image</span><span class="p">()</span> <span class="n">Z</span><span class="p">[</span><span class="n">Z</span><span class="o">&lt;</span><span class="mi">0</span><span class="p">]</span> <span class="o">=</span> <span class="mf">0.</span> <span class="n">Z</span> <span class="o">=</span> <span class="n">Z</span><span class="o">/</span><span class="n">Z</span><span class="o">.</span><span class="n">max</span><span class="p">()</span> <span class="n">R</span> <span class="o">=</span> <span class="n">Z</span><span class="p">[:</span><span class="mi">13</span><span class="p">,:</span><span class="mi">13</span><span class="p">]</span> <span class="n">G</span> <span class="o">=</span> <span class="n">Z</span><span class="p">[</span><span class="mi">2</span><span class="p">:,</span><span class="mi">2</span><span class="p">:]</span> <span class="n">B</span> <span class="o">=</span> <span class="n">Z</span><span class="p">[:</span><span class="mi">13</span><span class="p">,</span><span class="mi">2</span><span class="p">:]</span> <span class="k">return</span> <span class="n">R</span><span class="p">,</span> <span class="n">G</span><span class="p">,</span> <span class="n">B</span> <span class="k">def</span> <span class="nf">make_cube</span><span class="p">(</span><span class="n">r</span><span class="p">,</span> <span class="n">g</span><span class="p">,</span> <span class="n">b</span><span class="p">):</span> <span class="n">ny</span><span class="p">,</span> <span class="n">nx</span> <span class="o">=</span> <span class="n">r</span><span class="o">.</span><span class="n">shape</span> <span class="n">R</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">zeros</span><span class="p">([</span><span class="n">ny</span><span class="p">,</span> <span class="n">nx</span><span class="p">,</span> <span class="mi">3</span><span class="p">],</span> <span class="n">dtype</span><span class="o">=</span><span class="s">&quot;d&quot;</span><span class="p">)</span> <span class="n">R</span><span class="p">[:,:,</span><span class="mi">0</span><span class="p">]</span> <span class="o">=</span> <span class="n">r</span> <span class="n">G</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">zeros_like</span><span class="p">(</span><span class="n">R</span><span class="p">)</span> <span class="n">G</span><span class="p">[:,:,</span><span class="mi">1</span><span class="p">]</span> <span class="o">=</span> <span class="n">g</span> <span class="n">B</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">zeros_like</span><span class="p">(</span><span class="n">R</span><span class="p">)</span> <span class="n">B</span><span class="p">[:,:,</span><span class="mi">2</span><span class="p">]</span> <span class="o">=</span> <span class="n">b</span> <span class="n">RGB</span> <span class="o">=</span> <span class="n">R</span> <span class="o">+</span> <span class="n">G</span> <span class="o">+</span> <span class="n">B</span> <span class="k">return</span> <span class="n">R</span><span class="p">,</span> <span class="n">G</span><span class="p">,</span> <span class="n">B</span><span class="p">,</span> <span class="n">RGB</span> <span class="k">def</span> <span class="nf">demo_rgb</span><span class="p">():</span> <span class="n">fig</span><span class="p">,</span> <span class="n">ax</span> <span class="o">=</span> <span class="n">plt</span><span class="o">.</span><span class="n">subplots</span><span class="p">()</span> <span class="n">ax_r</span><span class="p">,</span> <span class="n">ax_g</span><span class="p">,</span> <span class="n">ax_b</span> <span class="o">=</span> <span class="n">make_rgb_axes</span><span class="p">(</span><span class="n">ax</span><span class="p">,</span> <span class="n">pad</span><span class="o">=</span><span class="mf">0.02</span><span class="p">)</span> <span class="c">#fig.add_axes(ax_r)</span> <span class="c">#fig.add_axes(ax_g)</span> <span class="c">#fig.add_axes(ax_b)</span> <span class="n">r</span><span class="p">,</span> <span class="n">g</span><span class="p">,</span> <span class="n">b</span> <span class="o">=</span> <span class="n">get_rgb</span><span class="p">()</span> <span class="n">im_r</span><span class="p">,</span> <span class="n">im_g</span><span class="p">,</span> <span class="n">im_b</span><span class="p">,</span> <span class="n">im_rgb</span> <span class="o">=</span> <span class="n">make_cube</span><span class="p">(</span><span class="n">r</span><span class="p">,</span> <span class="n">g</span><span class="p">,</span> <span class="n">b</span><span class="p">)</span> <span class="n">kwargs</span> <span class="o">=</span> <span class="nb">dict</span><span class="p">(</span><span class="n">origin</span><span class="o">=</span><span class="s">&quot;lower&quot;</span><span class="p">,</span> <span class="n">interpolation</span><span class="o">=</span><span class="s">&quot;nearest&quot;</span><span class="p">)</span> <span class="n">ax</span><span class="o">.</span><span class="n">imshow</span><span class="p">(</span><span class="n">im_rgb</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">)</span> <span class="n">ax_r</span><span class="o">.</span><span class="n">imshow</span><span class="p">(</span><span class="n">im_r</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">)</span> <span class="n">ax_g</span><span class="o">.</span><span class="n">imshow</span><span class="p">(</span><span class="n">im_g</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">)</span> <span class="n">ax_b</span><span class="o">.</span><span class="n">imshow</span><span class="p">(</span><span class="n">im_b</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">)</span> <span class="k">def</span> <span class="nf">demo_rgb2</span><span class="p">():</span> <span class="n">fig</span> <span class="o">=</span> <span class="n">plt</span><span class="o">.</span><span class="n">figure</span><span class="p">(</span><span class="mi">2</span><span class="p">)</span> <span class="n">ax</span> <span class="o">=</span> <span class="n">RGBAxes</span><span class="p">(</span><span class="n">fig</span><span class="p">,</span> <span class="p">[</span><span class="mf">0.1</span><span class="p">,</span> <span class="mf">0.1</span><span class="p">,</span> <span class="mf">0.8</span><span class="p">,</span> <span class="mf">0.8</span><span class="p">],</span> <span class="n">pad</span><span class="o">=</span><span class="mf">0.0</span><span class="p">)</span> <span class="c">#fig.add_axes(ax)</span> <span class="c">#ax.add_RGB_to_figure()</span> <span class="n">r</span><span class="p">,</span> <span class="n">g</span><span class="p">,</span> <span class="n">b</span> <span class="o">=</span> <span class="n">get_rgb</span><span class="p">()</span> <span class="n">kwargs</span> <span class="o">=</span> <span class="nb">dict</span><span class="p">(</span><span class="n">origin</span><span class="o">=</span><span class="s">&quot;lower&quot;</span><span class="p">,</span> <span class="n">interpolation</span><span class="o">=</span><span class="s">&quot;nearest&quot;</span><span class="p">)</span> <span class="n">ax</span><span class="o">.</span><span class="n">imshow_rgb</span><span class="p">(</span><span class="n">r</span><span class="p">,</span> <span class="n">g</span><span class="p">,</span> <span class="n">b</span><span class="p">,</span> <span class="o">**</span><span class="n">kwargs</span><span class="p">)</span> <span class="n">ax</span><span class="o">.</span><span class="n">RGB</span><span class="o">.</span><span class="n">set_xlim</span><span class="p">(</span><span class="mf">0.</span><span class="p">,</span> <span class="mf">9.5</span><span class="p">)</span> <span class="n">ax</span><span class="o">.</span><span class="n">RGB</span><span class="o">.</span><span class="n">set_ylim</span><span class="p">(</span><span class="mf">0.9</span><span class="p">,</span> <span class="mf">10.6</span><span class="p">)</span> <span class="k">for</span> <span class="n">ax1</span> <span class="ow">in</span> <span class="p">[</span><span class="n">ax</span><span class="o">.</span><span class="n">RGB</span><span class="p">,</span> <span class="n">ax</span><span class="o">.</span><span class="n">R</span><span class="p">,</span> <span class="n">ax</span><span class="o">.</span><span class="n">G</span><span class="p">,</span> <span class="n">ax</span><span class="o">.</span><span class="n">B</span><span class="p">]:</span> <span class="k">for</span> <span class="n">sp1</span> <span class="ow">in</span> <span class="n">ax1</span><span class="o">.</span><span class="n">spines</span><span class="o">.</span><span class="n">values</span><span class="p">():</span> <span class="n">sp1</span><span class="o">.</span><span class="n">set_color</span><span class="p">(</span><span class="s">&quot;w&quot;</span><span class="p">)</span> <span class="k">for</span> <span class="n">tick</span> <span class="ow">in</span> <span class="n">ax1</span><span class="o">.</span><span class="n">xaxis</span><span class="o">.</span><span class="n">get_major_ticks</span><span class="p">()</span> <span class="o">+</span> <span class="n">ax1</span><span class="o">.</span><span class="n">yaxis</span><span class="o">.</span><span class="n">get_major_ticks</span><span class="p">():</span> <span class="n">tick</span><span class="o">.</span><span class="n">tick1line</span><span class="o">.</span><span class="n">set_mec</span><span class="p">(</span><span class="s">&quot;w&quot;</span><span class="p">)</span> <span class="n">tick</span><span class="o">.</span><span class="n">tick2line</span><span class="o">.</span><span class="n">set_mec</span><span class="p">(</span><span class="s">&quot;w&quot;</span><span class="p">)</span> <span class="k">return</span> <span class="n">ax</span> <span class="n">demo_rgb</span><span class="p">()</span> <span class="n">ax</span> <span class="o">=</span> <span class="n">demo_rgb2</span><span class="p">()</span> <span class="n">plt</span><span class="o">.</span><span class="n">show</span><span class="p">()</span> </pre></div> </div> <p>Keywords: python, matplotlib, pylab, example, codex (see <a class="reference internal" href="../../faq/howto_faq.html#how-to-search-examples"><em>Search examples</em></a>)</p> </div> </div> </div> <div class="clearer"></div> </div> <div class="footer"> &copy; <a href="../../copyright.html">Copyright</a> 2002 - 2012 John Hunter, Darren Dale, Eric Firing, Michael Droettboom and the matplotlib development team; 2012 - 2013 The matplotlib development team. <br /> The Python Software Foundation is a non-profit corporation. <a href="http://www.python.org/psf/donations/">Please donate.</a> <br /> Last updated on May 03, 2016. <a href="../../bugs.html">Found a bug</a>? <br /> Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.2.1. </div> </body> </html>
leesavide/pythonista-docs
Documentation/matplotlib/examples/axes_grid/demo_axes_rgb.html
HTML
apache-2.0
19,211
<!DOCTYPE html><html><head><title>http://datathings.com/blog/tags/profiling/</title><link rel="canonical" href="http://datathings.com/blog/tags/profiling/"/><meta http-equiv="content-type" content="text/html; charset=utf-8" /><meta http-equiv="refresh" content="0; url=http://datathings.com/blog/tags/profiling/" /></head></html>
DataThings/datathings.github.io
blog/tags/profiling/page/1/index.html
HTML
apache-2.0
329
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=1000, initial-scale=1"> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-5W8DZRW');</script> <!-- End Google Tag Manager --> <link rel="dns-prefetch" href="//fonts.googleapis.com"> <link rel="dns-prefetch" href="//fonts.gstatic.com"> <link rel="dns-prefetch" href="//resources.jetbrains.com"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <link rel="Shortcut Icon" href="/assets/images/favicon.ico" type="image/x-icon"/> <link rel="apple-touch-icon" href="/assets/images/apple-touch-icon.png"/> <link rel="apple-touch-icon" sizes="72x72" href="/assets/images/apple-touch-icon-72x72.png"/> <link rel="apple-touch-icon" sizes="114x114" href="/assets/images/apple-touch-icon-114x114.png"/> <link rel="apple-touch-icon" sizes="144x144" href="/assets/images/apple-touch-icon-144x144.png"/> <!-- Social Media tag Starts --> <!-- Place this data between the <head> tags of your website --> <!-- Open Graph data --> <meta property="og:title" content=""/> <meta property="og:type" content="website"/> <meta property="og:url" content="https://www.kotlincn.net/community/talks.html"/> <meta property="og:image" content="https://www.kotlincn.net/assets/images/open-graph/kotlin_250x250.png"/> <meta property="og:description" content=""> <meta property="og:site_name" content="Kotlin"/> <!-- Twitter Card data --> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:site" content="@kotlin"> <meta name="twitter:title" content=""> <meta name="twitter:description" content=""> <meta name="twitter:image:src" content="https://www.kotlincn.net/assets/images/twitter-card/kotlin_800x320.png"> <!-- Social Media tag Ends --> <link rel="stylesheet" href="/_assets/styles-v2.css?&amp;v=51d80f95257ab967cfb6efa60df75d7e"> <title>Kotlin 活动 - Kotlin 语言中文站</title> <link rel="stylesheet" href="/_assets/common.css?&amp;v=d8b8aabbc5984eebed30b59359903b28"/> </head> <body class=" page_restyled_v1"> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5W8DZRW" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div class="global-layout"> <div class="global-header-panel banner-nav"> <div class="g-layout"> <div class="global-nav banner-container"> <a class="banner-text" href="https://item.jd.com/12695637.html" target="_blank"> <div class="banner-item" style="margin-right:0px;">新书上架:</div> <div class="banner-item title" style="margin-right:0px;"> 《Kotlin编程实践》 </div> <div class="banner-item" style="margin-right:8px;">本站译者乔禹昂译</div> <div class="banner-item underline" style="margin-right:0px;">购买</div> </a> <a class="banner-text" href="https://item.jd.com/12898592.html" target="_blank"> <div class="banner-item title" style="margin-right:0px;"> 《深入理解Kotlin协程》 </div> <div class="banner-item" style="margin-right:8px;">中文社区负责人霍丙乾著</div> <div class="banner-item underline" style="margin-right:0px;">购买</div> </a> <div class="close-head-banner"></div> <!-- <a class="banner-text" href="https://surveys.jetbrains.com/s3/kotlin-multiplatform-survey?utm_source=Twitter&utm_medium=Social&utm_campaign=The%20first%20KMP%20Survey%20" target="_blank"> <div class="banner-item title"> Take part in the first Kotlin Multiplatform user survey! </div> <div class="banner-item underline"> Take Part! </div> </a> <div class="close-head-banner"></div> --> </div> </div> </div> <header class="global-header"> <div class="global-header-panel"> <div data-nosnippet="true" class="global-header-logo-box"> <a class="global-header-logo" href="/">Kotlin</a> <a href="https://github.com/JetBrains/kotlin/releases/tag/v1.4.20" target="_blank" class="global-header-logo__version">v1.4.20</a> </div> <nav class="global-nav"> <ul class="nav-links"> <li class="nav-item nav-item-solutions" data-tab-id="solutions"> <span class="nav-item-link">解决方案</span> <div class="solutions-menu solutions-menu-is-hidden"> <ul class="solutions-menu-list"> <li class="solutions-menu-item"> <a class="solutions-menu-item-link" href="https://kotlinlang.org/lp/mobile/" target="_blank">多平台移动端 ↗</a></li> <li class="solutions-menu-item"> <a class="solutions-menu-item-link" href="/lp/server-side/" target="_blank"> 服务器端 ↗ </a></li> <li class="solutions-menu-item"> <a class="solutions-menu-item-link" href="/docs/reference/native-overview.html" target="_blank"> 原生开发 </a></li> <li class="solutions-menu-item"> <a class="solutions-menu-item-link" href="/docs/reference/js-overview.html" target="_blank">Web 开发 </a></li> <li class="solutions-menu-item"> <a class="solutions-menu-item-link" href="/docs/reference/data-science-overview.html" target="_blank"> 数据科学 </a></li> <li class="solutions-menu-item"> <a class="solutions-menu-item-link solutions-menu-item-link-external" href="/docs/reference/android-overview.html" target="_blank"> Android</a> </li> </ul> </div> </li> <li class="nav-item" data-tab-id="博客"><a href="https://www.kotliner.cn/" class="nav-item-link nav-item-link-external" target="_blank" > 博客 </a> </li> <li class="nav-item" data-tab-id="论坛"><a href="https://discuss.kotliner.cn/" class="nav-item-link nav-item-link-external" target="_blank" > 论坛 </a> </li> <li class="nav-item" data-tab-id="文档"><a href="/docs/reference/" class="nav-item-link " > 文档 </a> </li> <li class="nav-item" data-tab-id="社区"><a href="/community/" class="nav-item-link nav-item-link-is_active " > 社区 </a> </li> <li class="nav-item" data-tab-id="教学"><a href="/education/" class="nav-item-link " > 教学 </a> </li> <li class="nav-item" data-tab-id="演练"><a href="https://play.kotlinlang.org" class="nav-item-link nav-item-link-external" target="_blank" > 演练 </a> </li> </ul> <div class="search-button"> <div class="icon"></div> </div> </nav> </div> </header> <div class="g-layout global-content"> <nav class="docs-nav-new"> <div class="kto-tabs"> <a class="kto-tabs__item" href="/community/">概述</a> <a class="kto-tabs__item" href="/user-groups/user-group-list.html">用户群组</a> <a class="kto-tabs__item" href="/community/events.html">活动</a> <a class="kto-tabs__item kto-tabs__item_active" href="/community/talks.html">会谈与演讲者</a> </div> </nav> <article role="main" class="page-content"> <h1 class="typo-header typo-h1" id="kotlin-会谈与演讲者支持">Kotlin 会谈与演讲者支持</h1> <p class="typo-para">如果是 Kotlin 演讲者,请填写<a class="typo-link" href="https://surveys.jetbrains.com/s3/Submit-a-Kotlin-Talk">此表格</a>告知 JetBrains 即将进行的演讲,JetBrains 将在 <kotlinlang.org> 上公布演讲。 JetBrains 也会很乐意寄一些T恤以及贴纸与赠品给活动的参加者。</kotlinlang.org></p> <p class="typo-para"><br/></p> <div class="events" id="events"> <div class="events-list-col"> <div class="events-list js-events-list"></div> </div> <div class="events-map-col"> <div class="js-events-map-panel-wrap"> <div class="events-map-panel js-events-map-panel"> <div class="map js-map"></div> </div> </div> </div> </div> <script src="/_assets/events.js"></script> <link href="/_assets/events.css?&amp;v=3f57c1366dc44ac7e6b8cde6cc3e06e6" rel="stylesheet"/> </article> </div> <footer role="contentinfo" class="global-footer"> <div class="global-footer-terms"> <div class="g-footer-layout"> <div class="footer-info-block"> <ul class="terms-social"> <li class="terms-social__item"> <a target="_blank" class="link visually-hidden" href="https://github.com/JetBrains/kotlin"> <img src="/assets/github-logo.svg" alt="GitHub logo"/></a> </li> <li class="terms-social__item terms-social__item_twitter"> <a target="_blank" class="link" href="https://twitter.com/kotlin"> <img src="/assets/twitter-logo.svg" alt="Twitter logo" height="16"/> </a> </li> <li class="terms-social__item terms-social__item_slack"> <a target="_blank" class="link" href="https://surveys.jetbrains.com/s3/kotlin-slack-sign-up"> <img src="/assets/slack-logo.svg" alt="Slack logo"/> </a> </li> <li class="terms-social__item terms-social__item_reddit"> <a target="_blank" class="link" href="https://www.reddit.com/r/Kotlin/"> <img src="/assets/reddit-logo.svg" alt="Reddit logo"/> </a> </li> <li class="terms-social__item terms-social__item_bug-stackoverflow"> <a target="_blank" class="link" href="https://stackoverflow.com/questions/tagged/kotlin"> <img src="/assets/stackoverflow-logo.svg" alt="Stack Overflow logo"/> </a> </li> </ul> <div class="global-footer-row"> <a class="terms-kit" href="/contribute.html">向 Kotlin 贡献</a> <span class="divider"></span> <a class="terms-kit" href="/releases.html">版本发布</a> <span class="divider"></span> <a class="terms-kit" href=/assets/kotlin-media-kit.pdf>宣传资料</a> <span class="divider"></span> <a class="terms-kit" href="/security.html">安全</a> <span class="divider"></span> <a class="terms-kit" target="_blank" href="https://blog.jetbrains.com/kotlin/">博客</a> <span class="divider"></span> <a class="terms-kit" target="_blank" href="https://youtrack.jetbrains.com/issues/KT">问题追踪</a> </div> <div class="license-footer-row"> <div class="terms-foundation"> <span>Kotlin™ 商标受 <a class="terms-foundation_link" href="https://kotlinlang.org/foundation/kotlin-foundation.html"> Kotlin 基金会 </a>保护并采用 <a class="terms-foundation_link" href="https://github.com/JetBrains/kotlin-web-site/blob/master/LICENSE"> Apache 2 授权许可。</a> <span class="terms-sponsor-mobile"> Kotlin 与 Kotlin 官方英文站由 <a href="http://jetbrains.com" class="terms-foundation_link" target="_blank">JetBrains</a> 支持与开发</span> <span class="terms-sponsor-mobile"> 本站由<a href="https://hltj.me/" target="_blank" rel="nofollow">灰蓝天际</a>、 <a href="http://tanfujun.com" target="_blank" rel="nofollow">晓_晨DEV</a>、 <a href="https://github.com/qiaoyuang" target="_blank" rel="nofollow">乔禹昂</a>、 <a href="https://github.com/SpielbergGao" target="_blank" rel="nofollow">高金龙</a>、 <a href="https://github.com/HoshinoTented" target="_blank" rel="nofollow">HoshinoTented</a>、 <a href="https://www.liuwj.me" target="_blank" rel="nofollow">刘文俊</a>、 <a href="https://github.com/Hiwensen" target="_blank" rel="nofollow">常少威</a>、 <a href="https://github.com/Yue-plus" target="_blank" rel="nofollow">Yue-plus</a>、 <a href="https://github.com/Guolianxing" target="_blank" rel="nofollow">Guolianxing</a> &nbsp;<a href="/contribute.html#中文站翻译贡献者" target="_blank" rel="nofollow">等</a>译 </span> </span> </div> <div class="jetbrains-link-mobile"> <a href="http://jetbrains.com" target="_blank"></a> </div> </div> </div> <div class="sponsored-block"> <div class="terms-sponsor"> <!-- <a href="http://jetbrains.com" target="_blank"> <div class="jetbrains-link"></div> </a> --> <span>Kotlin 与 Kotlin 官方英文站由 <a href="http://jetbrains.com" class="terms-foundation_link" target="_blank">JetBrains</a> 支持与开发</span> <span> 本站由<a href="https://hltj.me/" target="_blank" rel="nofollow">灰蓝天际</a>、 <a href="http://tanfujun.com" target="_blank" rel="nofollow">晓_晨DEV</a>、 <a href="https://github.com/qiaoyuang" target="_blank" rel="nofollow">乔禹昂</a>、 <a href="https://github.com/SpielbergGao" target="_blank" rel="nofollow">高金龙</a>、 <a href="https://github.com/HoshinoTented" target="_blank" rel="nofollow">HoshinoTented</a>、 <a href="https://www.liuwj.me" target="_blank" rel="nofollow">刘文俊</a>、 <a href="https://github.com/Hiwensen" target="_blank" rel="nofollow">常少威</a>、 <a href="https://github.com/Yue-plus" target="_blank" rel="nofollow">Yue-plus</a>、 <a href="https://github.com/Guolianxing" target="_blank" rel="nofollow">Guolianxing</a> &nbsp;<a href="/contribute.html#中文站翻译贡献者" target="_blank" rel="nofollow">等</a>译 </span> </div> </div> </div> </div> </footer></div> <div class="search-popup _hidden" tabindex="1000"> <div class="search-popup__content"> <div class="search-popup__controls"> <div class="search-popup__input"></div> <div class="search-popup__close"> <div class="search-popup__close-icon-wrapper"> <div class="search-popup__close-icon"></div> </div> <div class="search-popup__close-text">esc</div> </div> </div> <div class="search-popup__results"></div> </div> </div> <script src="/_assets/common.js?&amp;v=51d58726a11aac091f9e039860993c36"></script> </body> </html>
kotlin-zhcn/kotlin-zhcn.github.io
community/talks.html
HTML
apache-2.0
17,573
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_16) on Mon Jun 28 12:44:38 PDT 2010 --> <TITLE> Uses of Class org.apache.hadoop.io.BooleanWritable (Hadoop 0.20.2+320 API) </TITLE> <META NAME="date" CONTENT="2010-06-28"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.hadoop.io.BooleanWritable (Hadoop 0.20.2+320 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/io//class-useBooleanWritable.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="BooleanWritable.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.hadoop.io.BooleanWritable</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.examples"><B>org.apache.hadoop.examples</B></A></TD> <TD>Hadoop example code.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.typedbytes"><B>org.apache.hadoop.typedbytes</B></A></TD> <TD>Typed bytes are sequences of bytes in which the first byte is a type code.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.examples"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A> in <A HREF="../../../../../org/apache/hadoop/examples/package-summary.html">org.apache.hadoop.examples</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/hadoop/examples/package-summary.html">org.apache.hadoop.examples</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>PiEstimator.PiReducer.</B><B><A HREF="../../../../../org/apache/hadoop/examples/PiEstimator.PiReducer.html#reduce(org.apache.hadoop.io.BooleanWritable, java.util.Iterator, org.apache.hadoop.mapred.OutputCollector, org.apache.hadoop.mapred.Reporter)">reduce</A></B>(<A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A>&nbsp;isInside, <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util">Iterator</A>&lt;<A HREF="../../../../../org/apache/hadoop/io/LongWritable.html" title="class in org.apache.hadoop.io">LongWritable</A>&gt;&nbsp;values, <A HREF="../../../../../org/apache/hadoop/mapred/OutputCollector.html" title="interface in org.apache.hadoop.mapred">OutputCollector</A>&lt;<A HREF="../../../../../org/apache/hadoop/io/WritableComparable.html" title="interface in org.apache.hadoop.io">WritableComparable</A>&lt;?&gt;,<A HREF="../../../../../org/apache/hadoop/io/Writable.html" title="interface in org.apache.hadoop.io">Writable</A>&gt;&nbsp;output, <A HREF="../../../../../org/apache/hadoop/mapred/Reporter.html" title="interface in org.apache.hadoop.mapred">Reporter</A>&nbsp;reporter)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Accumulate number of points inside/outside results from the mappers.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Method parameters in <A HREF="../../../../../org/apache/hadoop/examples/package-summary.html">org.apache.hadoop.examples</A> with type arguments of type <A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>PiEstimator.PiMapper.</B><B><A HREF="../../../../../org/apache/hadoop/examples/PiEstimator.PiMapper.html#map(org.apache.hadoop.io.LongWritable, org.apache.hadoop.io.LongWritable, org.apache.hadoop.mapred.OutputCollector, org.apache.hadoop.mapred.Reporter)">map</A></B>(<A HREF="../../../../../org/apache/hadoop/io/LongWritable.html" title="class in org.apache.hadoop.io">LongWritable</A>&nbsp;offset, <A HREF="../../../../../org/apache/hadoop/io/LongWritable.html" title="class in org.apache.hadoop.io">LongWritable</A>&nbsp;size, <A HREF="../../../../../org/apache/hadoop/mapred/OutputCollector.html" title="interface in org.apache.hadoop.mapred">OutputCollector</A>&lt;<A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A>,<A HREF="../../../../../org/apache/hadoop/io/LongWritable.html" title="class in org.apache.hadoop.io">LongWritable</A>&gt;&nbsp;out, <A HREF="../../../../../org/apache/hadoop/mapred/Reporter.html" title="interface in org.apache.hadoop.mapred">Reporter</A>&nbsp;reporter)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Map method.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.typedbytes"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A> in <A HREF="../../../../../org/apache/hadoop/typedbytes/package-summary.html">org.apache.hadoop.typedbytes</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/hadoop/typedbytes/package-summary.html">org.apache.hadoop.typedbytes</A> that return <A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A></CODE></FONT></TD> <TD><CODE><B>TypedBytesWritableInput.</B><B><A HREF="../../../../../org/apache/hadoop/typedbytes/TypedBytesWritableInput.html#readBoolean()">readBoolean</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A></CODE></FONT></TD> <TD><CODE><B>TypedBytesWritableInput.</B><B><A HREF="../../../../../org/apache/hadoop/typedbytes/TypedBytesWritableInput.html#readBoolean(org.apache.hadoop.io.BooleanWritable)">readBoolean</A></B>(<A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A>&nbsp;bw)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../org/apache/hadoop/typedbytes/package-summary.html">org.apache.hadoop.typedbytes</A> with parameters of type <A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A></CODE></FONT></TD> <TD><CODE><B>TypedBytesWritableInput.</B><B><A HREF="../../../../../org/apache/hadoop/typedbytes/TypedBytesWritableInput.html#readBoolean(org.apache.hadoop.io.BooleanWritable)">readBoolean</A></B>(<A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A>&nbsp;bw)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>TypedBytesWritableOutput.</B><B><A HREF="../../../../../org/apache/hadoop/typedbytes/TypedBytesWritableOutput.html#writeBoolean(org.apache.hadoop.io.BooleanWritable)">writeBoolean</A></B>(<A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io">BooleanWritable</A>&nbsp;bw)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/hadoop/io/BooleanWritable.html" title="class in org.apache.hadoop.io"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/hadoop/io//class-useBooleanWritable.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="BooleanWritable.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &copy; 2009 The Apache Software Foundation </BODY> </HTML>
ryanobjc/hadoop-cloudera
docs/api/org/apache/hadoop/io/class-use/BooleanWritable.html
HTML
apache-2.0
14,856