path
stringlengths 5
312
| repo_name
stringlengths 5
116
| content
stringlengths 2
1.04M
|
|---|---|---|
modules/samples/identity-mgt/info-recovery-sample/src/main/webapp/assets/css/landing-page.css
|
johannnallathamby/product-is
|
/*
* Copyright (c) 2005-2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 Inc. licenses this file to you 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*/
/*!
* Start Bootstrap - Landing Page Bootstrap Theme (http://startbootstrap.com)
* Code licensed under the Apache License v2.0.
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
*/
.lead {
font-size: 18px;
font-weight: 400;
}
.intro-header {
padding-top: 50px; /* If you're making other pages, make sure there is 50px of padding to make sure the navbar doesn't overlap content! */
padding-bottom: 50px;
text-align: center;
color: #f8f8f8;
background: url(../img/intro-bg.jpg) no-repeat center center;
background-size: cover;
}
.intro-message {
position: relative;
padding-top: 20%;
padding-bottom: 20%;
}
.intro-message > h1 {
margin: 0;
text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
font-size: 5em;
}
.intro-divider {
border-top: 1px solid #f8f8f8;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.intro-message > h3 {
text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}
@media (max-width: 767px) {
.intro-message {
padding-bottom: 15%;
}
.intro-message > h1 {
font-size: 3em;
}
ul.intro-social-buttons > li {
display: block;
margin-bottom: 20px;
padding: 0;
}
ul.intro-social-buttons > li:last-child {
margin-bottom: 0;
}
.intro-divider {
width: 100%;
}
}
.network-name {
text-transform: uppercase;
font-size: 14px;
font-weight: 400;
letter-spacing: 2px;
}
.content-section-a {
padding: 50px 0;
background-color: #f8f8f8;
}
.content-section-b {
padding: 50px 0;
border-top: 1px solid #e7e7e7;
border-bottom: 1px solid #e7e7e7;
}
.section-heading {
margin-bottom: 30px;
}
.section-heading-spacer {
float: left;
width: 200px;
border-top: 3px solid #e7e7e7;
}
.banner {
padding: 100px 0;
color: #f8f8f8;
background: url(../img/banner-bg.jpg) no-repeat center center;
background-size: cover;
}
.banner h2 {
margin: 0;
text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
font-size: 3em;
}
.banner ul {
margin-bottom: 0;
}
.banner-social-buttons {
float: right;
margin-top: 0;
}
@media (max-width: 1199px) {
ul.banner-social-buttons {
float: left;
margin-top: 15px;
}
}
@media (max-width: 767px) {
.banner h2 {
margin: 0;
text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
font-size: 3em;
}
ul.banner-social-buttons > li {
display: block;
margin-bottom: 20px;
padding: 0;
}
ul.banner-social-buttons > li:last-child {
margin-bottom: 0;
}
}
|
src/main/webapp/WEB-INF/view/qesTemplateManage/displayPubTemplate.html
|
Harveychn/questionnaire
|
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>模板信息--公共</title>
<link rel="shortcut icon" href="../../img/favicon.ico"/>
<link href="../../css/bootstrap.min.css" rel="stylesheet"/>
<style>
.print-btn {
position: fixed;
top: 30%;
right: 3%;
z-index: 100;
}
</style>
</head>
<body>
<div class="container">
<!--标题信息-->
<div class="panel panel-primary">
<div class="panel-heading">
<div class="panel-title">
模板浏览
</div>
</div>
<div class="panel-body">
<div class="row">
<div class="center-block">
<div class="page-header">
<h1 th:text="${displayQuestionnaireVO.questionnaireTitle}" align="center">标题</h1>
</div>
</div>
</div>
<div class="row">
<blockquote class="blockquote-reverse">
<p th:if="${not #strings.isEmpty(displayQuestionnaireVO.questionnaireSubtitle)}"
th:text="${displayQuestionnaireVO.questionnaireSubtitle}">副标题</p><br/>
<p th:if="${not #strings.isEmpty(displayQuestionnaireVO.questionnaireDescription)}"
th:text="${displayQuestionnaireVO.questionnaireDescription}">描述信息</p>
<!--<footer>创建人 创建于 <cite title="Source Title">创建时间</cite></footer>-->
</blockquote>
</div>
<!--问卷中详细问题信息开始-->
<!--遍历问卷题目信息-->
<div class="panel-group" th:if="${#lists.size(displayQuestionnaireVO.questions)>0}"
th:each="curQes,iterStat: ${displayQuestionnaireVO.questions}"
th:switch="${curQes.questionType}">
<!--单选题模板-->
<div class="panel-default" th:case="'单选题'">
<div class="panel-heading">
<div class="panel-title">
第 <span th:text="${iterStat.count}">[题号]</span> 题:
<span th:text="${curQes.questionContext}"></span>
(
<span th:text="${curQes.questionType}">题型</span>
<span th:if="${#bools.isTrue(curQes.must)}" style="color: red;">*</span>
)
</div>
</div>
<div class="panel-body">
<div class="form-inline">
<div class="form-group" th:if="${#lists.size(curQes.options)>0}"
th:each="curQesOption: ${curQes.options}">
<input class="form-control" type="radio" th:name="${iterStat.index}"/>
<label th:text="${curQesOption.option}">选项</label>
</div>
</div>
</div>
</div>
<!--多选题模板-->
<div class="panel-default" th:case="'多选题'">
<div class="panel-heading">
<div class="panel-title">
第 <span th:text="${iterStat.count}">[题号]</span> 题:
<span th:text="${curQes.questionContext}"></span>
(
<span th:text="${curQes.questionType}">题型</span>
<span th:if="${#bools.isTrue(curQes.must)}" style="color: red;">*</span>
)
</div>
</div>
<div class="panel-body">
<div class="form-inline">
<div class="form-group" th:if="${#lists.size(curQes.options)>0}"
th:each="curQesOption: ${curQes.options}">
<input class="form-control" type="checkbox" th:name="${iterStat.index}"/>
<label th:text="${curQesOption.option}">选项</label>
</div>
</div>
</div>
</div>
<!--单项填空题模板-->
<div class="panel-default" th:case="'单项填空题'">
<div class="panel-heading">
<div class="panel-title">
第 <span th:text="${iterStat.count}">[题号]</span> 题:
<span th:text="${curQes.questionContext}"></span>
(
<span th:text="${curQes.questionType}">题型</span>
<span th:if="${#bools.isTrue(curQes.must)}" style="color: red;">*</span>
)
</div>
</div>
<div class="panel-body">
<div class="form-group">
<input class="form-control" disabled/>
</div>
</div>
</div>
<!--多项填空题模板-->
<div class="panel-default" th:case="'多项填空题'">
<div class="panel-heading">
<div class="panel-title">
第 <span th:text="${iterStat.count}">[题号]</span> 题:
<span th:text="${curQes.questionContext}"></span>
(
<span th:text="${curQes.questionType}">题型</span>
<span th:if="${#bools.isTrue(curQes.must)}" style="color: red;">*</span>
)
</div>
</div>
<div class="panel-body">
<div class="form-inline">
<div class="form-group" th:if="${#lists.size(curQes.options)>0}"
th:each="curQesOption: ${curQes.options}">
<div style="size: auto"
th:if="${curQesOption.option!=null && not #strings.isEmpty(curQesOption.option)}">
<label>_______</label>
<label th:text="${curQesOption.option}">问题</label>
</div>
</div>
</div>
</div>
</div>
<!--简答题模板-->
<div class="panel-default" th:case="'简答题'">
<div class="panel-heading">
<div class="panel-title">
第 <span th:text="${iterStat.count}">[题号]</span> 题:
<span th:text="${curQes.questionContext}"></span>
(
<span th:text="${curQes.questionType}">题型</span>
<span th:if="${#bools.isTrue(curQes.must)}" style="color: red;">*</span>
)
</div>
</div>
<div class="panel-body">
<div class="form-group">
<textarea class="form-control" disabled></textarea>
</div>
</div>
</div>
</div>
</div>
</div>
<!--打印按钮-->
<div class="row hidden-print print-btn">
<div class="btn-group-lg pull-right">
<button th:disabled="${isOutOfMinIndex == true}" id="prevPaperBtn" class="btn btn-default btn-block"
data-toggle="tooltip" title="上一份">
<i class="glyphicon glyphicon-chevron-up"></i>
</button>
<button id="printQesBtn" class="btn btn-default btn-block">打印</button>
<button th:disabled="${isOutOfMaxIndex == true}" id="nextPaperBtn" class="btn btn-default btn-block"
data-toggle="tooltip" title="下一份">
<i class="glyphicon glyphicon-chevron-down"></i>
</button>
</div>
</div>
</div>
<script src="../../js/jquery.min.js"></script>
<script>
$(function () {
$('#printQesBtn').on('click', function () {
window.print();
});
$('#prevPaperBtn').on('click', function () {
window.location.href = '/publicTemplateManage/displayPrevQesPaper';
});
$('#nextPaperBtn').on('click', function () {
window.location.href = '/publicTemplateManage/displayNextQesPaper';
})
});
</script>
</body>
</html>
|
docs/apidocs/blockball-root/com.github.shynixn.blockball.api.business.service/-command-service/index.html
|
Shynixn/BlockBall
|
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>CommandService</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"><a href="../../../index.html">
<div id="logo"></div>
</a>
<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/main.js"></script> <div class="main-content" id="content" pageIds="blockball-root::com.github.shynixn.blockball.api.business.service/CommandService///PointingToDeclaration//1513497539">
<div class="navigation-wrapper" id="navigation-wrapper">
<div class="breadcrumbs"><a href="../../../index.html">blockball-root</a>/<a href="../index.html">com.github.shynixn.blockball.api.business.service</a>/<a href="index.html">CommandService</a></div>
<div class="pull-right d-flex">
<div id="searchBar"></div>
</div>
</div>
<div class="cover ">
<h1 class="cover"><span>Command</span><wbr></wbr><span><span>Service</span></span></h1>
<div class="platform-hinted " data-platform-hinted="data-platform-hinted"><div class="content sourceset-depenent-content" data-active="" data-togglable=":generateJavaDocPages/main"><div class="symbol monospace">interface <a href="index.html">CommandService</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><p class="paragraph">Created by Shynixn 2019.</p><p>
Version 1.2
<p>
MIT License
<p>
Copyright (c) 2019 by Shynixn
<p>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
<p>
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
<p>
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.</div></div>
</div>
<div class="tabbedcontent">
<div class="tabs-section" tabs-section="tabs-section"><button class="section-tab" data-active="" data-togglable="Functions">Functions</button></div>
<div class="tabs-section-body">
<h2 class="">Functions</h2>
<div class="table" data-togglable="Functions"><a data-name="-716158048%2FFunctions%2F1513497539" anchor-label="registerCommandExecutor" id="-716158048%2FFunctions%2F1513497539" data-filterable-set=":generateJavaDocPages/main"></a>
<div class="table-row" data-filterable-current=":generateJavaDocPages/main" data-filterable-set=":generateJavaDocPages/main">
<div class="main-subrow keyValue ">
<div class=""><span class="inline-flex"><a href="register-command-executor.html"><span>register</span><wbr></wbr><span>Command</span><wbr></wbr><span><span>Executor</span></span></a><span class="anchor-wrapper"><span class="anchor-icon" pointing-to="-716158048%2FFunctions%2F1513497539"></span>
<div class="copy-popup-wrapper "><span class="copy-popup-icon"></span><span>Link copied to clipboard</span></div>
</span></span></div>
<div>
<div class="title"><div class="divergent-group" data-filterable-current=":generateJavaDocPages/main" data-filterable-set=":generateJavaDocPages/main"><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=":generateJavaDocPages/main"><div class="symbol monospace">abstract fun <a href="register-command-executor.html">registerCommandExecutor</a>(command: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>, commandExecutor: <a href="../../com.github.shynixn.blockball.api.business.executor/-command-executor/index.html">CommandExecutor</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>
<div class="brief "><p class="paragraph">Registers a command executor from a pre defined <a href="register-command-executor.html">command</a> with gets executed by the <a href="register-command-executor.html">commandExecutor</a>.</p></div></div>
<div class="divergent-group" data-filterable-current=":generateJavaDocPages/main" data-filterable-set=":generateJavaDocPages/main"><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=":generateJavaDocPages/main"><div class="symbol monospace">abstract fun <a href="register-command-executor.html">registerCommandExecutor</a>(commandConfiguration: <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a><<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>, <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>>, commandExecutor: <a href="../../com.github.shynixn.blockball.api.business.executor/-command-executor/index.html">CommandExecutor</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>
<div class="brief "><p class="paragraph">Registers a command executor from new <a href="register-command-executor.html">commandConfiguration</a> with gets executed by the <a href="register-command-executor.html">commandExecutor</a>.</p></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer"><span class="go-to-top-icon"><a href="#content"></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>
|
docs/javadoc/2.11/com/fasterxml/jackson/databind/annotation/class-use/JsonSerialize.Typing.html
|
FasterXML/jackson-databind
|
<!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 Sat Apr 25 17:14:54 PDT 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class com.fasterxml.jackson.databind.annotation.JsonSerialize.Typing (jackson-databind 2.11.0 API)</title>
<meta name="date" content="2020-04-25">
<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.fasterxml.jackson.databind.annotation.JsonSerialize.Typing (jackson-databind 2.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="../../../../../../com/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">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/fasterxml/jackson/databind/annotation/class-use/JsonSerialize.Typing.html" target="_top">Frames</a></li>
<li><a href="JsonSerialize.Typing.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.fasterxml.jackson.databind.annotation.JsonSerialize.Typing" class="title">Uses of Class<br>com.fasterxml.jackson.databind.annotation.JsonSerialize.Typing</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/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">JsonSerialize.Typing</a></span><span class="tabEnd"> </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.fasterxml.jackson.databind">com.fasterxml.jackson.databind</a></td>
<td class="colLast">
<div class="block">Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (<a href="../../../../../../com/fasterxml/jackson/databind/JsonNode.html" title="class in com.fasterxml.jackson.databind"><code>JsonNode</code></a>), as well as
writing Java Objects and trees as JSON.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#com.fasterxml.jackson.databind.annotation">com.fasterxml.jackson.databind.annotation</a></td>
<td class="colLast">
<div class="block">Annotations that directly depend on classes in databinding bundle
(not just Jackson core) and cannot be included
in Jackson core annotations package (because it cannot have any
external dependencies).</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#com.fasterxml.jackson.databind.introspect">com.fasterxml.jackson.databind.introspect</a></td>
<td class="colLast">
<div class="block">Functionality needed for Bean introspection, required for detecting
accessors and mutators for Beans, as well as locating and handling
method annotations.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.fasterxml.jackson.databind">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../com/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">JsonSerialize.Typing</a> in <a href="../../../../../../com/fasterxml/jackson/databind/package-summary.html">com.fasterxml.jackson.databind</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/fasterxml/jackson/databind/package-summary.html">com.fasterxml.jackson.databind</a> that return <a href="../../../../../../com/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">JsonSerialize.Typing</a></span><span class="tabEnd"> </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="../../../../../../com/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">JsonSerialize.Typing</a></code></td>
<td class="colLast"><span class="typeNameLabel">AnnotationIntrospector.</span><code><span class="memberNameLink"><a href="../../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.html#findSerializationTyping-com.fasterxml.jackson.databind.introspect.Annotated-">findSerializationTyping</a></span>(<a href="../../../../../../com/fasterxml/jackson/databind/introspect/Annotated.html" title="class in com.fasterxml.jackson.databind.introspect">Annotated</a> a)</code>
<div class="block">Method for accessing declared typing mode annotated (if any).</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="com.fasterxml.jackson.databind.annotation">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../com/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">JsonSerialize.Typing</a> in <a href="../../../../../../com/fasterxml/jackson/databind/annotation/package-summary.html">com.fasterxml.jackson.databind.annotation</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/fasterxml/jackson/databind/annotation/package-summary.html">com.fasterxml.jackson.databind.annotation</a> that return <a href="../../../../../../com/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">JsonSerialize.Typing</a></span><span class="tabEnd"> </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/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">JsonSerialize.Typing</a></code></td>
<td class="colLast"><span class="typeNameLabel">JsonSerialize.Typing.</span><code><span class="memberNameLink"><a href="../../../../../../com/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html#valueOf-java.lang.String-">valueOf</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> 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/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">JsonSerialize.Typing</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">JsonSerialize.Typing.</span><code><span class="memberNameLink"><a href="../../../../../../com/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.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>
<li class="blockList"><a name="com.fasterxml.jackson.databind.introspect">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../com/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">JsonSerialize.Typing</a> in <a href="../../../../../../com/fasterxml/jackson/databind/introspect/package-summary.html">com.fasterxml.jackson.databind.introspect</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/fasterxml/jackson/databind/introspect/package-summary.html">com.fasterxml.jackson.databind.introspect</a> that return <a href="../../../../../../com/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">JsonSerialize.Typing</a></span><span class="tabEnd"> </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="../../../../../../com/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">JsonSerialize.Typing</a></code></td>
<td class="colLast"><span class="typeNameLabel">JacksonAnnotationIntrospector.</span><code><span class="memberNameLink"><a href="../../../../../../com/fasterxml/jackson/databind/introspect/JacksonAnnotationIntrospector.html#findSerializationTyping-com.fasterxml.jackson.databind.introspect.Annotated-">findSerializationTyping</a></span>(<a href="../../../../../../com/fasterxml/jackson/databind/introspect/Annotated.html" title="class in com.fasterxml.jackson.databind.introspect">Annotated</a> a)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../com/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">JsonSerialize.Typing</a></code></td>
<td class="colLast"><span class="typeNameLabel">AnnotationIntrospectorPair.</span><code><span class="memberNameLink"><a href="../../../../../../com/fasterxml/jackson/databind/introspect/AnnotationIntrospectorPair.html#findSerializationTyping-com.fasterxml.jackson.databind.introspect.Annotated-">findSerializationTyping</a></span>(<a href="../../../../../../com/fasterxml/jackson/databind/introspect/Annotated.html" title="class in com.fasterxml.jackson.databind.introspect">Annotated</a> a)</code> </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/fasterxml/jackson/databind/annotation/JsonSerialize.Typing.html" title="enum in com.fasterxml.jackson.databind.annotation">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/fasterxml/jackson/databind/annotation/class-use/JsonSerialize.Typing.html" target="_top">Frames</a></li>
<li><a href="JsonSerialize.Typing.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 © 2008–2020 <a href="http://fasterxml.com/">FasterXML</a>. All rights reserved.</small></p>
</body>
</html>
|
docs/javadoc/2.12/com/fasterxml/jackson/databind/class-use/AnnotationIntrospector.ReferenceProperty.Type.html
|
FasterXML/jackson-databind
|
<!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_272) on Sat Nov 28 17:15:55 PST 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class com.fasterxml.jackson.databind.AnnotationIntrospector.ReferenceProperty.Type (jackson-databind 2.12.0 API)</title>
<meta name="date" content="2020-11-28">
<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.fasterxml.jackson.databind.AnnotationIntrospector.ReferenceProperty.Type (jackson-databind 2.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="../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.Type.html" title="enum in com.fasterxml.jackson.databind">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/fasterxml/jackson/databind/class-use/AnnotationIntrospector.ReferenceProperty.Type.html" target="_top">Frames</a></li>
<li><a href="AnnotationIntrospector.ReferenceProperty.Type.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.fasterxml.jackson.databind.AnnotationIntrospector.ReferenceProperty.Type" class="title">Uses of Class<br>com.fasterxml.jackson.databind.AnnotationIntrospector.ReferenceProperty.Type</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/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.Type.html" title="enum in com.fasterxml.jackson.databind">AnnotationIntrospector.ReferenceProperty.Type</a></span><span class="tabEnd"> </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.fasterxml.jackson.databind">com.fasterxml.jackson.databind</a></td>
<td class="colLast">
<div class="block">Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (<a href="../../../../../com/fasterxml/jackson/databind/JsonNode.html" title="class in com.fasterxml.jackson.databind"><code>JsonNode</code></a>), as well as
writing Java Objects and trees as JSON.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="com.fasterxml.jackson.databind">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.Type.html" title="enum in com.fasterxml.jackson.databind">AnnotationIntrospector.ReferenceProperty.Type</a> in <a href="../../../../../com/fasterxml/jackson/databind/package-summary.html">com.fasterxml.jackson.databind</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/fasterxml/jackson/databind/package-summary.html">com.fasterxml.jackson.databind</a> that return <a href="../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.Type.html" title="enum in com.fasterxml.jackson.databind">AnnotationIntrospector.ReferenceProperty.Type</a></span><span class="tabEnd"> </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="../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.Type.html" title="enum in com.fasterxml.jackson.databind">AnnotationIntrospector.ReferenceProperty.Type</a></code></td>
<td class="colLast"><span class="typeNameLabel">AnnotationIntrospector.ReferenceProperty.</span><code><span class="memberNameLink"><a href="../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.html#getType--">getType</a></span>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.Type.html" title="enum in com.fasterxml.jackson.databind">AnnotationIntrospector.ReferenceProperty.Type</a></code></td>
<td class="colLast"><span class="typeNameLabel">AnnotationIntrospector.ReferenceProperty.Type.</span><code><span class="memberNameLink"><a href="../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.Type.html#valueOf-java.lang.String-">valueOf</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> 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="../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.Type.html" title="enum in com.fasterxml.jackson.databind">AnnotationIntrospector.ReferenceProperty.Type</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">AnnotationIntrospector.ReferenceProperty.Type.</span><code><span class="memberNameLink"><a href="../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.Type.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>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation">
<caption><span>Constructors in <a href="../../../../../com/fasterxml/jackson/databind/package-summary.html">com.fasterxml.jackson.databind</a> with parameters of type <a href="../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.Type.html" title="enum in com.fasterxml.jackson.databind">AnnotationIntrospector.ReferenceProperty.Type</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.html#ReferenceProperty-com.fasterxml.jackson.databind.AnnotationIntrospector.ReferenceProperty.Type-java.lang.String-">ReferenceProperty</a></span>(<a href="../../../../../com/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.Type.html" title="enum in com.fasterxml.jackson.databind">AnnotationIntrospector.ReferenceProperty.Type</a> t,
<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> n)</code> </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/fasterxml/jackson/databind/AnnotationIntrospector.ReferenceProperty.Type.html" title="enum in com.fasterxml.jackson.databind">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/fasterxml/jackson/databind/class-use/AnnotationIntrospector.ReferenceProperty.Type.html" target="_top">Frames</a></li>
<li><a href="AnnotationIntrospector.ReferenceProperty.Type.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 © 2008–2020 <a href="http://fasterxml.com/">FasterXML</a>. All rights reserved.</small></p>
</body>
</html>
|
docs/3.1/api/GridFSBucketReadStream.html
|
mongodb/node-mongodb-native
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Class: GridFSBucketReadStream</title>
<meta property="og:title" content="MongoDB Driver API for Node.js"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content=""/>
<meta property="og:url" content=""/>
<script src="scripts/prettify/prettify.js"></script>
<script src="scripts/prettify/lang-css.js"></script>
<script src="scripts/jquery.min.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="styles/jaguar.css">
<script>
var config = {"monospaceLinks":true,"cleverLinks":true,"default":{"outputSourceFiles":true},"applicationName":"Node.js MongoDB Driver API","googleAnalytics":"UA-7301842-14","openGraph":{"title":"MongoDB Driver API for Node.js","type":"website","image":"","site_name":"","url":""},"meta":{"title":"","description":"","keyword":""},"linenums":true};
</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-7301842-14, 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="wrap" class="clearfix" style="width:100%;">
<table style="height:100%;width:100%">
<tr>
<td valign='top' width="1px">
<div class="navigation">
<h3 class="applicationName"><a href="index.html">Node.js MongoDB Driver API</a></h3>
<div class="search">
<input id="search" type="text" class="form-control input-sm" placeholder="Search Documentations">
</div>
<ul class="list">
<li class="item" data-name="Admin">
<span class="title">
<a href="Admin.html">Admin</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="Admin~resultCallback"><a href="Admin.html#~resultCallback">resultCallback</a></li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="Admin#addUser"><a href="Admin.html#addUser">addUser</a></li>
<li data-name="Admin#buildInfo"><a href="Admin.html#buildInfo">buildInfo</a></li>
<li data-name="Admin#command"><a href="Admin.html#command">command</a></li>
<li data-name="Admin#listDatabases"><a href="Admin.html#listDatabases">listDatabases</a></li>
<li data-name="Admin#ping"><a href="Admin.html#ping">ping</a></li>
<li data-name="Admin#removeUser"><a href="Admin.html#removeUser">removeUser</a></li>
<li data-name="Admin#replSetGetStatus"><a href="Admin.html#replSetGetStatus">replSetGetStatus</a></li>
<li data-name="Admin#serverInfo"><a href="Admin.html#serverInfo">serverInfo</a></li>
<li data-name="Admin#serverStatus"><a href="Admin.html#serverStatus">serverStatus</a></li>
<li data-name="Admin#validateCollection"><a href="Admin.html#validateCollection">validateCollection</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="AggregationCursor">
<span class="title">
<a href="AggregationCursor.html">AggregationCursor</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="AggregationCursor~endCallback"><a href="AggregationCursor.html#~endCallback">endCallback</a></li>
<li data-name="AggregationCursor~iteratorCallback"><a href="AggregationCursor.html#~iteratorCallback">iteratorCallback</a></li>
<li data-name="AggregationCursor~resultCallback"><a href="AggregationCursor.html#~resultCallback">resultCallback</a></li>
<li data-name="AggregationCursor~toArrayResultCallback"><a href="AggregationCursor.html#~toArrayResultCallback">toArrayResultCallback</a></li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="AggregationCursor#batchSize"><a href="AggregationCursor.html#batchSize">batchSize</a></li>
<li data-name="AggregationCursor#clone"><a href="AggregationCursor.html#clone">clone</a></li>
<li data-name="AggregationCursor#close"><a href="AggregationCursor.html#close">close</a></li>
<li data-name="AggregationCursor#each"><a href="AggregationCursor.html#each">each</a></li>
<li data-name="AggregationCursor#explain"><a href="AggregationCursor.html#explain">explain</a></li>
<li data-name="AggregationCursor#geoNear"><a href="AggregationCursor.html#geoNear">geoNear</a></li>
<li data-name="AggregationCursor#group"><a href="AggregationCursor.html#group">group</a></li>
<li data-name="AggregationCursor#hasNext"><a href="AggregationCursor.html#hasNext">hasNext</a></li>
<li data-name="AggregationCursor#isClosed"><a href="AggregationCursor.html#isClosed">isClosed</a></li>
<li data-name="AggregationCursor#limit"><a href="AggregationCursor.html#limit">limit</a></li>
<li data-name="AggregationCursor#lookup"><a href="AggregationCursor.html#lookup">lookup</a></li>
<li data-name="AggregationCursor#match"><a href="AggregationCursor.html#match">match</a></li>
<li data-name="AggregationCursor#maxTimeMS"><a href="AggregationCursor.html#maxTimeMS">maxTimeMS</a></li>
<li data-name="AggregationCursor#next"><a href="AggregationCursor.html#next">next</a></li>
<li data-name="AggregationCursor#out"><a href="AggregationCursor.html#out">out</a></li>
<li data-name="AggregationCursor#pause"><a href="AggregationCursor.html#pause">pause</a></li>
<li data-name="AggregationCursor#pipe"><a href="AggregationCursor.html#pipe">pipe</a></li>
<li data-name="AggregationCursor#project"><a href="AggregationCursor.html#project">project</a></li>
<li data-name="AggregationCursor#read"><a href="AggregationCursor.html#read">read</a></li>
<li data-name="AggregationCursor#redact"><a href="AggregationCursor.html#redact">redact</a></li>
<li data-name="AggregationCursor#resume"><a href="AggregationCursor.html#resume">resume</a></li>
<li data-name="AggregationCursor#rewind"><a href="AggregationCursor.html#rewind">rewind</a></li>
<li data-name="AggregationCursor#setEncoding"><a href="AggregationCursor.html#setEncoding">setEncoding</a></li>
<li data-name="AggregationCursor#skip"><a href="AggregationCursor.html#skip">skip</a></li>
<li data-name="AggregationCursor#sort"><a href="AggregationCursor.html#sort">sort</a></li>
<li data-name="AggregationCursor#toArray"><a href="AggregationCursor.html#toArray">toArray</a></li>
<li data-name="AggregationCursor#unpipe"><a href="AggregationCursor.html#unpipe">unpipe</a></li>
<li data-name="AggregationCursor#unshift"><a href="AggregationCursor.html#unshift">unshift</a></li>
<li data-name="AggregationCursor#unwind"><a href="AggregationCursor.html#unwind">unwind</a></li>
<li data-name="AggregationCursor#wrap"><a href="AggregationCursor.html#wrap">wrap</a></li>
</ul>
<ul class="events itemMembers">
<span class="subtitle">Events</span>
<li data-name="AggregationCursor#event:close"><a href="AggregationCursor.html#event:close">close</a></li>
<li data-name="AggregationCursor#event:data"><a href="AggregationCursor.html#event:data">data</a></li>
<li data-name="AggregationCursor#event:end"><a href="AggregationCursor.html#event:end">end</a></li>
<li data-name="AggregationCursor#event:readable"><a href="AggregationCursor.html#event:readable">readable</a></li>
</ul>
</li>
<li class="item" data-name="Binary">
<span class="title">
<a href="Binary.html">Binary</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="Binary.SUBTYPE_BYTE_ARRAY"><a href="Binary.html#.SUBTYPE_BYTE_ARRAY">SUBTYPE_BYTE_ARRAY</a></li>
<li data-name="Binary.SUBTYPE_DEFAULT"><a href="Binary.html#.SUBTYPE_DEFAULT">SUBTYPE_DEFAULT</a></li>
<li data-name="Binary.SUBTYPE_FUNCTION"><a href="Binary.html#.SUBTYPE_FUNCTION">SUBTYPE_FUNCTION</a></li>
<li data-name="Binary.SUBTYPE_MD5"><a href="Binary.html#.SUBTYPE_MD5">SUBTYPE_MD5</a></li>
<li data-name="Binary.SUBTYPE_USER_DEFINED"><a href="Binary.html#.SUBTYPE_USER_DEFINED">SUBTYPE_USER_DEFINED</a></li>
<li data-name="Binary.SUBTYPE_UUID"><a href="Binary.html#.SUBTYPE_UUID">SUBTYPE_UUID</a></li>
<li data-name="Binary.SUBTYPE_UUID_OLD"><a href="Binary.html#.SUBTYPE_UUID_OLD">SUBTYPE_UUID_OLD</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="Binary#length"><a href="Binary.html#length">length</a></li>
<li data-name="Binary#put"><a href="Binary.html#put">put</a></li>
<li data-name="Binary#read"><a href="Binary.html#read">read</a></li>
<li data-name="Binary#value"><a href="Binary.html#value">value</a></li>
<li data-name="Binary#write"><a href="Binary.html#write">write</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="BSONRegExp">
<span class="title">
<a href="BSONRegExp.html">BSONRegExp</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="BulkOperationBase">
<span class="title">
<a href="BulkOperationBase.html">BulkOperationBase</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="BulkOperationBase#bulkExecute"><a href="BulkOperationBase.html#bulkExecute">bulkExecute</a></li>
<li data-name="BulkOperationBase#finalOptionsHandler"><a href="BulkOperationBase.html#finalOptionsHandler">finalOptionsHandler</a></li>
<li data-name="BulkOperationBase#find"><a href="BulkOperationBase.html#find">find</a></li>
<li data-name="BulkOperationBase#handleWriteError"><a href="BulkOperationBase.html#handleWriteError">handleWriteError</a></li>
<li data-name="BulkOperationBase#insert"><a href="BulkOperationBase.html#insert">insert</a></li>
<li data-name="BulkOperationBase#raw"><a href="BulkOperationBase.html#raw">raw</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="BulkWriteError">
<span class="title">
<a href="BulkWriteError.html">BulkWriteError</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="BulkWriteResult">
<span class="title">
<a href="BulkWriteResult.html">BulkWriteResult</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="BulkWriteResult#nInserted"><a href="BulkWriteResult.html#nInserted">nInserted</a></li>
<li data-name="BulkWriteResult#nMatched"><a href="BulkWriteResult.html#nMatched">nMatched</a></li>
<li data-name="BulkWriteResult#nModified"><a href="BulkWriteResult.html#nModified">nModified</a></li>
<li data-name="BulkWriteResult#nRemoved"><a href="BulkWriteResult.html#nRemoved">nRemoved</a></li>
<li data-name="BulkWriteResult#nUpserted"><a href="BulkWriteResult.html#nUpserted">nUpserted</a></li>
<li data-name="BulkWriteResult#ok"><a href="BulkWriteResult.html#ok">ok</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="BulkWriteResult#getInsertedIds"><a href="BulkWriteResult.html#getInsertedIds">getInsertedIds</a></li>
<li data-name="BulkWriteResult#getLastOp"><a href="BulkWriteResult.html#getLastOp">getLastOp</a></li>
<li data-name="BulkWriteResult#getRawResponse"><a href="BulkWriteResult.html#getRawResponse">getRawResponse</a></li>
<li data-name="BulkWriteResult#getUpsertedIdAt"><a href="BulkWriteResult.html#getUpsertedIdAt">getUpsertedIdAt</a></li>
<li data-name="BulkWriteResult#getUpsertedIds"><a href="BulkWriteResult.html#getUpsertedIds">getUpsertedIds</a></li>
<li data-name="BulkWriteResult#getWriteConcernError"><a href="BulkWriteResult.html#getWriteConcernError">getWriteConcernError</a></li>
<li data-name="BulkWriteResult#getWriteErrorAt"><a href="BulkWriteResult.html#getWriteErrorAt">getWriteErrorAt</a></li>
<li data-name="BulkWriteResult#getWriteErrorCount"><a href="BulkWriteResult.html#getWriteErrorCount">getWriteErrorCount</a></li>
<li data-name="BulkWriteResult#getWriteErrors"><a href="BulkWriteResult.html#getWriteErrors">getWriteErrors</a></li>
<li data-name="BulkWriteResult#hasWriteErrors"><a href="BulkWriteResult.html#hasWriteErrors">hasWriteErrors</a></li>
<li data-name="BulkWriteResult#isOk"><a href="BulkWriteResult.html#isOk">isOk</a></li>
<li data-name="BulkWriteResult#toJSON"><a href="BulkWriteResult.html#toJSON">toJSON</a></li>
<li data-name="BulkWriteResult#toString"><a href="BulkWriteResult.html#toString">toString</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ChangeStream">
<span class="title">
<a href="ChangeStream.html">ChangeStream</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="ChangeStream~resultCallback"><a href="ChangeStream.html#~resultCallback">resultCallback</a></li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ChangeStream#close"><a href="ChangeStream.html#close">close</a></li>
<li data-name="ChangeStream#hasNext"><a href="ChangeStream.html#hasNext">hasNext</a></li>
<li data-name="ChangeStream#isClosed"><a href="ChangeStream.html#isClosed">isClosed</a></li>
<li data-name="ChangeStream#next"><a href="ChangeStream.html#next">next</a></li>
<li data-name="ChangeStream#pause"><a href="ChangeStream.html#pause">pause</a></li>
<li data-name="ChangeStream#pipe"><a href="ChangeStream.html#pipe">pipe</a></li>
<li data-name="ChangeStream#resume"><a href="ChangeStream.html#resume">resume</a></li>
<li data-name="ChangeStream#stream"><a href="ChangeStream.html#stream">stream</a></li>
<li data-name="ChangeStream#unpipe"><a href="ChangeStream.html#unpipe">unpipe</a></li>
</ul>
<ul class="events itemMembers">
<span class="subtitle">Events</span>
<li data-name="ChangeStream#event:change"><a href="ChangeStream.html#event:change">change</a></li>
<li data-name="ChangeStream#event:close"><a href="ChangeStream.html#event:close">close</a></li>
<li data-name="ChangeStream#event:end"><a href="ChangeStream.html#event:end">end</a></li>
<li data-name="ChangeStream#event:error"><a href="ChangeStream.html#event:error">error</a></li>
</ul>
</li>
<li class="item" data-name="ClientSession">
<span class="title">
<a href="ClientSession.html">ClientSession</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="ClientSession#id"><a href="ClientSession.html#id">id</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ClientSession#abortTransaction"><a href="ClientSession.html#abortTransaction">abortTransaction</a></li>
<li data-name="ClientSession#advanceOperationTime"><a href="ClientSession.html#advanceOperationTime">advanceOperationTime</a></li>
<li data-name="ClientSession#commitTransaction"><a href="ClientSession.html#commitTransaction">commitTransaction</a></li>
<li data-name="ClientSession#endSession"><a href="ClientSession.html#endSession">endSession</a></li>
<li data-name="ClientSession#equals"><a href="ClientSession.html#equals">equals</a></li>
<li data-name="ClientSession#incrementTransactionNumber"><a href="ClientSession.html#incrementTransactionNumber">incrementTransactionNumber</a></li>
<li data-name="ClientSession#inTransaction"><a href="ClientSession.html#inTransaction">inTransaction</a></li>
<li data-name="ClientSession#startTransaction"><a href="ClientSession.html#startTransaction">startTransaction</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="Code">
<span class="title">
<a href="Code.html">Code</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="Collection">
<span class="title">
<a href="Collection.html">Collection</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="Collection~aggregationCallback"><a href="Collection.html#~aggregationCallback">aggregationCallback</a></li>
<li data-name="Collection~bulkWriteOpCallback"><a href="Collection.html#~bulkWriteOpCallback">bulkWriteOpCallback</a></li>
<li data-name="Collection~BulkWriteOpResult"><a href="Collection.html#~BulkWriteOpResult">BulkWriteOpResult</a></li>
<li data-name="Collection~collectionResultCallback"><a href="Collection.html#~collectionResultCallback">collectionResultCallback</a></li>
<li data-name="Collection~countCallback"><a href="Collection.html#~countCallback">countCallback</a></li>
<li data-name="Collection~deleteWriteOpCallback"><a href="Collection.html#~deleteWriteOpCallback">deleteWriteOpCallback</a></li>
<li data-name="Collection~deleteWriteOpResult"><a href="Collection.html#~deleteWriteOpResult">deleteWriteOpResult</a></li>
<li data-name="Collection~findAndModifyCallback"><a href="Collection.html#~findAndModifyCallback">findAndModifyCallback</a></li>
<li data-name="Collection~findAndModifyWriteOpResult"><a href="Collection.html#~findAndModifyWriteOpResult">findAndModifyWriteOpResult</a></li>
<li data-name="Collection~insertOneWriteOpCallback"><a href="Collection.html#~insertOneWriteOpCallback">insertOneWriteOpCallback</a></li>
<li data-name="Collection~insertOneWriteOpResult"><a href="Collection.html#~insertOneWriteOpResult">insertOneWriteOpResult</a></li>
<li data-name="Collection~insertWriteOpCallback"><a href="Collection.html#~insertWriteOpCallback">insertWriteOpCallback</a></li>
<li data-name="Collection~insertWriteOpResult"><a href="Collection.html#~insertWriteOpResult">insertWriteOpResult</a></li>
<li data-name="Collection~parallelCollectionScanCallback"><a href="Collection.html#~parallelCollectionScanCallback">parallelCollectionScanCallback</a></li>
<li data-name="Collection~resultCallback"><a href="Collection.html#~resultCallback">resultCallback</a></li>
<li data-name="Collection~updateWriteOpCallback"><a href="Collection.html#~updateWriteOpCallback">updateWriteOpCallback</a></li>
<li data-name="Collection~updateWriteOpResult"><a href="Collection.html#~updateWriteOpResult">updateWriteOpResult</a></li>
<li data-name="Collection~writeOpCallback"><a href="Collection.html#~writeOpCallback">writeOpCallback</a></li>
<li data-name="Collection~WriteOpResult"><a href="Collection.html#~WriteOpResult">WriteOpResult</a></li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="Collection#aggregate"><a href="Collection.html#aggregate">aggregate</a></li>
<li data-name="Collection#bulkWrite"><a href="Collection.html#bulkWrite">bulkWrite</a></li>
<li data-name="Collection#count"><a href="Collection.html#count">count</a></li>
<li data-name="Collection#countDocuments"><a href="Collection.html#countDocuments">countDocuments</a></li>
<li data-name="Collection#createIndex"><a href="Collection.html#createIndex">createIndex</a></li>
<li data-name="Collection#createIndexes"><a href="Collection.html#createIndexes">createIndexes</a></li>
<li data-name="Collection#deleteMany"><a href="Collection.html#deleteMany">deleteMany</a></li>
<li data-name="Collection#deleteOne"><a href="Collection.html#deleteOne">deleteOne</a></li>
<li data-name="Collection#distinct"><a href="Collection.html#distinct">distinct</a></li>
<li data-name="Collection#drop"><a href="Collection.html#drop">drop</a></li>
<li data-name="Collection#dropAllIndexes"><a href="Collection.html#dropAllIndexes">dropAllIndexes</a></li>
<li data-name="Collection#dropIndex"><a href="Collection.html#dropIndex">dropIndex</a></li>
<li data-name="Collection#dropIndexes"><a href="Collection.html#dropIndexes">dropIndexes</a></li>
<li data-name="Collection#ensureIndex"><a href="Collection.html#ensureIndex">ensureIndex</a></li>
<li data-name="Collection#estimatedDocumentCount"><a href="Collection.html#estimatedDocumentCount">estimatedDocumentCount</a></li>
<li data-name="Collection#find"><a href="Collection.html#find">find</a></li>
<li data-name="Collection#findAndModify"><a href="Collection.html#findAndModify">findAndModify</a></li>
<li data-name="Collection#findAndRemove"><a href="Collection.html#findAndRemove">findAndRemove</a></li>
<li data-name="Collection#findOne"><a href="Collection.html#findOne">findOne</a></li>
<li data-name="Collection#findOneAndDelete"><a href="Collection.html#findOneAndDelete">findOneAndDelete</a></li>
<li data-name="Collection#findOneAndReplace"><a href="Collection.html#findOneAndReplace">findOneAndReplace</a></li>
<li data-name="Collection#findOneAndUpdate"><a href="Collection.html#findOneAndUpdate">findOneAndUpdate</a></li>
<li data-name="Collection#geoHaystackSearch"><a href="Collection.html#geoHaystackSearch">geoHaystackSearch</a></li>
<li data-name="Collection#group"><a href="Collection.html#group">group</a></li>
<li data-name="Collection#indexes"><a href="Collection.html#indexes">indexes</a></li>
<li data-name="Collection#indexExists"><a href="Collection.html#indexExists">indexExists</a></li>
<li data-name="Collection#indexInformation"><a href="Collection.html#indexInformation">indexInformation</a></li>
<li data-name="Collection#initializeOrderedBulkOp"><a href="Collection.html#initializeOrderedBulkOp">initializeOrderedBulkOp</a></li>
<li data-name="Collection#initializeUnorderedBulkOp"><a href="Collection.html#initializeUnorderedBulkOp">initializeUnorderedBulkOp</a></li>
<li data-name="Collection#insert"><a href="Collection.html#insert">insert</a></li>
<li data-name="Collection#insertMany"><a href="Collection.html#insertMany">insertMany</a></li>
<li data-name="Collection#insertOne"><a href="Collection.html#insertOne">insertOne</a></li>
<li data-name="Collection#isCapped"><a href="Collection.html#isCapped">isCapped</a></li>
<li data-name="Collection#listIndexes"><a href="Collection.html#listIndexes">listIndexes</a></li>
<li data-name="Collection#mapReduce"><a href="Collection.html#mapReduce">mapReduce</a></li>
<li data-name="Collection#options"><a href="Collection.html#options">options</a></li>
<li data-name="Collection#parallelCollectionScan"><a href="Collection.html#parallelCollectionScan">parallelCollectionScan</a></li>
<li data-name="Collection#reIndex"><a href="Collection.html#reIndex">reIndex</a></li>
<li data-name="Collection#remove"><a href="Collection.html#remove">remove</a></li>
<li data-name="Collection#rename"><a href="Collection.html#rename">rename</a></li>
<li data-name="Collection#replaceOne"><a href="Collection.html#replaceOne">replaceOne</a></li>
<li data-name="Collection#save"><a href="Collection.html#save">save</a></li>
<li data-name="Collection#stats"><a href="Collection.html#stats">stats</a></li>
<li data-name="Collection#update"><a href="Collection.html#update">update</a></li>
<li data-name="Collection#updateMany"><a href="Collection.html#updateMany">updateMany</a></li>
<li data-name="Collection#updateOne"><a href="Collection.html#updateOne">updateOne</a></li>
<li data-name="Collection#watch"><a href="Collection.html#watch">watch</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="CommandCursor">
<span class="title">
<a href="CommandCursor.html">CommandCursor</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="CommandCursor~endCallback"><a href="CommandCursor.html#~endCallback">endCallback</a></li>
<li data-name="CommandCursor~iteratorCallback"><a href="CommandCursor.html#~iteratorCallback">iteratorCallback</a></li>
<li data-name="CommandCursor~resultCallback"><a href="CommandCursor.html#~resultCallback">resultCallback</a></li>
<li data-name="CommandCursor~toArrayResultCallback"><a href="CommandCursor.html#~toArrayResultCallback">toArrayResultCallback</a></li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="CommandCursor#batchSize"><a href="CommandCursor.html#batchSize">batchSize</a></li>
<li data-name="CommandCursor#clone"><a href="CommandCursor.html#clone">clone</a></li>
<li data-name="CommandCursor#close"><a href="CommandCursor.html#close">close</a></li>
<li data-name="CommandCursor#each"><a href="CommandCursor.html#each">each</a></li>
<li data-name="CommandCursor#hasNext"><a href="CommandCursor.html#hasNext">hasNext</a></li>
<li data-name="CommandCursor#isClosed"><a href="CommandCursor.html#isClosed">isClosed</a></li>
<li data-name="CommandCursor#maxTimeMS"><a href="CommandCursor.html#maxTimeMS">maxTimeMS</a></li>
<li data-name="CommandCursor#next"><a href="CommandCursor.html#next">next</a></li>
<li data-name="CommandCursor#pause"><a href="CommandCursor.html#pause">pause</a></li>
<li data-name="CommandCursor#pipe"><a href="CommandCursor.html#pipe">pipe</a></li>
<li data-name="CommandCursor#read"><a href="CommandCursor.html#read">read</a></li>
<li data-name="CommandCursor#resume"><a href="CommandCursor.html#resume">resume</a></li>
<li data-name="CommandCursor#rewind"><a href="CommandCursor.html#rewind">rewind</a></li>
<li data-name="CommandCursor#setEncoding"><a href="CommandCursor.html#setEncoding">setEncoding</a></li>
<li data-name="CommandCursor#setReadPreference"><a href="CommandCursor.html#setReadPreference">setReadPreference</a></li>
<li data-name="CommandCursor#toArray"><a href="CommandCursor.html#toArray">toArray</a></li>
<li data-name="CommandCursor#unpipe"><a href="CommandCursor.html#unpipe">unpipe</a></li>
<li data-name="CommandCursor#unshift"><a href="CommandCursor.html#unshift">unshift</a></li>
<li data-name="CommandCursor#wrap"><a href="CommandCursor.html#wrap">wrap</a></li>
</ul>
<ul class="events itemMembers">
<span class="subtitle">Events</span>
<li data-name="CommandCursor#event:close"><a href="CommandCursor.html#event:close">close</a></li>
<li data-name="CommandCursor#event:data"><a href="CommandCursor.html#event:data">data</a></li>
<li data-name="CommandCursor#event:end"><a href="CommandCursor.html#event:end">end</a></li>
<li data-name="CommandCursor#event:readable"><a href="CommandCursor.html#event:readable">readable</a></li>
</ul>
</li>
<li class="item" data-name="Cursor">
<span class="title">
<a href="Cursor.html">Cursor</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="Cursor~countResultCallback"><a href="Cursor.html#~countResultCallback">countResultCallback</a></li>
<li data-name="Cursor~endCallback"><a href="Cursor.html#~endCallback">endCallback</a></li>
<li data-name="Cursor~iteratorCallback"><a href="Cursor.html#~iteratorCallback">iteratorCallback</a></li>
<li data-name="Cursor~resultCallback"><a href="Cursor.html#~resultCallback">resultCallback</a></li>
<li data-name="Cursor~toArrayResultCallback"><a href="Cursor.html#~toArrayResultCallback">toArrayResultCallback</a></li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="Cursor#addCursorFlag"><a href="Cursor.html#addCursorFlag">addCursorFlag</a></li>
<li data-name="Cursor#addQueryModifier"><a href="Cursor.html#addQueryModifier">addQueryModifier</a></li>
<li data-name="Cursor#batchSize"><a href="Cursor.html#batchSize">batchSize</a></li>
<li data-name="Cursor#clone"><a href="Cursor.html#clone">clone</a></li>
<li data-name="Cursor#close"><a href="Cursor.html#close">close</a></li>
<li data-name="Cursor#collation"><a href="Cursor.html#collation">collation</a></li>
<li data-name="Cursor#comment"><a href="Cursor.html#comment">comment</a></li>
<li data-name="Cursor#count"><a href="Cursor.html#count">count</a></li>
<li data-name="Cursor#each"><a href="Cursor.html#each">each</a></li>
<li data-name="Cursor#explain"><a href="Cursor.html#explain">explain</a></li>
<li data-name="Cursor#filter"><a href="Cursor.html#filter">filter</a></li>
<li data-name="Cursor#forEach"><a href="Cursor.html#forEach">forEach</a></li>
<li data-name="Cursor#hasNext"><a href="Cursor.html#hasNext">hasNext</a></li>
<li data-name="Cursor#hint"><a href="Cursor.html#hint">hint</a></li>
<li data-name="Cursor#isClosed"><a href="Cursor.html#isClosed">isClosed</a></li>
<li data-name="Cursor#limit"><a href="Cursor.html#limit">limit</a></li>
<li data-name="Cursor#map"><a href="Cursor.html#map">map</a></li>
<li data-name="Cursor#max"><a href="Cursor.html#max">max</a></li>
<li data-name="Cursor#maxAwaitTimeMS"><a href="Cursor.html#maxAwaitTimeMS">maxAwaitTimeMS</a></li>
<li data-name="Cursor#maxScan"><a href="Cursor.html#maxScan">maxScan</a></li>
<li data-name="Cursor#maxTimeMS"><a href="Cursor.html#maxTimeMS">maxTimeMS</a></li>
<li data-name="Cursor#min"><a href="Cursor.html#min">min</a></li>
<li data-name="Cursor#next"><a href="Cursor.html#next">next</a></li>
<li data-name="Cursor#pause"><a href="Cursor.html#pause">pause</a></li>
<li data-name="Cursor#pipe"><a href="Cursor.html#pipe">pipe</a></li>
<li data-name="Cursor#project"><a href="Cursor.html#project">project</a></li>
<li data-name="Cursor#read"><a href="Cursor.html#read">read</a></li>
<li data-name="Cursor#resume"><a href="Cursor.html#resume">resume</a></li>
<li data-name="Cursor#returnKey"><a href="Cursor.html#returnKey">returnKey</a></li>
<li data-name="Cursor#rewind"><a href="Cursor.html#rewind">rewind</a></li>
<li data-name="Cursor#setCursorOption"><a href="Cursor.html#setCursorOption">setCursorOption</a></li>
<li data-name="Cursor#setEncoding"><a href="Cursor.html#setEncoding">setEncoding</a></li>
<li data-name="Cursor#setReadPreference"><a href="Cursor.html#setReadPreference">setReadPreference</a></li>
<li data-name="Cursor#showRecordId"><a href="Cursor.html#showRecordId">showRecordId</a></li>
<li data-name="Cursor#skip"><a href="Cursor.html#skip">skip</a></li>
<li data-name="Cursor#snapshot"><a href="Cursor.html#snapshot">snapshot</a></li>
<li data-name="Cursor#sort"><a href="Cursor.html#sort">sort</a></li>
<li data-name="Cursor#stream"><a href="Cursor.html#stream">stream</a></li>
<li data-name="Cursor#toArray"><a href="Cursor.html#toArray">toArray</a></li>
<li data-name="Cursor#transformStream"><a href="Cursor.html#transformStream">transformStream</a></li>
<li data-name="Cursor#unpipe"><a href="Cursor.html#unpipe">unpipe</a></li>
<li data-name="Cursor#unshift"><a href="Cursor.html#unshift">unshift</a></li>
<li data-name="Cursor#wrap"><a href="Cursor.html#wrap">wrap</a></li>
</ul>
<ul class="events itemMembers">
<span class="subtitle">Events</span>
<li data-name="Cursor#event:close"><a href="Cursor.html#event:close">close</a></li>
<li data-name="Cursor#event:data"><a href="Cursor.html#event:data">data</a></li>
<li data-name="Cursor#event:end"><a href="Cursor.html#event:end">end</a></li>
<li data-name="Cursor#event:readable"><a href="Cursor.html#event:readable">readable</a></li>
</ul>
</li>
<li class="item" data-name="Db">
<span class="title">
<a href="Db.html">Db</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="Db#profilingInfo"><a href="Db.html#profilingInfo">profilingInfo</a></li>
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="Db~collectionResultCallback"><a href="Db.html#~collectionResultCallback">collectionResultCallback</a></li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="Db#addUser"><a href="Db.html#addUser">addUser</a></li>
<li data-name="Db#admin"><a href="Db.html#admin">admin</a></li>
<li data-name="Db#collection"><a href="Db.html#collection">collection</a></li>
<li data-name="Db#collections"><a href="Db.html#collections">collections</a></li>
<li data-name="Db#command"><a href="Db.html#command">command</a></li>
<li data-name="Db#createCollection"><a href="Db.html#createCollection">createCollection</a></li>
<li data-name="Db#createIndex"><a href="Db.html#createIndex">createIndex</a></li>
<li data-name="Db#dropCollection"><a href="Db.html#dropCollection">dropCollection</a></li>
<li data-name="Db#dropDatabase"><a href="Db.html#dropDatabase">dropDatabase</a></li>
<li data-name="Db#ensureIndex"><a href="Db.html#ensureIndex">ensureIndex</a></li>
<li data-name="Db#eval"><a href="Db.html#eval">eval</a></li>
<li data-name="Db#executeDbAdminCommand"><a href="Db.html#executeDbAdminCommand">executeDbAdminCommand</a></li>
<li data-name="Db#indexInformation"><a href="Db.html#indexInformation">indexInformation</a></li>
<li data-name="Db#listCollections"><a href="Db.html#listCollections">listCollections</a></li>
<li data-name="Db#profilingLevel"><a href="Db.html#profilingLevel">profilingLevel</a></li>
<li data-name="Db#removeUser"><a href="Db.html#removeUser">removeUser</a></li>
<li data-name="Db#renameCollection"><a href="Db.html#renameCollection">renameCollection</a></li>
<li data-name="Db#setProfilingLevel"><a href="Db.html#setProfilingLevel">setProfilingLevel</a></li>
<li data-name="Db#stats"><a href="Db.html#stats">stats</a></li>
<li data-name="Db#unref"><a href="Db.html#unref">unref</a></li>
<li data-name="Db#watch"><a href="Db.html#watch">watch</a></li>
</ul>
<ul class="events itemMembers">
<span class="subtitle">Events</span>
<li data-name="Db#event:close"><a href="Db.html#event:close">close</a></li>
<li data-name="Db#event:error"><a href="Db.html#event:error">error</a></li>
<li data-name="Db#event:fullsetup"><a href="Db.html#event:fullsetup">fullsetup</a></li>
<li data-name="Db#event:parseError"><a href="Db.html#event:parseError">parseError</a></li>
<li data-name="Db#event:reconnect"><a href="Db.html#event:reconnect">reconnect</a></li>
<li data-name="Db#event:timeout"><a href="Db.html#event:timeout">timeout</a></li>
</ul>
</li>
<li class="item" data-name="DBRef">
<span class="title">
<a href="DBRef.html">DBRef</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="Decimal128">
<span class="title">
<a href="Decimal128.html">Decimal128</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="Decimal128#toString"><a href="Decimal128.html#toString">toString</a></li>
<li data-name="Decimal128.fromString"><a href="Decimal128.html#.fromString">fromString</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="Double">
<span class="title">
<a href="Double.html">Double</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="Double#valueOf"><a href="Double.html#valueOf">valueOf</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="FindOperators">
<span class="title">
<a href="FindOperators.html">FindOperators</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="FindOperators#delete"><a href="FindOperators.html#delete">delete</a></li>
<li data-name="FindOperators#deleteOne"><a href="FindOperators.html#deleteOne">deleteOne</a></li>
<li data-name="FindOperators#remove"><a href="FindOperators.html#remove">remove</a></li>
<li data-name="FindOperators#removeOne"><a href="FindOperators.html#removeOne">removeOne</a></li>
<li data-name="FindOperators#replaceOne"><a href="FindOperators.html#replaceOne">replaceOne</a></li>
<li data-name="FindOperators#update"><a href="FindOperators.html#update">update</a></li>
<li data-name="FindOperators#updateOne"><a href="FindOperators.html#updateOne">updateOne</a></li>
<li data-name="FindOperators#upsert"><a href="FindOperators.html#upsert">upsert</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="GridFSBucket">
<span class="title">
<a href="GridFSBucket.html">GridFSBucket</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="GridFSBucket~errorCallback"><a href="GridFSBucket.html#~errorCallback">errorCallback</a></li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="GridFSBucket#delete"><a href="GridFSBucket.html#delete">delete</a></li>
<li data-name="GridFSBucket#drop"><a href="GridFSBucket.html#drop">drop</a></li>
<li data-name="GridFSBucket#find"><a href="GridFSBucket.html#find">find</a></li>
<li data-name="GridFSBucket#openDownloadStream"><a href="GridFSBucket.html#openDownloadStream">openDownloadStream</a></li>
<li data-name="GridFSBucket#openDownloadStreamByName"><a href="GridFSBucket.html#openDownloadStreamByName">openDownloadStreamByName</a></li>
<li data-name="GridFSBucket#openUploadStream"><a href="GridFSBucket.html#openUploadStream">openUploadStream</a></li>
<li data-name="GridFSBucket#openUploadStreamWithId"><a href="GridFSBucket.html#openUploadStreamWithId">openUploadStreamWithId</a></li>
<li data-name="GridFSBucket#rename"><a href="GridFSBucket.html#rename">rename</a></li>
</ul>
<ul class="events itemMembers">
<span class="subtitle">Events</span>
<li data-name="GridFSBucket#event:index"><a href="GridFSBucket.html#event:index">index</a></li>
</ul>
</li>
<li class="item" data-name="GridFSBucketReadStream">
<span class="title">
<a href="GridFSBucketReadStream.html">GridFSBucketReadStream</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="GridFSBucketReadStream#_read"><a href="GridFSBucketReadStream.html#_read">_read</a></li>
<li data-name="GridFSBucketReadStream#abort"><a href="GridFSBucketReadStream.html#abort">abort</a></li>
<li data-name="GridFSBucketReadStream#end"><a href="GridFSBucketReadStream.html#end">end</a></li>
<li data-name="GridFSBucketReadStream#start"><a href="GridFSBucketReadStream.html#start">start</a></li>
</ul>
<ul class="events itemMembers">
<span class="subtitle">Events</span>
<li data-name="GridFSBucketReadStream#event:close"><a href="GridFSBucketReadStream.html#event:close">close</a></li>
<li data-name="GridFSBucketReadStream#event:data"><a href="GridFSBucketReadStream.html#event:data">data</a></li>
<li data-name="GridFSBucketReadStream#event:end"><a href="GridFSBucketReadStream.html#event:end">end</a></li>
<li data-name="GridFSBucketReadStream#event:error"><a href="GridFSBucketReadStream.html#event:error">error</a></li>
<li data-name="GridFSBucketReadStream#event:file"><a href="GridFSBucketReadStream.html#event:file">file</a></li>
</ul>
</li>
<li class="item" data-name="GridFSBucketWriteStream">
<span class="title">
<a href="GridFSBucketWriteStream.html">GridFSBucketWriteStream</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="GridFSBucketWriteStream#abort"><a href="GridFSBucketWriteStream.html#abort">abort</a></li>
<li data-name="GridFSBucketWriteStream#end"><a href="GridFSBucketWriteStream.html#end">end</a></li>
<li data-name="GridFSBucketWriteStream#write"><a href="GridFSBucketWriteStream.html#write">write</a></li>
</ul>
<ul class="events itemMembers">
<span class="subtitle">Events</span>
<li data-name="GridFSBucketWriteStream#event:error"><a href="GridFSBucketWriteStream.html#event:error">error</a></li>
<li data-name="GridFSBucketWriteStream#event:finish"><a href="GridFSBucketWriteStream.html#event:finish">finish</a></li>
</ul>
</li>
<li class="item" data-name="GridStore">
<span class="title">
<a href="GridStore.html">GridStore</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="GridStore.DEFAULT_CONTENT_TYPE"><a href="GridStore.html#.DEFAULT_CONTENT_TYPE">DEFAULT_CONTENT_TYPE</a></li>
<li data-name="GridStore.DEFAULT_ROOT_COLLECTION"><a href="GridStore.html#.DEFAULT_ROOT_COLLECTION">DEFAULT_ROOT_COLLECTION</a></li>
<li data-name="GridStore.IO_SEEK_CUR"><a href="GridStore.html#.IO_SEEK_CUR">IO_SEEK_CUR</a></li>
<li data-name="GridStore.IO_SEEK_END"><a href="GridStore.html#.IO_SEEK_END">IO_SEEK_END</a></li>
<li data-name="GridStore.IO_SEEK_SET"><a href="GridStore.html#.IO_SEEK_SET">IO_SEEK_SET</a></li>
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="GridStore~collectionCallback"><a href="GridStore.html#~collectionCallback">collectionCallback</a></li>
<li data-name="GridStore~gridStoreCallback"><a href="GridStore.html#~gridStoreCallback">gridStoreCallback</a></li>
<li data-name="GridStore~openCallback"><a href="GridStore.html#~openCallback">openCallback</a></li>
<li data-name="GridStore~readCallback"><a href="GridStore.html#~readCallback">readCallback</a></li>
<li data-name="GridStore~readlinesCallback"><a href="GridStore.html#~readlinesCallback">readlinesCallback</a></li>
<li data-name="GridStore~resultCallback"><a href="GridStore.html#~resultCallback">resultCallback</a></li>
<li data-name="GridStore~tellCallback"><a href="GridStore.html#~tellCallback">tellCallback</a></li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="GridStore.exist"><a href="GridStore.html#.exist">exist</a></li>
<li data-name="GridStore.list"><a href="GridStore.html#.list">list</a></li>
<li data-name="GridStore.read"><a href="GridStore.html#.read">read</a></li>
<li data-name="GridStore.readlines"><a href="GridStore.html#.readlines">readlines</a></li>
<li data-name="GridStore.unlink"><a href="GridStore.html#.unlink">unlink</a></li>
<li data-name="GridStore#chunkCollection"><a href="GridStore.html#chunkCollection">chunkCollection</a></li>
<li data-name="GridStore#close"><a href="GridStore.html#close">close</a></li>
<li data-name="GridStore#collection"><a href="GridStore.html#collection">collection</a></li>
<li data-name="GridStore#destroy"><a href="GridStore.html#destroy">destroy</a></li>
<li data-name="GridStore#eof"><a href="GridStore.html#eof">eof</a></li>
<li data-name="GridStore#getc"><a href="GridStore.html#getc">getc</a></li>
<li data-name="GridStore#open"><a href="GridStore.html#open">open</a></li>
<li data-name="GridStore#puts"><a href="GridStore.html#puts">puts</a></li>
<li data-name="GridStore#read"><a href="GridStore.html#read">read</a></li>
<li data-name="GridStore#readlines"><a href="GridStore.html#readlines">readlines</a></li>
<li data-name="GridStore#rewind"><a href="GridStore.html#rewind">rewind</a></li>
<li data-name="GridStore#seek"><a href="GridStore.html#seek">seek</a></li>
<li data-name="GridStore#stream"><a href="GridStore.html#stream">stream</a></li>
<li data-name="GridStore#tell"><a href="GridStore.html#tell">tell</a></li>
<li data-name="GridStore#unlink"><a href="GridStore.html#unlink">unlink</a></li>
<li data-name="GridStore#write"><a href="GridStore.html#write">write</a></li>
<li data-name="GridStore#writeFile"><a href="GridStore.html#writeFile">writeFile</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="GridStoreStream">
<span class="title">
<a href="GridStoreStream.html">GridStoreStream</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="GridStoreStream#end"><a href="GridStoreStream.html#end">end</a></li>
<li data-name="GridStoreStream#pause"><a href="GridStoreStream.html#pause">pause</a></li>
<li data-name="GridStoreStream#pipe"><a href="GridStoreStream.html#pipe">pipe</a></li>
<li data-name="GridStoreStream#read"><a href="GridStoreStream.html#read">read</a></li>
<li data-name="GridStoreStream#resume"><a href="GridStoreStream.html#resume">resume</a></li>
<li data-name="GridStoreStream#setEncoding"><a href="GridStoreStream.html#setEncoding">setEncoding</a></li>
<li data-name="GridStoreStream#unpipe"><a href="GridStoreStream.html#unpipe">unpipe</a></li>
<li data-name="GridStoreStream#unshift"><a href="GridStoreStream.html#unshift">unshift</a></li>
<li data-name="GridStoreStream#wrap"><a href="GridStoreStream.html#wrap">wrap</a></li>
<li data-name="GridStoreStream#write"><a href="GridStoreStream.html#write">write</a></li>
</ul>
<ul class="events itemMembers">
<span class="subtitle">Events</span>
<li data-name="GridStoreStream#event:close"><a href="GridStoreStream.html#event:close">close</a></li>
<li data-name="GridStoreStream#event:data"><a href="GridStoreStream.html#event:data">data</a></li>
<li data-name="GridStoreStream#event:drain"><a href="GridStoreStream.html#event:drain">drain</a></li>
<li data-name="GridStoreStream#event:end"><a href="GridStoreStream.html#event:end">end</a></li>
<li data-name="GridStoreStream#event:error"><a href="GridStoreStream.html#event:error">error</a></li>
<li data-name="GridStoreStream#event:finish"><a href="GridStoreStream.html#event:finish">finish</a></li>
<li data-name="GridStoreStream#event:pipe"><a href="GridStoreStream.html#event:pipe">pipe</a></li>
<li data-name="GridStoreStream#event:readable"><a href="GridStoreStream.html#event:readable">readable</a></li>
<li data-name="GridStoreStream#event:unpipe"><a href="GridStoreStream.html#event:unpipe">unpipe</a></li>
</ul>
</li>
<li class="item" data-name="Int32">
<span class="title">
<a href="Int32.html">Int32</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="Int32#valueOf"><a href="Int32.html#valueOf">valueOf</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="Logger">
<span class="title">
<a href="Logger.html">Logger</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="Logger.currentLogger"><a href="Logger.html#.currentLogger">currentLogger</a></li>
<li data-name="Logger.filter"><a href="Logger.html#.filter">filter</a></li>
<li data-name="Logger.reset"><a href="Logger.html#.reset">reset</a></li>
<li data-name="Logger.setCurrentLogger"><a href="Logger.html#.setCurrentLogger">setCurrentLogger</a></li>
<li data-name="Logger.setLevel"><a href="Logger.html#.setLevel">setLevel</a></li>
<li data-name="Logger#debug"><a href="Logger.html#debug">debug</a></li>
<li data-name="Logger#error"><a href="Logger.html#error">error</a></li>
<li data-name="Logger#info"><a href="Logger.html#info">info</a></li>
<li data-name="Logger#isDebug"><a href="Logger.html#isDebug">isDebug</a></li>
<li data-name="Logger#isError"><a href="Logger.html#isError">isError</a></li>
<li data-name="Logger#isInfo"><a href="Logger.html#isInfo">isInfo</a></li>
<li data-name="Logger#isWarn"><a href="Logger.html#isWarn">isWarn</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="Long">
<span class="title">
<a href="Long.html">Long</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="Long.MAX_VALUE"><a href="Long.html#.MAX_VALUE">MAX_VALUE</a></li>
<li data-name="Long.MIN_VALUE"><a href="Long.html#.MIN_VALUE">MIN_VALUE</a></li>
<li data-name="Long.NEG_ONE"><a href="Long.html#.NEG_ONE">NEG_ONE</a></li>
<li data-name="Long.ONE"><a href="Long.html#.ONE">ONE</a></li>
<li data-name="Long.ZERO"><a href="Long.html#.ZERO">ZERO</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="Long.fromBits"><a href="Long.html#.fromBits">fromBits</a></li>
<li data-name="Long.fromInt"><a href="Long.html#.fromInt">fromInt</a></li>
<li data-name="Long.fromNumber"><a href="Long.html#.fromNumber">fromNumber</a></li>
<li data-name="Long.fromString"><a href="Long.html#.fromString">fromString</a></li>
<li data-name="Long#add"><a href="Long.html#add">add</a></li>
<li data-name="Long#and"><a href="Long.html#and">and</a></li>
<li data-name="Long#compare"><a href="Long.html#compare">compare</a></li>
<li data-name="Long#div"><a href="Long.html#div">div</a></li>
<li data-name="Long#equals"><a href="Long.html#equals">equals</a></li>
<li data-name="Long#getHighBits"><a href="Long.html#getHighBits">getHighBits</a></li>
<li data-name="Long#getLowBits"><a href="Long.html#getLowBits">getLowBits</a></li>
<li data-name="Long#getLowBitsUnsigned"><a href="Long.html#getLowBitsUnsigned">getLowBitsUnsigned</a></li>
<li data-name="Long#getNumBitsAbs"><a href="Long.html#getNumBitsAbs">getNumBitsAbs</a></li>
<li data-name="Long#greaterThan"><a href="Long.html#greaterThan">greaterThan</a></li>
<li data-name="Long#greaterThanOrEqual"><a href="Long.html#greaterThanOrEqual">greaterThanOrEqual</a></li>
<li data-name="Long#isNegative"><a href="Long.html#isNegative">isNegative</a></li>
<li data-name="Long#isOdd"><a href="Long.html#isOdd">isOdd</a></li>
<li data-name="Long#isZero"><a href="Long.html#isZero">isZero</a></li>
<li data-name="Long#lessThan"><a href="Long.html#lessThan">lessThan</a></li>
<li data-name="Long#lessThanOrEqual"><a href="Long.html#lessThanOrEqual">lessThanOrEqual</a></li>
<li data-name="Long#modulo"><a href="Long.html#modulo">modulo</a></li>
<li data-name="Long#multiply"><a href="Long.html#multiply">multiply</a></li>
<li data-name="Long#negate"><a href="Long.html#negate">negate</a></li>
<li data-name="Long#not"><a href="Long.html#not">not</a></li>
<li data-name="Long#notEquals"><a href="Long.html#notEquals">notEquals</a></li>
<li data-name="Long#or"><a href="Long.html#or">or</a></li>
<li data-name="Long#shiftLeft"><a href="Long.html#shiftLeft">shiftLeft</a></li>
<li data-name="Long#shiftRight"><a href="Long.html#shiftRight">shiftRight</a></li>
<li data-name="Long#shiftRightUnsigned"><a href="Long.html#shiftRightUnsigned">shiftRightUnsigned</a></li>
<li data-name="Long#subtract"><a href="Long.html#subtract">subtract</a></li>
<li data-name="Long#toInt"><a href="Long.html#toInt">toInt</a></li>
<li data-name="Long#toJSON"><a href="Long.html#toJSON">toJSON</a></li>
<li data-name="Long#toNumber"><a href="Long.html#toNumber">toNumber</a></li>
<li data-name="Long#toString"><a href="Long.html#toString">toString</a></li>
<li data-name="Long#xor"><a href="Long.html#xor">xor</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="MaxKey">
<span class="title">
<a href="MaxKey.html">MaxKey</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="MinKey">
<span class="title">
<a href="MinKey.html">MinKey</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="MongoClient">
<span class="title">
<a href="MongoClient.html">MongoClient</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="MongoClient~connectCallback"><a href="MongoClient.html#~connectCallback">connectCallback</a></li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="MongoClient.connect"><a href="MongoClient.html#.connect">connect</a></li>
<li data-name="MongoClient#close"><a href="MongoClient.html#close">close</a></li>
<li data-name="MongoClient#connect"><a href="MongoClient.html#connect">connect</a></li>
<li data-name="MongoClient#db"><a href="MongoClient.html#db">db</a></li>
<li data-name="MongoClient#isConnected"><a href="MongoClient.html#isConnected">isConnected</a></li>
<li data-name="MongoClient#logout"><a href="MongoClient.html#logout">logout</a></li>
<li data-name="MongoClient#startSession"><a href="MongoClient.html#startSession">startSession</a></li>
<li data-name="MongoClient#watch"><a href="MongoClient.html#watch">watch</a></li>
<li data-name="MongoClient#withSession"><a href="MongoClient.html#withSession">withSession</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="MongoError">
<span class="title">
<a href="MongoError.html">MongoError</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="MongoError.create"><a href="MongoError.html#.create">create</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="MongoNetworkError">
<span class="title">
<a href="MongoNetworkError.html">MongoNetworkError</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="MongoParseError">
<span class="title">
<a href="MongoParseError.html">MongoParseError</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="Mongos">
<span class="title">
<a href="Mongos.html">Mongos</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
<span class="subtitle">Events</span>
<li data-name="Mongos#event:close"><a href="Mongos.html#event:close">close</a></li>
<li data-name="Mongos#event:commandFailed"><a href="Mongos.html#event:commandFailed">commandFailed</a></li>
<li data-name="Mongos#event:commandStarted"><a href="Mongos.html#event:commandStarted">commandStarted</a></li>
<li data-name="Mongos#event:commandSucceeded"><a href="Mongos.html#event:commandSucceeded">commandSucceeded</a></li>
<li data-name="Mongos#event:connect"><a href="Mongos.html#event:connect">connect</a></li>
<li data-name="Mongos#event:error"><a href="Mongos.html#event:error">error</a></li>
<li data-name="Mongos#event:fullsetup"><a href="Mongos.html#event:fullsetup">fullsetup</a></li>
<li data-name="Mongos#event:ha"><a href="Mongos.html#event:ha">ha</a></li>
<li data-name="Mongos#event:joined"><a href="Mongos.html#event:joined">joined</a></li>
<li data-name="Mongos#event:left"><a href="Mongos.html#event:left">left</a></li>
<li data-name="Mongos#event:open"><a href="Mongos.html#event:open">open</a></li>
<li data-name="Mongos#event:parseError"><a href="Mongos.html#event:parseError">parseError</a></li>
<li data-name="Mongos#event:timeout"><a href="Mongos.html#event:timeout">timeout</a></li>
</ul>
</li>
<li class="item" data-name="MongoTimeoutError">
<span class="title">
<a href="MongoTimeoutError.html">MongoTimeoutError</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="MongoWriteConcernError">
<span class="title">
<a href="MongoWriteConcernError.html">MongoWriteConcernError</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ObjectID">
<span class="title">
<a href="ObjectID.html">ObjectID</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="ObjectID.createFromHexString"><a href="ObjectID.html#.createFromHexString">createFromHexString</a></li>
<li data-name="ObjectID.createFromTime"><a href="ObjectID.html#.createFromTime">createFromTime</a></li>
<li data-name="ObjectID.isValid"><a href="ObjectID.html#.isValid">isValid</a></li>
<li data-name="ObjectID#equals"><a href="ObjectID.html#equals">equals</a></li>
<li data-name="ObjectID#generate"><a href="ObjectID.html#generate">generate</a></li>
<li data-name="ObjectID#getTimestamp"><a href="ObjectID.html#getTimestamp">getTimestamp</a></li>
<li data-name="ObjectID#toHexString"><a href="ObjectID.html#toHexString">toHexString</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="OrderedBulkOperation">
<span class="title">
<a href="OrderedBulkOperation.html">OrderedBulkOperation</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="OrderedBulkOperation~resultCallback"><a href="OrderedBulkOperation.html#~resultCallback">resultCallback</a></li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="OrderedBulkOperation#execute"><a href="OrderedBulkOperation.html#execute">execute</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="ReplSet">
<span class="title">
<a href="ReplSet.html">ReplSet</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
<span class="subtitle">Events</span>
<li data-name="ReplSet#event:close"><a href="ReplSet.html#event:close">close</a></li>
<li data-name="ReplSet#event:commandFailed"><a href="ReplSet.html#event:commandFailed">commandFailed</a></li>
<li data-name="ReplSet#event:commandStarted"><a href="ReplSet.html#event:commandStarted">commandStarted</a></li>
<li data-name="ReplSet#event:commandSucceeded"><a href="ReplSet.html#event:commandSucceeded">commandSucceeded</a></li>
<li data-name="ReplSet#event:connect"><a href="ReplSet.html#event:connect">connect</a></li>
<li data-name="ReplSet#event:error"><a href="ReplSet.html#event:error">error</a></li>
<li data-name="ReplSet#event:fullsetup"><a href="ReplSet.html#event:fullsetup">fullsetup</a></li>
<li data-name="ReplSet#event:ha"><a href="ReplSet.html#event:ha">ha</a></li>
<li data-name="ReplSet#event:joined"><a href="ReplSet.html#event:joined">joined</a></li>
<li data-name="ReplSet#event:left"><a href="ReplSet.html#event:left">left</a></li>
<li data-name="ReplSet#event:open"><a href="ReplSet.html#event:open">open</a></li>
<li data-name="ReplSet#event:parseError"><a href="ReplSet.html#event:parseError">parseError</a></li>
<li data-name="ReplSet#event:timeout"><a href="ReplSet.html#event:timeout">timeout</a></li>
</ul>
</li>
<li class="item" data-name="Server">
<span class="title">
<a href="Server.html">Server</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
</ul>
<ul class="events itemMembers">
<span class="subtitle">Events</span>
<li data-name="Server#event:close"><a href="Server.html#event:close">close</a></li>
<li data-name="Server#event:commandFailed"><a href="Server.html#event:commandFailed">commandFailed</a></li>
<li data-name="Server#event:commandStarted"><a href="Server.html#event:commandStarted">commandStarted</a></li>
<li data-name="Server#event:commandSucceeded"><a href="Server.html#event:commandSucceeded">commandSucceeded</a></li>
<li data-name="Server#event:connect"><a href="Server.html#event:connect">connect</a></li>
<li data-name="Server#event:error"><a href="Server.html#event:error">error</a></li>
<li data-name="Server#event:parseError"><a href="Server.html#event:parseError">parseError</a></li>
<li data-name="Server#event:reconnect"><a href="Server.html#event:reconnect">reconnect</a></li>
<li data-name="Server#event:timeout"><a href="Server.html#event:timeout">timeout</a></li>
</ul>
</li>
<li class="item" data-name="Symbol">
<span class="title">
<a href="Symbol.html">Symbol</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="Symbol#valueOf"><a href="Symbol.html#valueOf">valueOf</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="Timestamp">
<span class="title">
<a href="Timestamp.html">Timestamp</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="Timestamp.MAX_VALUE"><a href="Timestamp.html#.MAX_VALUE">MAX_VALUE</a></li>
<li data-name="Timestamp.MIN_VALUE"><a href="Timestamp.html#.MIN_VALUE">MIN_VALUE</a></li>
<li data-name="Timestamp.NEG_ONE"><a href="Timestamp.html#.NEG_ONE">NEG_ONE</a></li>
<li data-name="Timestamp.ONE"><a href="Timestamp.html#.ONE">ONE</a></li>
<li data-name="Timestamp.ZERO"><a href="Timestamp.html#.ZERO">ZERO</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="Timestamp.fromBits"><a href="Timestamp.html#.fromBits">fromBits</a></li>
<li data-name="Timestamp.fromInt"><a href="Timestamp.html#.fromInt">fromInt</a></li>
<li data-name="Timestamp.fromNumber"><a href="Timestamp.html#.fromNumber">fromNumber</a></li>
<li data-name="Timestamp.fromString"><a href="Timestamp.html#.fromString">fromString</a></li>
<li data-name="Timestamp#add"><a href="Timestamp.html#add">add</a></li>
<li data-name="Timestamp#and"><a href="Timestamp.html#and">and</a></li>
<li data-name="Timestamp#compare"><a href="Timestamp.html#compare">compare</a></li>
<li data-name="Timestamp#div"><a href="Timestamp.html#div">div</a></li>
<li data-name="Timestamp#equals"><a href="Timestamp.html#equals">equals</a></li>
<li data-name="Timestamp#getHighBits"><a href="Timestamp.html#getHighBits">getHighBits</a></li>
<li data-name="Timestamp#getLowBits"><a href="Timestamp.html#getLowBits">getLowBits</a></li>
<li data-name="Timestamp#getLowBitsUnsigned"><a href="Timestamp.html#getLowBitsUnsigned">getLowBitsUnsigned</a></li>
<li data-name="Timestamp#getNumBitsAbs"><a href="Timestamp.html#getNumBitsAbs">getNumBitsAbs</a></li>
<li data-name="Timestamp#greaterThan"><a href="Timestamp.html#greaterThan">greaterThan</a></li>
<li data-name="Timestamp#greaterThanOrEqual"><a href="Timestamp.html#greaterThanOrEqual">greaterThanOrEqual</a></li>
<li data-name="Timestamp#isNegative"><a href="Timestamp.html#isNegative">isNegative</a></li>
<li data-name="Timestamp#isOdd"><a href="Timestamp.html#isOdd">isOdd</a></li>
<li data-name="Timestamp#isZero"><a href="Timestamp.html#isZero">isZero</a></li>
<li data-name="Timestamp#lessThan"><a href="Timestamp.html#lessThan">lessThan</a></li>
<li data-name="Timestamp#lessThanOrEqual"><a href="Timestamp.html#lessThanOrEqual">lessThanOrEqual</a></li>
<li data-name="Timestamp#modulo"><a href="Timestamp.html#modulo">modulo</a></li>
<li data-name="Timestamp#multiply"><a href="Timestamp.html#multiply">multiply</a></li>
<li data-name="Timestamp#negate"><a href="Timestamp.html#negate">negate</a></li>
<li data-name="Timestamp#not"><a href="Timestamp.html#not">not</a></li>
<li data-name="Timestamp#notEquals"><a href="Timestamp.html#notEquals">notEquals</a></li>
<li data-name="Timestamp#or"><a href="Timestamp.html#or">or</a></li>
<li data-name="Timestamp#shiftLeft"><a href="Timestamp.html#shiftLeft">shiftLeft</a></li>
<li data-name="Timestamp#shiftRight"><a href="Timestamp.html#shiftRight">shiftRight</a></li>
<li data-name="Timestamp#shiftRightUnsigned"><a href="Timestamp.html#shiftRightUnsigned">shiftRightUnsigned</a></li>
<li data-name="Timestamp#subtract"><a href="Timestamp.html#subtract">subtract</a></li>
<li data-name="Timestamp#toInt"><a href="Timestamp.html#toInt">toInt</a></li>
<li data-name="Timestamp#toJSON"><a href="Timestamp.html#toJSON">toJSON</a></li>
<li data-name="Timestamp#toNumber"><a href="Timestamp.html#toNumber">toNumber</a></li>
<li data-name="Timestamp#toString"><a href="Timestamp.html#toString">toString</a></li>
<li data-name="Timestamp#xor"><a href="Timestamp.html#xor">xor</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="UnorderedBulkOperation">
<span class="title">
<a href="UnorderedBulkOperation.html">UnorderedBulkOperation</a>
</span>
<ul class="members itemMembers">
</ul>
<ul class="typedefs itemMembers">
<span class="subtitle">Typedefs</span>
<li data-name="UnorderedBulkOperation~resultCallback"><a href="UnorderedBulkOperation.html#~resultCallback">resultCallback</a></li>
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="UnorderedBulkOperation#execute"><a href="UnorderedBulkOperation.html#execute">execute</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="WriteConcernError">
<span class="title">
<a href="WriteConcernError.html">WriteConcernError</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="WriteConcernError#code"><a href="WriteConcernError.html#code">code</a></li>
<li data-name="WriteConcernError#errmsg"><a href="WriteConcernError.html#errmsg">errmsg</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="WriteConcernError#toJSON"><a href="WriteConcernError.html#toJSON">toJSON</a></li>
<li data-name="WriteConcernError#toString"><a href="WriteConcernError.html#toString">toString</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
<li class="item" data-name="WriteError">
<span class="title">
<a href="WriteError.html">WriteError</a>
</span>
<ul class="members itemMembers">
<span class="subtitle">Members</span>
<li data-name="WriteError#code"><a href="WriteError.html#code">code</a></li>
<li data-name="WriteError#errmsg"><a href="WriteError.html#errmsg">errmsg</a></li>
<li data-name="WriteError#index"><a href="WriteError.html#index">index</a></li>
</ul>
<ul class="typedefs itemMembers">
</ul>
<ul class="methods itemMembers">
<span class="subtitle">Methods</span>
<li data-name="WriteError#getOperation"><a href="WriteError.html#getOperation">getOperation</a></li>
<li data-name="WriteError#toJSON"><a href="WriteError.html#toJSON">toJSON</a></li>
<li data-name="WriteError#toString"><a href="WriteError.html#toString">toString</a></li>
</ul>
<ul class="events itemMembers">
</ul>
</li>
</ul>
</div>
</td>
<td valign='top'>
<div class="main">
<h1 class="page-title" data-filename="GridFSBucketReadStream.html">Class: GridFSBucketReadStream</h1>
<section>
<header>
<h2>
GridFSBucketReadStream
</h2>
</header>
<article>
<div class="container-overview">
<dt>
<div class="nameContainer">
<h4 class="name" id="GridFSBucketReadStream">
new GridFSBucketReadStream<span class="signature">(chunks, files, readPreference, filter, <span class="optional">options</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{<a href="GridFSBucketReadStream.html">GridFSBucketReadStream</a>}</span>
</h4>
<div class="tag-source">
<a href="lib_gridfs-stream_download.js.html">lib/gridfs-stream/download.js</a>, <a href="lib_gridfs-stream_download.js.html#line28">line 28</a>
</div>
</div>
</dt>
<dd>
<div class="description">
<p>A readable stream that enables you to read buffers from GridFS.</p>
<p>Do not instantiate this class directly. Use <code>openDownloadStream()</code> instead.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>chunks</code></td>
<td class="type">
<span class="param-type"><a href="Collection.html">Collection</a></span>
</td>
<td class="description last">
<p>Handle for chunks collection</p></td>
</tr>
<tr>
<td class="name"><code>files</code></td>
<td class="type">
<span class="param-type"><a href="Collection.html">Collection</a></span>
</td>
<td class="description last">
<p>Handle for files collection</p></td>
</tr>
<tr>
<td class="name"><code>readPreference</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last">
<p>The read preference to use</p></td>
</tr>
<tr>
<td class="name"><code>filter</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last">
<p>The query to use to find the file document</p></td>
</tr>
<tr>
<td class="name"><code>options</code></td>
<td class="type">
<span class="param-type">Object</span>
</td>
<td class="description last">
<span class="optional">optional</span>
<p>Optional settings.</p>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>sort</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last">
<span class="optional">optional</span>
<p>Optional sort for the file find query</p></td>
</tr>
<tr>
<td class="name"><code>skip</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last">
<span class="optional">optional</span>
<p>Optional skip for the file find query</p></td>
</tr>
<tr>
<td class="name"><code>start</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last">
<span class="optional">optional</span>
<p>Optional 0-based offset in bytes to start streaming from</p></td>
</tr>
<tr>
<td class="name"><code>end</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last">
<span class="optional">optional</span>
<p>Optional 0-based offset in bytes to stop streaming before</p></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
<h5>Fires:</h5>
<ul>
<li><a href="GridFSBucketReadStream.html#event:error">GridFSBucketReadStream#event:error</a></li>
<li><a href="GridFSBucketReadStream.html#event:file">GridFSBucketReadStream#event:file</a></li>
</ul>
<h5>Returns:</h5>
GridFSBucketReadStream instance.
<br />
</dd>
</div>
<h3 class="subsection-title">Methods</h3>
<dl>
<dt>
<div class="nameContainer">
<h4 class="name" id="_read">
_read<span class="signature">()</span>
</h4>
<div class="tag-source">
<a href="lib_gridfs-stream_download.js.html">lib/gridfs-stream/download.js</a>, <a href="lib_gridfs-stream_download.js.html#line89">line 89</a>
</div>
</div>
</dt>
<dd>
<div class="description">
<p>Reads from the cursor and pushes to the stream.</p>
</div>
<dl class="details">
</dl>
</dd>
<dt>
<div class="nameContainer">
<h4 class="name" id="abort">
abort<span class="signature">(<span class="optional">callback</span>)</span>
</h4>
<div class="tag-source">
<a href="lib_gridfs-stream_download.js.html">lib/gridfs-stream/download.js</a>, <a href="lib_gridfs-stream_download.js.html#line141">line 141</a>
</div>
</div>
</dt>
<dd>
<div class="description">
<p>Marks this stream as aborted (will never push another <code>data</code> event)<br>
and kills the underlying cursor. Will emit the 'end' event, and then<br>
the 'close' event once the cursor is successfully killed.</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>callback</code></td>
<td class="type">
<span class="param-type"><a href="GridFSBucket.html#~errorCallback">GridFSBucket~errorCallback</a></span>
</td>
<td class="description last">
<span class="optional">optional</span>
<p>called when the cursor is successfully closed or an error occurred.</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
<h5>Fires:</h5>
<ul>
<li>GridFSBucketWriteStream#event:close</li>
<li>GridFSBucketWriteStream#event:end</li>
</ul>
</dd>
<dt>
<div class="nameContainer">
<h4 class="name" id="end">
end<span class="signature">(end)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{<a href="GridFSBucketReadStream.html">GridFSBucketReadStream</a>}</span>
</h4>
<div class="tag-source">
<a href="lib_gridfs-stream_download.js.html">lib/gridfs-stream/download.js</a>, <a href="lib_gridfs-stream_download.js.html#line124">line 124</a>
</div>
</div>
</dt>
<dd>
<div class="description">
<p>Sets the 0-based offset in bytes to start streaming from. Throws<br>
an error if this stream has entered flowing mode<br>
(e.g. if you've already called <code>on('data')</code>)</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>end</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last">
<p>Offset in bytes to stop reading at</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
<dt>
<div class="nameContainer">
<h4 class="name" id="start">
start<span class="signature">(start)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{<a href="GridFSBucketReadStream.html">GridFSBucketReadStream</a>}</span>
</h4>
<div class="tag-source">
<a href="lib_gridfs-stream_download.js.html">lib/gridfs-stream/download.js</a>, <a href="lib_gridfs-stream_download.js.html#line109">line 109</a>
</div>
</div>
</dt>
<dd>
<div class="description">
<p>Sets the 0-based offset in bytes to start streaming from. Throws<br>
an error if this stream has entered flowing mode<br>
(e.g. if you've already called <code>on('data')</code>)</p>
</div>
<table class="params">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th class="last">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="name"><code>start</code></td>
<td class="type">
<span class="param-type">Number</span>
</td>
<td class="description last">
<p>Offset in bytes to start reading at</p></td>
</tr>
</tbody>
</table>
<dl class="details">
</dl>
</dd>
</dl>
<h3 class="subsection-title">Events</h3>
<dl>
<dt>
<div class="nameContainer">
<h4 class="name" id="event:close">
close
</h4>
<div class="tag-source">
<a href="lib_gridfs-stream_download.js.html">lib/gridfs-stream/download.js</a>, <a href="lib_gridfs-stream_download.js.html#line77">line 77</a>
</div>
</div>
</dt>
<dd>
<div class="description">
<p>Fired when the stream is exhausted and the underlying cursor is killed</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">object</span>
</li>
</ul>
<dl class="details">
</dl>
</dd>
<dt>
<div class="nameContainer">
<h4 class="name" id="event:data">
data
</h4>
<div class="tag-source">
<a href="lib_gridfs-stream_download.js.html">lib/gridfs-stream/download.js</a>, <a href="lib_gridfs-stream_download.js.html#line63">line 63</a>
</div>
</div>
</dt>
<dd>
<div class="description">
<p>Emitted when a chunk of data is available to be consumed.</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">object</span>
</li>
</ul>
<dl class="details">
</dl>
</dd>
<dt>
<div class="nameContainer">
<h4 class="name" id="event:end">
end
</h4>
<div class="tag-source">
<a href="lib_gridfs-stream_download.js.html">lib/gridfs-stream/download.js</a>, <a href="lib_gridfs-stream_download.js.html#line70">line 70</a>
</div>
</div>
</dt>
<dd>
<div class="description">
<p>Fired when the stream is exhausted (no more data events).</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">object</span>
</li>
</ul>
<dl class="details">
</dl>
</dd>
<dt>
<div class="nameContainer">
<h4 class="name" id="event:error">
error
</h4>
<div class="tag-source">
<a href="lib_gridfs-stream_download.js.html">lib/gridfs-stream/download.js</a>, <a href="lib_gridfs-stream_download.js.html#line48">line 48</a>
</div>
</div>
</dt>
<dd>
<div class="description">
<p>An error occurred</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">Error</span>
</li>
</ul>
<dl class="details">
</dl>
</dd>
<dt>
<div class="nameContainer">
<h4 class="name" id="event:file">
file
</h4>
<div class="tag-source">
<a href="lib_gridfs-stream_download.js.html">lib/gridfs-stream/download.js</a>, <a href="lib_gridfs-stream_download.js.html#line55">line 55</a>
</div>
</div>
</dt>
<dd>
<div class="description">
<p>Fires when the stream loaded the file document corresponding to the<br>
provided id.</p>
</div>
<h5>Type:</h5>
<ul>
<li>
<span class="param-type">object</span>
</li>
</ul>
<dl class="details">
</dl>
</dd>
</dl>
</article>
</section>
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.6</a> on Wed Jan 20 2021 10:00:48 GMT-0500 (Eastern Standard Time)
</footer>
</div>
</td>
</tr>
</table>
</div>
<script>prettyPrint();</script>
<script src="scripts/linenumber.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>
|
index.html
|
mpizza/torch-demo
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Privileged app</title>
<meta name="description" content="A privileged app stub">
<!--
viewport allows you to control how mobile browsers will render your content.
width=device-width tells mobile browsers to render your content across the
full width of the screen, without being zoomed out (by default it would render
it at a desktop width, then shrink it to fit.)
Read more about it here:
https://developer.mozilla.org/Mozilla/Mobile/Viewport_meta_tag
-->
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/app.css">
<!--
Inline JavaScript code is not allowed for privileged and certified apps,
due to Content Security Policy restrictions.
You can read more about it here: https://developer.mozilla.org/Apps/CSP
Plus keeping your JavaScript separated from your HTML is always a good practice!
We're also using the 'defer' attribute. This allows us to tell the browser that
it should not wait for this file to load before continuing to load the rest of
resources in the page. Then, once everything has been loaded, it will parse and
execute the deferred files.
Read about defer: https://developer.mozilla.org/Web/HTML/Element/script#attr-defer
-->
<script type="text/javascript" src="js/app.js" defer></script>
<!--
The following two lines are for loading the localisations library
and the localisation data-so people can use the app in their
own language (as long as you provide translations).
-->
<link rel="prefetch" type="application/l10n" href="data/locales.ini" />
<script type="text/javascript" src="js/libs/l10n.js" defer></script>
</head>
<body>
<div id="flashLight"></div>
</body>
</html>
|
2017.6.1/apidocs/org/wildfly/swarm/config/infinispan/cache_container/class-use/InvalidationCache.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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 Fri Jun 16 09:55:16 MST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.wildfly.swarm.config.infinispan.cache_container.InvalidationCache (Public javadocs 2017.6.1 API)</title>
<meta name="date" content="2017-06-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 Class org.wildfly.swarm.config.infinispan.cache_container.InvalidationCache (Public javadocs 2017.6.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="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">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.6.1</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/infinispan/cache_container/class-use/InvalidationCache.html" target="_top">Frames</a></li>
<li><a href="InvalidationCache.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.wildfly.swarm.config.infinispan.cache_container.InvalidationCache" class="title">Uses of Class<br>org.wildfly.swarm.config.infinispan.cache_container.InvalidationCache</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/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a></span><span class="tabEnd"> </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.infinispan">org.wildfly.swarm.config.infinispan</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.wildfly.swarm.config.infinispan.cache_container">org.wildfly.swarm.config.infinispan.cache_container</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config.infinispan">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a> in <a href="../../../../../../../org/wildfly/swarm/config/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</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/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</a> that return <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a></span><span class="tabEnd"> </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/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a></code></td>
<td class="colLast"><span class="typeNameLabel">CacheContainer.CacheContainerResources.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/CacheContainer.CacheContainerResources.html#invalidationCache-java.lang.String-">invalidationCache</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> key)</code> </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/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</a> that return types with arguments of type <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a></span><span class="tabEnd"> </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><<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a>></code></td>
<td class="colLast"><span class="typeNameLabel">CacheContainer.CacheContainerResources.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/CacheContainer.CacheContainerResources.html#invalidationCaches--">invalidationCaches</a></span>()</code>
<div class="block">Get the list of InvalidationCache 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/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a></span><span class="tabEnd"> </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/infinispan/CacheContainer.html" title="type parameter in CacheContainer">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">CacheContainer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/CacheContainer.html#invalidationCache-org.wildfly.swarm.config.infinispan.cache_container.InvalidationCache-">invalidationCache</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a> value)</code>
<div class="block">Add the InvalidationCache 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/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</a> with type arguments of type <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a></span><span class="tabEnd"> </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/infinispan/CacheContainer.html" title="type parameter in CacheContainer">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">CacheContainer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/CacheContainer.html#invalidationCaches-java.util.List-">invalidationCaches</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><<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a>> value)</code>
<div class="block">Add all InvalidationCache objects to this subresource</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.wildfly.swarm.config.infinispan.cache_container">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a> in <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/package-summary.html">org.wildfly.swarm.config.infinispan.cache_container</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/infinispan/cache_container/package-summary.html">org.wildfly.swarm.config.infinispan.cache_container</a> with type parameters of type <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a><T extends <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a><T>></span></code>
<div class="block">An invalidation cache</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCacheConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCacheConsumer</a><T extends <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a><T>></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCacheSupplier.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCacheSupplier</a><T extends <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a>></span></code> </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/infinispan/cache_container/package-summary.html">org.wildfly.swarm.config.infinispan.cache_container</a> that return <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a></span><span class="tabEnd"> </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/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">InvalidationCache</a></code></td>
<td class="colLast"><span class="typeNameLabel">InvalidationCacheSupplier.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/InvalidationCacheSupplier.html#get--">get</a></span>()</code>
<div class="block">Constructed instance of InvalidationCache 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/infinispan/cache_container/InvalidationCache.html" title="class in org.wildfly.swarm.config.infinispan.cache_container">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.6.1</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/infinispan/cache_container/class-use/InvalidationCache.html" target="_top">Frames</a></li>
<li><a href="InvalidationCache.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 © 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
docs/solr-core/org/apache/solr/response/class-use/PythonResponseWriter.html
|
rcr-81/SolrCamper
|
<!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 Sun Jun 09 12:16:06 GMT+05:30 2013 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
Uses of Class org.apache.solr.response.PythonResponseWriter (Solr 4.3.1 API)
</TITLE>
<META NAME="date" CONTENT="2013-06-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="Uses of Class org.apache.solr.response.PythonResponseWriter (Solr 4.3.1 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/solr/response/PythonResponseWriter.html" title="class in org.apache.solr.response"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/solr/response//class-usePythonResponseWriter.html" target="_top"><B>FRAMES</B></A>
<A HREF="PythonResponseWriter.html" target="_top"><B>NO FRAMES</B></A>
<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.solr.response.PythonResponseWriter</B></H2>
</CENTER>
No usage of org.apache.solr.response.PythonResponseWriter
<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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/apache/solr/response/PythonResponseWriter.html" title="class in org.apache.solr.response"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/solr/response//class-usePythonResponseWriter.html" target="_top"><B>FRAMES</B></A>
<A HREF="PythonResponseWriter.html" target="_top"><B>NO FRAMES</B></A>
<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 © 2000-2013 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>
</BODY>
</HTML>
|
angular-item/pop-site/member/cost.html
|
Binlu/myFunc
|
<!-- 收费一览 -->
<div class="detail-section honours-section">
<div class="section charge-standard">
<div class="title-contain">
<div class="title-box">
<strong>收费一览</strong>
</div>
</div>
<table border="1" cellspacing="0px" bordercolor="#B6B6B6">
<tr>
<th style="width:25%;">会员类型</th>
<th style="width:50%;">会员享有的权限</th>
<th style="width:25%;">收费价格</th>
</tr>
<tr>
<td>免费会员</td>
<td>在没有付费成为VIP会员前,您只可以浏览到<br>网站里的个别小图,无权浏览和下载高清大图</td>
<td>免费</td>
</tr>
</table>
<table border="1" cellspacing="0px" bordercolor="#B6B6B6">
<tr>
<th style="width:25%;">会员类型</th>
<th style="width:50%;">会员享有的权限</th>
<th style="width:25%;">收费价格</th>
</tr>
<tr>
<td>VIP会员</td>
<td>即:包年会员。在一年365天内可以无限制的浏览网站里所有的资料<br>(因POP旗下每个站点提供的服务不同,<br>具体某个网站包年会员以合同中标注享有的权限为准!)。</td>
<td>请咨询上海总部:<br><strong>4008-210-500</strong><br><strong>18301955545</strong></td>
</tr>
</table>
<p class="table-info">POP网站集群现有 <strong>4300多万</strong> 的流行类款式图片,并且每天(除周日和国定假)增加 <strong>近万</strong> 张最新款式图片。<br>POP(全球)时尚网络机构旗下有五个网站,全方位为VIP会员提供优质及时的流行款式和资讯。</p>
<p><em>POP服装趋势网</em> POP服装趋势网 <a href="http://www.pop-fashion.com/" title="服饰">www.pop-fashion.com</a> 图片总数 <strong>1434余万</strong> ,每天更新 <strong>10000多个</strong> 新款图片。(全部是最新的资料)</p>
<p><em>POP鞋子趋势网</em> POP鞋子趋势网 <a href="http://www.pop-shoe.com/" title="鞋子">www.pop-shoe.com</a> 图片总数 <strong>731余万</strong> ,每天更新 <strong>5000多个</strong> 新款图片。(全部是最新的资料)</p>
<p><em>POP首饰趋势网</em> POP首饰趋势网 <a href="http://www.51shoushi.com/" title="首饰">www.51shoushi.com</a> 图片总数 <strong>489余万</strong> ,每天更新 <strong>1000多个</strong> 新款图片。(全部是最新的资料)</p>
<p><em>POP箱包趋势网</em> POP箱包趋势网 <a href="http://www.pop-bags.com/" title="箱包">www.pop-bags.com</a> 图片总数 <strong>751余万</strong> ,每天更新 <strong>5000多个</strong> 新款图片。(全部是最新的资料)</p>
<p><em>POP家纺趋势网</em> POP家纺趋势网 <a href="http://www.91jiafang.com/" title="家纺">www.91jiafang.com</a> 图片总数 <strong>329余万</strong> ,每天更新 <strong>1000多个</strong> 新款图片。(全部是最新的资料)</p>
</div>
</div>
|
src/main/webapp/content/css/main.css
|
quanticc/sentry
|
html {
position: relative;
min-height: 100%;
}
body {
background: #fafafa;
font-family: "Oxygen", sans-serif;
color: #333;
margin-bottom: 60px;
}
@media screen and (min-width: 1600px) {
.container {
width: 1570px;
}
}
.flow {
float: left;
}
.gray {
color: gray;
}
.red {
color: #bb0000;
}
.no-padding > tbody > tr > td {
padding: 0;
}
.smaller-font {
font-size: 13px;
}
.alert {
padding-left: 10px;
}
.help-toggle {
color: #39c;
}
/* ==========================================================================
Hide ng-cloak on page load, https://docs.angularjs.org/api/ng/directive/ngCloak
========================================================================== */
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
display: none !important;
}
/* ==========================================================================
Development Ribbon
========================================================================== */
.ribbon {
background-color: #a00;
box-shadow: 0 0 10px #888;
left: -3.5em;
moz-box-shadow: 0 0 10px #888;
moz-transform: rotate(-45deg);
ms-transform: rotate(-45deg);
o-transform: rotate(-45deg);
overflow: hidden;
position: absolute;
/*top: 40px;*/
transform: rotate(-45deg);
webkit-box-shadow: 0 0 10px #888;
webkit-transform: rotate(-45deg);
white-space: nowrap;
/*width: 15em;*/
z-index: 9999;
pointer-events: none;
}
.ribbon a {
border: 1px solid #faa;
color: #fff;
display: block;
font: bold 81.25% 'Helvetica Neue', Helvetica, Arial, sans-serif;
margin: 1px 0;
padding: 10px 50px;
text-align: center;
text-decoration: none;
text-shadow: 0 0 5px #444;
pointer-events: none;
}
/* ==========================================================================
Version number in navbar
========================================================================== */
.navbar-version {
font-size: 10px;
color: #ccc
}
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* ==========================================================================
Logo styles
========================================================================== */
.navbar-brand.logo {
padding: 5px 15px;
}
.logo .logo-img {
height: 45px;
display: inline-block;
}
/* ==========================================================================
Main page styles
========================================================================== */
.hero-unit {
margin: 50px auto 0 auto;
width: 300px;
font-size: 18px;
font-weight: 200;
line-height: 30px;
background-color: #eee;
border-radius: 6px;
padding: 60px;
}
.hero-unit h1 {
font-size: 60px;
line-height: 1;
letter-spacing: -1px;
}
/* ==========================================================================
Generic styles
========================================================================== */
.error {
color: white;
background-color: red;
}
.pad {
padding: 10px;
}
.break {
white-space: normal;
word-break:break-all;
}
.voffset { margin-top: 2px; }
.voffset1 { margin-top: 5px; }
.voffset2 { margin-top: 10px; }
.voffset3 { margin-top: 15px; }
.voffset4 { margin-top: 30px; }
.voffset5 { margin-top: 40px; }
.voffset6 { margin-top: 60px; }
.voffset7 { margin-top: 80px; }
.voffset8 { margin-top: 100px; }
.voffset9 { margin-top: 150px; }
.readonly {
background-color: #eee;
opacity: 1;
}
/* ==========================================================================
make sure browsers use the pointer cursor for anchors, even with no href
========================================================================== */
a:hover {
cursor: pointer;
}
.hand {
cursor: pointer;
}
/* ==========================================================================
Metrics and Health styles
========================================================================== */
#threadDump .popover, #healthCheck .popover {
top: inherit;
display: block;
font-size: 10px;
max-width: 1024px;
}
#healthCheck .popover {
margin-left: -50px;
}
.health-details {
min-width: 400px;
}
/* ==========================================================================
start Password strength bar style
========================================================================== */
ul#strengthBar {
display:inline;
list-style:none;
margin:0;
margin-left:15px;
padding:0;
vertical-align:2px;
}
.point:last {
margin:0 !important;
}
.point {
background:#DDD;
border-radius:2px;
display:inline-block;
height:5px;
margin-right:1px;
width:20px;
}
/* ==========================================================================
Custom alerts for notification
========================================================================== */
.alerts .alert{
text-overflow: ellipsis;
}
.alert pre{
background: none;
border: none;
font: inherit;
color: inherit;
padding: 0;
margin: 0;
}
.alert .popover pre {
font-size: 10px;
}
.alerts .toast {
position: fixed;
width: 100%;
}
.alerts .toast.left {
left: 5px;
}
.alerts .toast.right {
right: 5px;
}
.alerts .toast.top {
top: 55px;
}
.alerts .toast.bottom {
bottom: 55px;
}
@media screen and (min-width: 480px) {
.alerts .toast {
width: 50%;
}
}
/* ==========================================================================
entity tables helpers
========================================================================== */
/* Remove Bootstrap padding from the element
http://stackoverflow.com/questions/19562903/remove-padding-from-columns-in-bootstrap-3 */
.no-padding-left { padding-left: 0 !important; }
.no-padding-right { padding-right: 0 !important; }
.no-padding-top { padding-top: 0 !important; }
.no-padding-bottom { padding-bottom: 0 !important; }
.no-padding { padding: 0 !important; }
/* bootstrap 3 input-group 100% width
http://stackoverflow.com/questions/23436430/bootstrap-3-input-group-100-width */
.width-min { width: 1% !important; }
/* Makes toolbar not wrap on smaller screens
http://www.sketchingwithcss.com/samplechapter/cheatsheet.html#right */
.flex-btn-group-container {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
-webkit-justify-content: flex-end;
justify-content: flex-end;
}
.jh-table > tbody > tr > td {
/* Align text in td vertically (top aligned by Bootstrap) */
vertical-align: middle;
}
.jh-table > thead > tr > th > .glyphicon-sort, .jh-table > thead > tr > th > .glyphicon-sort-by-attributes, .jh-table > thead > tr > th > .glyphicon-sort-by-attributes-alt {
/* less visible sorting icons */
opacity: 0.5;
}
.jh-table > thead > tr > th > .glyphicon-sort:hover, .jh-table > thead > tr > th > .glyphicon-sort-by-attributes:hover, .jh-table > thead > tr > th > .glyphicon-sort-by-attributes-alt:hover {
/* full visible sorting icons and pointer when mouse is over them */
opacity: 1;
cursor: pointer;
}
/* ==========================================================================
entity detail page css
========================================================================== */
.dl-horizontal.jh-entity-details > dd {
margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
.dl-horizontal.jh-entity-details > dt {
margin-bottom: 15px;
}
.dl-horizontal.jh-entity-details > dd {
border-bottom: 1px solid #eee;
padding-left: 180px;
margin-left: 0;
}
}
/* ==========================================================================
ui bootstrap tweaks
========================================================================== */
.nav, .pagination, .carousel, .panel-title a {
cursor: pointer;
}
.datetime-picker-dropdown > li.date-picker-menu div > table .btn-default,
.uib-datepicker-popup > li > div.uib-datepicker > table .btn-default {
border: 0;
}
.datetime-picker-dropdown > li.date-picker-menu div > table:focus,
.uib-datepicker-popup > li > div.uib-datepicker > table:focus {
outline: none;
}
/* ==========================================================================
Social Buttons
========================================================================== */
.jh-btn-social {
margin-bottom: 5px;
}
.jh-btn-google {
background-color: #dd4b39;
border-color: rgba(0, 0, 0, 0.2);
color: #fff;
}
.jh-btn-google:hover, .jh-btn-google:focus, .jh-btn-google:active, .jh-btn-google.active, .open > .dropdown-toggle.jh-btn-google {
background-color: #c23321;
border-color: rgba(0, 0, 0, 0.2);
color: #fff;
}
.jh-btn-facebook {
background-color: #3b5998;
border-color: rgba(0, 0, 0, 0.2);
color: #fff;
}
.jh-btn-facebook:hover, .jh-btn-facebook:focus, .jh-btn-facebook:active, .jh-btn-facebook.active, .open > .dropdown-toggle.jh-btn-facebook {
background-color: #2d4373;
border-color: rgba(0, 0, 0, 0.2);
color: #fff;
}
.jh-btn-twitter {
background-color: #55acee;
border-color: rgba(0, 0, 0, 0.2);
color: #fff;
}
.jh-btn-twitter:hover, .jh-btn-twitter:focus, .jh-btn-twitter:active, .jh-btn-twitter.active, .open > .dropdown-toggle.jh-btn-twitter {
background-color: #2795e9;
border-color: rgba(0, 0, 0, 0.2);
color: #fff;
}
.jh-btn-discord {
background-color: #7289da;
border-color: rgba(0, 0, 0, 0.2);
color: #fff;
}
.jh-btn-discord:hover, .jh-btn-discord:focus, .jh-btn-discord:active, .jh-btn-discord.active, .open > .dropdown-toggle.jh-btn-discord {
background-color: #4a67cf;
border-color: rgba(0, 0, 0, 0.2);
color: #fff;
}
.btn-clean {
padding: 0 6px 0 6px;
border-top-width: 0;
border-bottom-width: 0;
}
.btn-clean:hover {
text-decoration: none;
}
.frm-clean {
padding: 15px;
}
.profile-image {
height: 20px;
width: 20px;
line-height: 20px;
}
.no-border {
border-radius: 0;
}
.logo-anim {
filter: brightness(1) hue-rotate(0deg);
transition: 1s linear;
}
.logo-anim:hover {
filter: brightness(1.5) hue-rotate(270deg);
}
.dashboard-discord-logo {
width: 5em;
margin-bottom: 0.2em;
}
.dashboard-circle {
width: 100%;
border: 2px #ccc solid;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 40px;
padding-top: 6px;
background-color: #333;
color: #fff;
}
.version {
font-size: 10px;
}
.discord {
color: white;
}
.discord:hover {
color: #7289da;
}
.github {
color: white;
}
.github:hover {
color: black;
}
/* jhipster-needle-css-add-main JHipster will add new css style */
|
_libs/yui-3.18.1/api/modules/series-area.html
|
mabetle/mps
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>series-area - YUI 3</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
<link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
<link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
<link rel="shortcut icon" type="image/png" href="../assets/favicon.png">
<script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
</head>
<body class="yui3-skin-sam">
<div id="doc">
<div id="hd" class="yui3-g header">
<div class="yui3-u-3-4">
<h1><img src="../assets/css/logo.png" title="YUI 3"></h1>
</div>
<div class="yui3-u-1-4 version">
<em>API Docs for: 3.18.1</em>
</div>
</div>
<div id="bd" class="yui3-g">
<div class="yui3-u-1-4">
<div id="docs-sidebar" class="sidebar apidocs">
<div id="api-list">
<h2 class="off-left">APIs</h2>
<div id="api-tabview" class="tabview">
<ul class="tabs">
<li><a href="#api-classes">Classes</a></li>
<li><a href="#api-modules">Modules</a></li>
</ul>
<div id="api-tabview-filter">
<input type="search" id="api-filter" placeholder="Type to filter APIs">
</div>
<div id="api-tabview-panel">
<ul id="api-classes" class="apis classes">
<li><a href="../classes/Anim.html">Anim</a></li>
<li><a href="../classes/App.html">App</a></li>
<li><a href="../classes/App.Base.html">App.Base</a></li>
<li><a href="../classes/App.Content.html">App.Content</a></li>
<li><a href="../classes/App.Transitions.html">App.Transitions</a></li>
<li><a href="../classes/App.TransitionsNative.html">App.TransitionsNative</a></li>
<li><a href="../classes/AreaSeries.html">AreaSeries</a></li>
<li><a href="../classes/AreaSplineSeries.html">AreaSplineSeries</a></li>
<li><a href="../classes/Array.html">Array</a></li>
<li><a href="../classes/ArrayList.html">ArrayList</a></li>
<li><a href="../classes/ArraySort.html">ArraySort</a></li>
<li><a href="../classes/AsyncQueue.html">AsyncQueue</a></li>
<li><a href="../classes/Attribute.html">Attribute</a></li>
<li><a href="../classes/AttributeCore.html">AttributeCore</a></li>
<li><a href="../classes/AttributeEvents.html">AttributeEvents</a></li>
<li><a href="../classes/AttributeExtras.html">AttributeExtras</a></li>
<li><a href="../classes/AttributeLite.html">AttributeLite</a></li>
<li><a href="../classes/AttributeObservable.html">AttributeObservable</a></li>
<li><a href="../classes/AutoComplete.html">AutoComplete</a></li>
<li><a href="../classes/AutoCompleteBase.html">AutoCompleteBase</a></li>
<li><a href="../classes/AutoCompleteFilters.html">AutoCompleteFilters</a></li>
<li><a href="../classes/AutoCompleteHighlighters.html">AutoCompleteHighlighters</a></li>
<li><a href="../classes/AutoCompleteList.html">AutoCompleteList</a></li>
<li><a href="../classes/Axis.html">Axis</a></li>
<li><a href="../classes/AxisBase.html">AxisBase</a></li>
<li><a href="../classes/BarSeries.html">BarSeries</a></li>
<li><a href="../classes/Base.html">Base</a></li>
<li><a href="../classes/BaseCore.html">BaseCore</a></li>
<li><a href="../classes/BaseObservable.html">BaseObservable</a></li>
<li><a href="../classes/BottomAxisLayout.html">BottomAxisLayout</a></li>
<li><a href="../classes/Button.html">Button</a></li>
<li><a href="../classes/ButtonCore.html">ButtonCore</a></li>
<li><a href="../classes/ButtonGroup.html">ButtonGroup</a></li>
<li><a href="../classes/Cache.html">Cache</a></li>
<li><a href="../classes/CacheOffline.html">CacheOffline</a></li>
<li><a href="../classes/Calendar.html">Calendar</a></li>
<li><a href="../classes/CalendarBase.html">CalendarBase</a></li>
<li><a href="../classes/CandlestickSeries.html">CandlestickSeries</a></li>
<li><a href="../classes/CanvasCircle.html">CanvasCircle</a></li>
<li><a href="../classes/CanvasDrawing.html">CanvasDrawing</a></li>
<li><a href="../classes/CanvasEllipse.html">CanvasEllipse</a></li>
<li><a href="../classes/CanvasGraphic.html">CanvasGraphic</a></li>
<li><a href="../classes/CanvasPath.html">CanvasPath</a></li>
<li><a href="../classes/CanvasPieSlice.html">CanvasPieSlice</a></li>
<li><a href="../classes/CanvasRect.html">CanvasRect</a></li>
<li><a href="../classes/CanvasShape.html">CanvasShape</a></li>
<li><a href="../classes/CartesianChart.html">CartesianChart</a></li>
<li><a href="../classes/CartesianSeries.html">CartesianSeries</a></li>
<li><a href="../classes/CategoryAxis.html">CategoryAxis</a></li>
<li><a href="../classes/CategoryAxisBase.html">CategoryAxisBase</a></li>
<li><a href="../classes/CategoryImpl.html">CategoryImpl</a></li>
<li><a href="../classes/Chart.html">Chart</a></li>
<li><a href="../classes/ChartBase.html">ChartBase</a></li>
<li><a href="../classes/ChartLegend.html">ChartLegend</a></li>
<li><a href="../classes/Circle.html">Circle</a></li>
<li><a href="../classes/CircleGroup.html">CircleGroup</a></li>
<li><a href="../classes/ClassNameManager.html">ClassNameManager</a></li>
<li><a href="../classes/ClickableRail.html">ClickableRail</a></li>
<li><a href="../classes/Color.html">Color</a></li>
<li><a href="../classes/Color.Harmony.html">Color.Harmony</a></li>
<li><a href="../classes/Color.HSL.html">Color.HSL</a></li>
<li><a href="../classes/Color.HSV.html">Color.HSV</a></li>
<li><a href="../classes/ColumnSeries.html">ColumnSeries</a></li>
<li><a href="../classes/ComboSeries.html">ComboSeries</a></li>
<li><a href="../classes/ComboSplineSeries.html">ComboSplineSeries</a></li>
<li><a href="../classes/config.html">config</a></li>
<li><a href="../classes/Console.html">Console</a></li>
<li><a href="../classes/ContentEditable.html">ContentEditable</a></li>
<li><a href="../classes/Controller.html">Controller</a></li>
<li><a href="../classes/Cookie.html">Cookie</a></li>
<li><a href="../classes/CurveUtil.html">CurveUtil</a></li>
<li><a href="../classes/CustomEvent.html">CustomEvent</a></li>
<li><a href="../classes/DataSchema.Array.html">DataSchema.Array</a></li>
<li><a href="../classes/DataSchema.Base.html">DataSchema.Base</a></li>
<li><a href="../classes/DataSchema.JSON.html">DataSchema.JSON</a></li>
<li><a href="../classes/DataSchema.Text.html">DataSchema.Text</a></li>
<li><a href="../classes/DataSchema.XML.html">DataSchema.XML</a></li>
<li><a href="../classes/DataSource.Function.html">DataSource.Function</a></li>
<li><a href="../classes/DataSource.Get.html">DataSource.Get</a></li>
<li><a href="../classes/DataSource.IO.html">DataSource.IO</a></li>
<li><a href="../classes/DataSource.Local.html">DataSource.Local</a></li>
<li><a href="../classes/DataSourceArraySchema.html">DataSourceArraySchema</a></li>
<li><a href="../classes/DataSourceCache.html">DataSourceCache</a></li>
<li><a href="../classes/DataSourceCacheExtension.html">DataSourceCacheExtension</a></li>
<li><a href="../classes/DataSourceJSONSchema.html">DataSourceJSONSchema</a></li>
<li><a href="../classes/DataSourceTextSchema.html">DataSourceTextSchema</a></li>
<li><a href="../classes/DataSourceXMLSchema.html">DataSourceXMLSchema</a></li>
<li><a href="../classes/DataTable.html">DataTable</a></li>
<li><a href="../classes/DataTable.Base.html">DataTable.Base</a></li>
<li><a href="../classes/DataTable.BodyView.html">DataTable.BodyView</a></li>
<li><a href="../classes/DataTable.BodyView.Formatters.html">DataTable.BodyView.Formatters</a></li>
<li><a href="../classes/DataTable.Column.html">DataTable.Column</a></li>
<li><a href="../classes/DataTable.ColumnWidths.html">DataTable.ColumnWidths</a></li>
<li><a href="../classes/DataTable.Core.html">DataTable.Core</a></li>
<li><a href="../classes/DataTable.HeaderView.html">DataTable.HeaderView</a></li>
<li><a href="../classes/DataTable.Highlight.html">DataTable.Highlight</a></li>
<li><a href="../classes/DataTable.KeyNav.html">DataTable.KeyNav</a></li>
<li><a href="../classes/DataTable.Message.html">DataTable.Message</a></li>
<li><a href="../classes/DataTable.Mutable.html">DataTable.Mutable</a></li>
<li><a href="../classes/DataTable.Paginator.html">DataTable.Paginator</a></li>
<li><a href="../classes/DataTable.Paginator.Model.html">DataTable.Paginator.Model</a></li>
<li><a href="../classes/DataTable.Paginator.View.html">DataTable.Paginator.View</a></li>
<li><a href="../classes/DataTable.Scrollable.html">DataTable.Scrollable</a></li>
<li><a href="../classes/DataTable.Sortable.html">DataTable.Sortable</a></li>
<li><a href="../classes/DataTable.TableView.html">DataTable.TableView</a></li>
<li><a href="../classes/Date.html">Date</a></li>
<li><a href="../classes/DD.DDM.html">DD.DDM</a></li>
<li><a href="../classes/DD.Delegate.html">DD.Delegate</a></li>
<li><a href="../classes/DD.Drag.html">DD.Drag</a></li>
<li><a href="../classes/DD.Drop.html">DD.Drop</a></li>
<li><a href="../classes/DD.Scroll.html">DD.Scroll</a></li>
<li><a href="../classes/Dial.html">Dial</a></li>
<li><a href="../classes/Do.html">Do</a></li>
<li><a href="../classes/Do.AlterArgs.html">Do.AlterArgs</a></li>
<li><a href="../classes/Do.AlterReturn.html">Do.AlterReturn</a></li>
<li><a href="../classes/Do.Error.html">Do.Error</a></li>
<li><a href="../classes/Do.Halt.html">Do.Halt</a></li>
<li><a href="../classes/Do.Method.html">Do.Method</a></li>
<li><a href="../classes/Do.Prevent.html">Do.Prevent</a></li>
<li><a href="../classes/DOM.html">DOM</a></li>
<li><a href="../classes/DOMEventFacade.html">DOMEventFacade</a></li>
<li><a href="../classes/Drawing.html">Drawing</a></li>
<li><a href="../classes/Easing.html">Easing</a></li>
<li><a href="../classes/EditorBase.html">EditorBase</a></li>
<li><a href="../classes/EditorSelection.html">EditorSelection</a></li>
<li><a href="../classes/Ellipse.html">Ellipse</a></li>
<li><a href="../classes/EllipseGroup.html">EllipseGroup</a></li>
<li><a href="../classes/Escape.html">Escape</a></li>
<li><a href="../classes/Event.html">Event</a></li>
<li><a href="../classes/EventFacade.html">EventFacade</a></li>
<li><a href="../classes/EventHandle.html">EventHandle</a></li>
<li><a href="../classes/EventTarget.html">EventTarget</a></li>
<li><a href="../classes/Features.html">Features</a></li>
<li><a href="../classes/File.html">File</a></li>
<li><a href="../classes/FileFlash.html">FileFlash</a></li>
<li><a href="../classes/FileHTML5.html">FileHTML5</a></li>
<li><a href="../classes/Fills.html">Fills</a></li>
<li><a href="../classes/Frame.html">Frame</a></li>
<li><a href="../classes/Get.html">Get</a></li>
<li><a href="../classes/Get.Transaction.html">Get.Transaction</a></li>
<li><a href="../classes/GetNodeJS.html">GetNodeJS</a></li>
<li><a href="../classes/Graph.html">Graph</a></li>
<li><a href="../classes/Graphic.html">Graphic</a></li>
<li><a href="../classes/GraphicBase.html">GraphicBase</a></li>
<li><a href="../classes/Gridlines.html">Gridlines</a></li>
<li><a href="../classes/GroupDiamond.html">GroupDiamond</a></li>
<li><a href="../classes/GroupRect.html">GroupRect</a></li>
<li><a href="../classes/Handlebars.html">Handlebars</a></li>
<li><a href="../classes/Highlight.html">Highlight</a></li>
<li><a href="../classes/Histogram.html">Histogram</a></li>
<li><a href="../classes/HistoryBase.html">HistoryBase</a></li>
<li><a href="../classes/HistoryHash.html">HistoryHash</a></li>
<li><a href="../classes/HistoryHTML5.html">HistoryHTML5</a></li>
<li><a href="../classes/HorizontalLegendLayout.html">HorizontalLegendLayout</a></li>
<li><a href="../classes/ImgLoadGroup.html">ImgLoadGroup</a></li>
<li><a href="../classes/ImgLoadImgObj.html">ImgLoadImgObj</a></li>
<li><a href="../classes/InlineEditor.html">InlineEditor</a></li>
<li><a href="../classes/Intl.html">Intl</a></li>
<li><a href="../classes/IO.html">IO</a></li>
<li><a href="../classes/JSON.html">JSON</a></li>
<li><a href="../classes/JSONPRequest.html">JSONPRequest</a></li>
<li><a href="../classes/Lang.html">Lang</a></li>
<li><a href="../classes/LazyModelList.html">LazyModelList</a></li>
<li><a href="../classes/LeftAxisLayout.html">LeftAxisLayout</a></li>
<li><a href="../classes/Lines.html">Lines</a></li>
<li><a href="../classes/LineSeries.html">LineSeries</a></li>
<li><a href="../classes/Loader.html">Loader</a></li>
<li><a href="../classes/MarkerSeries.html">MarkerSeries</a></li>
<li><a href="../classes/Matrix.html">Matrix</a></li>
<li><a href="../classes/MatrixUtil.html">MatrixUtil</a></li>
<li><a href="../classes/Model.html">Model</a></li>
<li><a href="../classes/ModelList.html">ModelList</a></li>
<li><a href="../classes/ModelSync.Local.html">ModelSync.Local</a></li>
<li><a href="../classes/ModelSync.REST.html">ModelSync.REST</a></li>
<li><a href="../classes/Node.html">Node</a></li>
<li><a href="../classes/NodeList.html">NodeList</a></li>
<li><a href="../classes/Number.html">Number</a></li>
<li><a href="../classes/NumericAxis.html">NumericAxis</a></li>
<li><a href="../classes/NumericAxisBase.html">NumericAxisBase</a></li>
<li><a href="../classes/NumericImpl.html">NumericImpl</a></li>
<li><a href="../classes/Object.html">Object</a></li>
<li><a href="../classes/OHLCSeries.html">OHLCSeries</a></li>
<li><a href="../classes/Overlay.html">Overlay</a></li>
<li><a href="../classes/Paginator.html">Paginator</a></li>
<li><a href="../classes/Paginator.Core.html">Paginator.Core</a></li>
<li><a href="../classes/Paginator.Url.html">Paginator.Url</a></li>
<li><a href="../classes/Panel.html">Panel</a></li>
<li><a href="../classes/Parallel.html">Parallel</a></li>
<li><a href="../classes/Path.html">Path</a></li>
<li><a href="../classes/PieChart.html">PieChart</a></li>
<li><a href="../classes/PieSeries.html">PieSeries</a></li>
<li><a href="../classes/Pjax.html">Pjax</a></li>
<li><a href="../classes/PjaxBase.html">PjaxBase</a></li>
<li><a href="../classes/PjaxContent.html">PjaxContent</a></li>
<li><a href="../classes/Plots.html">Plots</a></li>
<li><a href="../classes/Plugin.Align.html">Plugin.Align</a></li>
<li><a href="../classes/Plugin.AutoComplete.html">Plugin.AutoComplete</a></li>
<li><a href="../classes/Plugin.Base.html">Plugin.Base</a></li>
<li><a href="../classes/Plugin.Button.html">Plugin.Button</a></li>
<li><a href="../classes/Plugin.Cache.html">Plugin.Cache</a></li>
<li><a href="../classes/Plugin.CalendarNavigator.html">Plugin.CalendarNavigator</a></li>
<li><a href="../classes/Plugin.ConsoleFilters.html">Plugin.ConsoleFilters</a></li>
<li><a href="../classes/Plugin.CreateLinkBase.html">Plugin.CreateLinkBase</a></li>
<li><a href="../classes/Plugin.DataTableDataSource.html">Plugin.DataTableDataSource</a></li>
<li><a href="../classes/Plugin.DDConstrained.html">Plugin.DDConstrained</a></li>
<li><a href="../classes/Plugin.DDNodeScroll.html">Plugin.DDNodeScroll</a></li>
<li><a href="../classes/Plugin.DDProxy.html">Plugin.DDProxy</a></li>
<li><a href="../classes/Plugin.DDWindowScroll.html">Plugin.DDWindowScroll</a></li>
<li><a href="../classes/Plugin.Drag.html">Plugin.Drag</a></li>
<li><a href="../classes/Plugin.Drop.html">Plugin.Drop</a></li>
<li><a href="../classes/Plugin.EditorBidi.html">Plugin.EditorBidi</a></li>
<li><a href="../classes/Plugin.EditorBR.html">Plugin.EditorBR</a></li>
<li><a href="../classes/Plugin.EditorLists.html">Plugin.EditorLists</a></li>
<li><a href="../classes/Plugin.EditorPara.html">Plugin.EditorPara</a></li>
<li><a href="../classes/Plugin.EditorParaBase.html">Plugin.EditorParaBase</a></li>
<li><a href="../classes/Plugin.EditorParaIE.html">Plugin.EditorParaIE</a></li>
<li><a href="../classes/Plugin.EditorTab.html">Plugin.EditorTab</a></li>
<li><a href="../classes/Plugin.ExecCommand.html">Plugin.ExecCommand</a></li>
<li><a href="../classes/Plugin.ExecCommand.COMMANDS.html">Plugin.ExecCommand.COMMANDS</a></li>
<li><a href="../classes/Plugin.Flick.html">Plugin.Flick</a></li>
<li><a href="../classes/Plugin.Host.html">Plugin.Host</a></li>
<li><a href="../classes/plugin.NodeFocusManager.html">plugin.NodeFocusManager</a></li>
<li><a href="../classes/Plugin.NodeFX.html">Plugin.NodeFX</a></li>
<li><a href="../classes/plugin.NodeMenuNav.html">plugin.NodeMenuNav</a></li>
<li><a href="../classes/Plugin.Pjax.html">Plugin.Pjax</a></li>
<li><a href="../classes/Plugin.Resize.html">Plugin.Resize</a></li>
<li><a href="../classes/Plugin.ResizeConstrained.html">Plugin.ResizeConstrained</a></li>
<li><a href="../classes/Plugin.ResizeProxy.html">Plugin.ResizeProxy</a></li>
<li><a href="../classes/Plugin.ScrollInfo.html">Plugin.ScrollInfo</a></li>
<li><a href="../classes/Plugin.ScrollViewList.html">Plugin.ScrollViewList</a></li>
<li><a href="../classes/Plugin.ScrollViewPaginator.html">Plugin.ScrollViewPaginator</a></li>
<li><a href="../classes/Plugin.ScrollViewScrollbars.html">Plugin.ScrollViewScrollbars</a></li>
<li><a href="../classes/Plugin.Shim.html">Plugin.Shim</a></li>
<li><a href="../classes/Plugin.SortScroll.html">Plugin.SortScroll</a></li>
<li><a href="../classes/Plugin.Tree.Lazy.html">Plugin.Tree.Lazy</a></li>
<li><a href="../classes/Plugin.WidgetAnim.html">Plugin.WidgetAnim</a></li>
<li><a href="../classes/Pollable.html">Pollable</a></li>
<li><a href="../classes/Promise.html">Promise</a></li>
<li><a href="../classes/Promise.Resolver.html">Promise.Resolver</a></li>
<li><a href="../classes/QueryString.html">QueryString</a></li>
<li><a href="../classes/Queue.html">Queue</a></li>
<li><a href="../classes/RangeSeries.html">RangeSeries</a></li>
<li><a href="../classes/Record.html">Record</a></li>
<li><a href="../classes/Recordset.html">Recordset</a></li>
<li><a href="../classes/RecordsetFilter.html">RecordsetFilter</a></li>
<li><a href="../classes/RecordsetIndexer.html">RecordsetIndexer</a></li>
<li><a href="../classes/RecordsetSort.html">RecordsetSort</a></li>
<li><a href="../classes/Rect.html">Rect</a></li>
<li><a href="../classes/Renderer.html">Renderer</a></li>
<li><a href="../classes/Resize.html">Resize</a></li>
<li><a href="../classes/RightAxisLayout.html">RightAxisLayout</a></li>
<li><a href="../classes/Router.html">Router</a></li>
<li><a href="../classes/ScrollView.html">ScrollView</a></li>
<li><a href="../classes/Selector.html">Selector</a></li>
<li><a href="../classes/SeriesBase.html">SeriesBase</a></li>
<li><a href="../classes/Shape.html">Shape</a></li>
<li><a href="../classes/ShapeGroup.html">ShapeGroup</a></li>
<li><a href="../classes/Slider.html">Slider</a></li>
<li><a href="../classes/SliderBase.html">SliderBase</a></li>
<li><a href="../classes/SliderValueRange.html">SliderValueRange</a></li>
<li><a href="../classes/Sortable.html">Sortable</a></li>
<li><a href="../classes/SplineSeries.html">SplineSeries</a></li>
<li><a href="../classes/StackedAreaSeries.html">StackedAreaSeries</a></li>
<li><a href="../classes/StackedAreaSplineSeries.html">StackedAreaSplineSeries</a></li>
<li><a href="../classes/StackedAxis.html">StackedAxis</a></li>
<li><a href="../classes/StackedAxisBase.html">StackedAxisBase</a></li>
<li><a href="../classes/StackedBarSeries.html">StackedBarSeries</a></li>
<li><a href="../classes/StackedColumnSeries.html">StackedColumnSeries</a></li>
<li><a href="../classes/StackedComboSeries.html">StackedComboSeries</a></li>
<li><a href="../classes/StackedComboSplineSeries.html">StackedComboSplineSeries</a></li>
<li><a href="../classes/StackedImpl.html">StackedImpl</a></li>
<li><a href="../classes/StackedLineSeries.html">StackedLineSeries</a></li>
<li><a href="../classes/StackedMarkerSeries.html">StackedMarkerSeries</a></li>
<li><a href="../classes/StackedSplineSeries.html">StackedSplineSeries</a></li>
<li><a href="../classes/StackingUtil.html">StackingUtil</a></li>
<li><a href="../classes/State.html">State</a></li>
<li><a href="../classes/StyleSheet.html">StyleSheet</a></li>
<li><a href="../classes/Subscriber.html">Subscriber</a></li>
<li><a href="../classes/SVGCircle.html">SVGCircle</a></li>
<li><a href="../classes/SVGDrawing.html">SVGDrawing</a></li>
<li><a href="../classes/SVGEllipse.html">SVGEllipse</a></li>
<li><a href="../classes/SVGGraphic.html">SVGGraphic</a></li>
<li><a href="../classes/SVGPath.html">SVGPath</a></li>
<li><a href="../classes/SVGPieSlice.html">SVGPieSlice</a></li>
<li><a href="../classes/SVGRect.html">SVGRect</a></li>
<li><a href="../classes/SVGShape.html">SVGShape</a></li>
<li><a href="../classes/SWF.html">SWF</a></li>
<li><a href="../classes/SWFDetect.html">SWFDetect</a></li>
<li><a href="../classes/SyntheticEvent.html">SyntheticEvent</a></li>
<li><a href="../classes/SyntheticEvent.Notifier.html">SyntheticEvent.Notifier</a></li>
<li><a href="../classes/SynthRegistry.html">SynthRegistry</a></li>
<li><a href="../classes/Tab.html">Tab</a></li>
<li><a href="../classes/TabView.html">TabView</a></li>
<li><a href="../classes/Template.html">Template</a></li>
<li><a href="../classes/Template.Micro.html">Template.Micro</a></li>
<li><a href="../classes/Test.ArrayAssert.html">Test.ArrayAssert</a></li>
<li><a href="../classes/Test.Assert.html">Test.Assert</a></li>
<li><a href="../classes/Test.AssertionError.html">Test.AssertionError</a></li>
<li><a href="../classes/Test.ComparisonFailure.html">Test.ComparisonFailure</a></li>
<li><a href="../classes/Test.Console.html">Test.Console</a></li>
<li><a href="../classes/Test.CoverageFormat.html">Test.CoverageFormat</a></li>
<li><a href="../classes/Test.DateAssert.html">Test.DateAssert</a></li>
<li><a href="../classes/Test.EventTarget.html">Test.EventTarget</a></li>
<li><a href="../classes/Test.Mock.html">Test.Mock</a></li>
<li><a href="../classes/Test.Mock.Value.html">Test.Mock.Value</a></li>
<li><a href="../classes/Test.ObjectAssert.html">Test.ObjectAssert</a></li>
<li><a href="../classes/Test.Reporter.html">Test.Reporter</a></li>
<li><a href="../classes/Test.Results.html">Test.Results</a></li>
<li><a href="../classes/Test.Runner.html">Test.Runner</a></li>
<li><a href="../classes/Test.ShouldError.html">Test.ShouldError</a></li>
<li><a href="../classes/Test.ShouldFail.html">Test.ShouldFail</a></li>
<li><a href="../classes/Test.TestCase.html">Test.TestCase</a></li>
<li><a href="../classes/Test.TestFormat.html">Test.TestFormat</a></li>
<li><a href="../classes/Test.TestNode.html">Test.TestNode</a></li>
<li><a href="../classes/Test.TestRunner.html">Test.TestRunner</a></li>
<li><a href="../classes/Test.TestSuite.html">Test.TestSuite</a></li>
<li><a href="../classes/Test.UnexpectedError.html">Test.UnexpectedError</a></li>
<li><a href="../classes/Test.UnexpectedValue.html">Test.UnexpectedValue</a></li>
<li><a href="../classes/Test.Wait.html">Test.Wait</a></li>
<li><a href="../classes/Text.AccentFold.html">Text.AccentFold</a></li>
<li><a href="../classes/Text.WordBreak.html">Text.WordBreak</a></li>
<li><a href="../classes/TimeAxis.html">TimeAxis</a></li>
<li><a href="../classes/TimeAxisBase.html">TimeAxisBase</a></li>
<li><a href="../classes/TimeImpl.html">TimeImpl</a></li>
<li><a href="../classes/ToggleButton.html">ToggleButton</a></li>
<li><a href="../classes/TopAxisLayout.html">TopAxisLayout</a></li>
<li><a href="../classes/Transition.html">Transition</a></li>
<li><a href="../classes/Tree.html">Tree</a></li>
<li><a href="../classes/Tree.Labelable.html">Tree.Labelable</a></li>
<li><a href="../classes/Tree.Node.html">Tree.Node</a></li>
<li><a href="../classes/Tree.Node.Labelable.html">Tree.Node.Labelable</a></li>
<li><a href="../classes/Tree.Node.Openable.html">Tree.Node.Openable</a></li>
<li><a href="../classes/Tree.Node.Selectable.html">Tree.Node.Selectable</a></li>
<li><a href="../classes/Tree.Node.Sortable.html">Tree.Node.Sortable</a></li>
<li><a href="../classes/Tree.Openable.html">Tree.Openable</a></li>
<li><a href="../classes/Tree.Selectable.html">Tree.Selectable</a></li>
<li><a href="../classes/Tree.Sortable.html">Tree.Sortable</a></li>
<li><a href="../classes/UA.html">UA</a></li>
<li><a href="../classes/Uploader.html">Uploader</a></li>
<li><a href="../classes/Uploader.Queue.html">Uploader.Queue</a></li>
<li><a href="../classes/UploaderFlash.html">UploaderFlash</a></li>
<li><a href="../classes/UploaderHTML5.html">UploaderHTML5</a></li>
<li><a href="../classes/ValueChange.html">ValueChange</a></li>
<li><a href="../classes/VerticalLegendLayout.html">VerticalLegendLayout</a></li>
<li><a href="../classes/View.html">View</a></li>
<li><a href="../classes/View.NodeMap.html">View.NodeMap</a></li>
<li><a href="../classes/VMLCircle.html">VMLCircle</a></li>
<li><a href="../classes/VMLDrawing.html">VMLDrawing</a></li>
<li><a href="../classes/VMLEllipse.html">VMLEllipse</a></li>
<li><a href="../classes/VMLGraphic.html">VMLGraphic</a></li>
<li><a href="../classes/VMLPath.html">VMLPath</a></li>
<li><a href="../classes/VMLPieSlice.html">VMLPieSlice</a></li>
<li><a href="../classes/VMLRect.html">VMLRect</a></li>
<li><a href="../classes/VMLShape.html">VMLShape</a></li>
<li><a href="../classes/Widget.html">Widget</a></li>
<li><a href="../classes/WidgetAutohide.html">WidgetAutohide</a></li>
<li><a href="../classes/WidgetButtons.html">WidgetButtons</a></li>
<li><a href="../classes/WidgetChild.html">WidgetChild</a></li>
<li><a href="../classes/WidgetModality.html">WidgetModality</a></li>
<li><a href="../classes/WidgetParent.html">WidgetParent</a></li>
<li><a href="../classes/WidgetPosition.html">WidgetPosition</a></li>
<li><a href="../classes/WidgetPositionAlign.html">WidgetPositionAlign</a></li>
<li><a href="../classes/WidgetPositionConstrain.html">WidgetPositionConstrain</a></li>
<li><a href="../classes/WidgetStack.html">WidgetStack</a></li>
<li><a href="../classes/WidgetStdMod.html">WidgetStdMod</a></li>
<li><a href="../classes/XML.html">XML</a></li>
<li><a href="../classes/YQL.html">YQL</a></li>
<li><a href="../classes/YQLRequest.html">YQLRequest</a></li>
<li><a href="../classes/YUI.html">YUI</a></li>
<li><a href="../classes/YUI~substitute.html">YUI~substitute</a></li>
</ul>
<ul id="api-modules" class="apis modules">
<li><a href="../modules/align-plugin.html">align-plugin</a></li>
<li><a href="../modules/anim.html">anim</a></li>
<li><a href="../modules/anim-base.html">anim-base</a></li>
<li><a href="../modules/anim-color.html">anim-color</a></li>
<li><a href="../modules/anim-curve.html">anim-curve</a></li>
<li><a href="../modules/anim-easing.html">anim-easing</a></li>
<li><a href="../modules/anim-node-plugin.html">anim-node-plugin</a></li>
<li><a href="../modules/anim-scroll.html">anim-scroll</a></li>
<li><a href="../modules/anim-shape.html">anim-shape</a></li>
<li><a href="../modules/anim-shape-transform.html">anim-shape-transform</a></li>
<li><a href="../modules/anim-xy.html">anim-xy</a></li>
<li><a href="../modules/app.html">app</a></li>
<li><a href="../modules/app-base.html">app-base</a></li>
<li><a href="../modules/app-content.html">app-content</a></li>
<li><a href="../modules/app-transitions.html">app-transitions</a></li>
<li><a href="../modules/app-transitions-native.html">app-transitions-native</a></li>
<li><a href="../modules/array-extras.html">array-extras</a></li>
<li><a href="../modules/array-invoke.html">array-invoke</a></li>
<li><a href="../modules/arraylist.html">arraylist</a></li>
<li><a href="../modules/arraylist-add.html">arraylist-add</a></li>
<li><a href="../modules/arraylist-filter.html">arraylist-filter</a></li>
<li><a href="../modules/arraysort.html">arraysort</a></li>
<li><a href="../modules/async-queue.html">async-queue</a></li>
<li><a href="../modules/attribute.html">attribute</a></li>
<li><a href="../modules/attribute-base.html">attribute-base</a></li>
<li><a href="../modules/attribute-complex.html">attribute-complex</a></li>
<li><a href="../modules/attribute-core.html">attribute-core</a></li>
<li><a href="../modules/attribute-extras.html">attribute-extras</a></li>
<li><a href="../modules/attribute-observable.html">attribute-observable</a></li>
<li><a href="../modules/autocomplete.html">autocomplete</a></li>
<li><a href="../modules/autocomplete-base.html">autocomplete-base</a></li>
<li><a href="../modules/autocomplete-filters.html">autocomplete-filters</a></li>
<li><a href="../modules/autocomplete-filters-accentfold.html">autocomplete-filters-accentfold</a></li>
<li><a href="../modules/autocomplete-highlighters.html">autocomplete-highlighters</a></li>
<li><a href="../modules/autocomplete-highlighters-accentfold.html">autocomplete-highlighters-accentfold</a></li>
<li><a href="../modules/autocomplete-list.html">autocomplete-list</a></li>
<li><a href="../modules/autocomplete-list-keys.html">autocomplete-list-keys</a></li>
<li><a href="../modules/autocomplete-plugin.html">autocomplete-plugin</a></li>
<li><a href="../modules/autocomplete-sources.html">autocomplete-sources</a></li>
<li><a href="../modules/axis.html">axis</a></li>
<li><a href="../modules/axis-base.html">axis-base</a></li>
<li><a href="../modules/axis-category.html">axis-category</a></li>
<li><a href="../modules/axis-category-base.html">axis-category-base</a></li>
<li><a href="../modules/axis-numeric.html">axis-numeric</a></li>
<li><a href="../modules/axis-numeric-base.html">axis-numeric-base</a></li>
<li><a href="../modules/axis-stacked.html">axis-stacked</a></li>
<li><a href="../modules/axis-stacked-base.html">axis-stacked-base</a></li>
<li><a href="../modules/axis-time.html">axis-time</a></li>
<li><a href="../modules/axis-time-base.html">axis-time-base</a></li>
<li><a href="../modules/base.html">base</a></li>
<li><a href="../modules/base-base.html">base-base</a></li>
<li><a href="../modules/base-build.html">base-build</a></li>
<li><a href="../modules/base-core.html">base-core</a></li>
<li><a href="../modules/base-observable.html">base-observable</a></li>
<li><a href="../modules/base-pluginhost.html">base-pluginhost</a></li>
<li><a href="../modules/button.html">button</a></li>
<li><a href="../modules/button-core.html">button-core</a></li>
<li><a href="../modules/button-group.html">button-group</a></li>
<li><a href="../modules/button-plugin.html">button-plugin</a></li>
<li><a href="../modules/cache.html">cache</a></li>
<li><a href="../modules/cache-base.html">cache-base</a></li>
<li><a href="../modules/cache-offline.html">cache-offline</a></li>
<li><a href="../modules/cache-plugin.html">cache-plugin</a></li>
<li><a href="../modules/calendar.html">calendar</a></li>
<li><a href="../modules/calendar-base.html">calendar-base</a></li>
<li><a href="../modules/calendarnavigator.html">calendarnavigator</a></li>
<li><a href="../modules/charts.html">charts</a></li>
<li><a href="../modules/charts-base.html">charts-base</a></li>
<li><a href="../modules/charts-legend.html">charts-legend</a></li>
<li><a href="../modules/classnamemanager.html">classnamemanager</a></li>
<li><a href="../modules/clickable-rail.html">clickable-rail</a></li>
<li><a href="../modules/collection.html">collection</a></li>
<li><a href="../modules/color.html">color</a></li>
<li><a href="../modules/color-base.html">color-base</a></li>
<li><a href="../modules/color-harmony.html">color-harmony</a></li>
<li><a href="../modules/color-hsl.html">color-hsl</a></li>
<li><a href="../modules/color-hsv.html">color-hsv</a></li>
<li><a href="../modules/console.html">console</a></li>
<li><a href="../modules/console-filters.html">console-filters</a></li>
<li><a href="../modules/content-editable.html">content-editable</a></li>
<li><a href="../modules/cookie.html">cookie</a></li>
<li><a href="../modules/createlink-base.html">createlink-base</a></li>
<li><a href="../modules/dataschema.html">dataschema</a></li>
<li><a href="../modules/dataschema-array.html">dataschema-array</a></li>
<li><a href="../modules/dataschema-base.html">dataschema-base</a></li>
<li><a href="../modules/dataschema-json.html">dataschema-json</a></li>
<li><a href="../modules/dataschema-text.html">dataschema-text</a></li>
<li><a href="../modules/dataschema-xml.html">dataschema-xml</a></li>
<li><a href="../modules/datasource.html">datasource</a></li>
<li><a href="../modules/datasource-arrayschema.html">datasource-arrayschema</a></li>
<li><a href="../modules/datasource-cache.html">datasource-cache</a></li>
<li><a href="../modules/datasource-function.html">datasource-function</a></li>
<li><a href="../modules/datasource-get.html">datasource-get</a></li>
<li><a href="../modules/datasource-io.html">datasource-io</a></li>
<li><a href="../modules/datasource-jsonschema.html">datasource-jsonschema</a></li>
<li><a href="../modules/datasource-local.html">datasource-local</a></li>
<li><a href="../modules/datasource-polling.html">datasource-polling</a></li>
<li><a href="../modules/datasource-textschema.html">datasource-textschema</a></li>
<li><a href="../modules/datasource-xmlschema.html">datasource-xmlschema</a></li>
<li><a href="../modules/datatable.html">datatable</a></li>
<li><a href="../modules/datatable-base.html">datatable-base</a></li>
<li><a href="../modules/datatable-body.html">datatable-body</a></li>
<li><a href="../modules/datatable-column-widths.html">datatable-column-widths</a></li>
<li><a href="../modules/datatable-core.html">datatable-core</a></li>
<li><a href="../modules/datatable-datasource.html">datatable-datasource</a></li>
<li><a href="../modules/datatable-foot.html">datatable-foot</a></li>
<li><a href="../modules/datatable-formatters.html">datatable-formatters</a></li>
<li><a href="../modules/datatable-head.html">datatable-head</a></li>
<li><a href="../modules/datatable-highlight.html">datatable-highlight</a></li>
<li><a href="../modules/datatable-keynav.html">datatable-keynav</a></li>
<li><a href="../modules/datatable-message.html">datatable-message</a></li>
<li><a href="../modules/datatable-mutable.html">datatable-mutable</a></li>
<li><a href="../modules/datatable-paginator.html">datatable-paginator</a></li>
<li><a href="../modules/datatable-scroll.html">datatable-scroll</a></li>
<li><a href="../modules/datatable-sort.html">datatable-sort</a></li>
<li><a href="../modules/datatable-table.html">datatable-table</a></li>
<li><a href="../modules/datatype.html">datatype</a></li>
<li><a href="../modules/datatype-date.html">datatype-date</a></li>
<li><a href="../modules/datatype-date-format.html">datatype-date-format</a></li>
<li><a href="../modules/datatype-date-math.html">datatype-date-math</a></li>
<li><a href="../modules/datatype-date-parse.html">datatype-date-parse</a></li>
<li><a href="../modules/datatype-number.html">datatype-number</a></li>
<li><a href="../modules/datatype-number-format.html">datatype-number-format</a></li>
<li><a href="../modules/datatype-number-parse.html">datatype-number-parse</a></li>
<li><a href="../modules/datatype-xml.html">datatype-xml</a></li>
<li><a href="../modules/datatype-xml-format.html">datatype-xml-format</a></li>
<li><a href="../modules/datatype-xml-parse.html">datatype-xml-parse</a></li>
<li><a href="../modules/dd.html">dd</a></li>
<li><a href="../modules/dd-constrain.html">dd-constrain</a></li>
<li><a href="../modules/dd-ddm.html">dd-ddm</a></li>
<li><a href="../modules/dd-ddm-base.html">dd-ddm-base</a></li>
<li><a href="../modules/dd-ddm-drop.html">dd-ddm-drop</a></li>
<li><a href="../modules/dd-delegate.html">dd-delegate</a></li>
<li><a href="../modules/dd-drag.html">dd-drag</a></li>
<li><a href="../modules/dd-drop.html">dd-drop</a></li>
<li><a href="../modules/dd-drop-plugin.html">dd-drop-plugin</a></li>
<li><a href="../modules/dd-gestures.html">dd-gestures</a></li>
<li><a href="../modules/dd-plugin.html">dd-plugin</a></li>
<li><a href="../modules/dd-proxy.html">dd-proxy</a></li>
<li><a href="../modules/dd-scroll.html">dd-scroll</a></li>
<li><a href="../modules/dial.html">dial</a></li>
<li><a href="../modules/dom.html">dom</a></li>
<li><a href="../modules/dom-base.html">dom-base</a></li>
<li><a href="../modules/dom-screen.html">dom-screen</a></li>
<li><a href="../modules/dom-style.html">dom-style</a></li>
<li><a href="../modules/dump.html">dump</a></li>
<li><a href="../modules/editor.html">editor</a></li>
<li><a href="../modules/editor-base.html">editor-base</a></li>
<li><a href="../modules/editor-bidi.html">editor-bidi</a></li>
<li><a href="../modules/editor-br.html">editor-br</a></li>
<li><a href="../modules/editor-inline.html">editor-inline</a></li>
<li><a href="../modules/editor-lists.html">editor-lists</a></li>
<li><a href="../modules/editor-para.html">editor-para</a></li>
<li><a href="../modules/editor-para-base.html">editor-para-base</a></li>
<li><a href="../modules/editor-para-ie.html">editor-para-ie</a></li>
<li><a href="../modules/editor-tab.html">editor-tab</a></li>
<li><a href="../modules/escape.html">escape</a></li>
<li><a href="../modules/event.html">event</a></li>
<li><a href="../modules/event-base.html">event-base</a></li>
<li><a href="../modules/event-contextmenu.html">event-contextmenu</a></li>
<li><a href="../modules/event-custom.html">event-custom</a></li>
<li><a href="../modules/event-custom-base.html">event-custom-base</a></li>
<li><a href="../modules/event-custom-complex.html">event-custom-complex</a></li>
<li><a href="../modules/event-delegate.html">event-delegate</a></li>
<li><a href="../modules/event-flick.html">event-flick</a></li>
<li><a href="../modules/event-focus.html">event-focus</a></li>
<li><a href="../modules/event-gestures.html">event-gestures</a></li>
<li><a href="../modules/event-hover.html">event-hover</a></li>
<li><a href="../modules/event-key.html">event-key</a></li>
<li><a href="../modules/event-mouseenter.html">event-mouseenter</a></li>
<li><a href="../modules/event-mousewheel.html">event-mousewheel</a></li>
<li><a href="../modules/event-move.html">event-move</a></li>
<li><a href="../modules/event-outside.html">event-outside</a></li>
<li><a href="../modules/event-resize.html">event-resize</a></li>
<li><a href="../modules/event-simulate.html">event-simulate</a></li>
<li><a href="../modules/event-synthetic.html">event-synthetic</a></li>
<li><a href="../modules/event-tap.html">event-tap</a></li>
<li><a href="../modules/event-touch.html">event-touch</a></li>
<li><a href="../modules/event-valuechange.html">event-valuechange</a></li>
<li><a href="../modules/exec-command.html">exec-command</a></li>
<li><a href="../modules/features.html">features</a></li>
<li><a href="../modules/file.html">file</a></li>
<li><a href="../modules/file-flash.html">file-flash</a></li>
<li><a href="../modules/file-html5.html">file-html5</a></li>
<li><a href="../modules/frame.html">frame</a></li>
<li><a href="../modules/gesture-simulate.html">gesture-simulate</a></li>
<li><a href="../modules/get.html">get</a></li>
<li><a href="../modules/get-nodejs.html">get-nodejs</a></li>
<li><a href="../modules/graphics.html">graphics</a></li>
<li><a href="../modules/graphics-group.html">graphics-group</a></li>
<li><a href="../modules/handlebars.html">handlebars</a></li>
<li><a href="../modules/handlebars-base.html">handlebars-base</a></li>
<li><a href="../modules/handlebars-compiler.html">handlebars-compiler</a></li>
<li><a href="../modules/highlight.html">highlight</a></li>
<li><a href="../modules/highlight-accentfold.html">highlight-accentfold</a></li>
<li><a href="../modules/highlight-base.html">highlight-base</a></li>
<li><a href="../modules/history.html">history</a></li>
<li><a href="../modules/history-base.html">history-base</a></li>
<li><a href="../modules/history-hash.html">history-hash</a></li>
<li><a href="../modules/history-hash-ie.html">history-hash-ie</a></li>
<li><a href="../modules/history-html5.html">history-html5</a></li>
<li><a href="../modules/imageloader.html">imageloader</a></li>
<li><a href="../modules/intl.html">intl</a></li>
<li><a href="../modules/io.html">io</a></li>
<li><a href="../modules/io-base.html">io-base</a></li>
<li><a href="../modules/io-form.html">io-form</a></li>
<li><a href="../modules/io-nodejs.html">io-nodejs</a></li>
<li><a href="../modules/io-queue.html">io-queue</a></li>
<li><a href="../modules/io-upload-iframe.html">io-upload-iframe</a></li>
<li><a href="../modules/io-xdr.html">io-xdr</a></li>
<li><a href="../modules/json.html">json</a></li>
<li><a href="../modules/json-parse.html">json-parse</a></li>
<li><a href="../modules/json-stringify.html">json-stringify</a></li>
<li><a href="../modules/jsonp.html">jsonp</a></li>
<li><a href="../modules/jsonp-url.html">jsonp-url</a></li>
<li><a href="../modules/lazy-model-list.html">lazy-model-list</a></li>
<li><a href="../modules/loader.html">loader</a></li>
<li><a href="../modules/loader-base.html">loader-base</a></li>
<li><a href="../modules/loader-yui3.html">loader-yui3</a></li>
<li><a href="../modules/matrix.html">matrix</a></li>
<li><a href="../modules/model.html">model</a></li>
<li><a href="../modules/model-list.html">model-list</a></li>
<li><a href="../modules/model-sync-rest.html">model-sync-rest</a></li>
<li><a href="../modules/node.html">node</a></li>
<li><a href="../modules/node-base.html">node-base</a></li>
<li><a href="../modules/node-core.html">node-core</a></li>
<li><a href="../modules/node-data.html">node-data</a></li>
<li><a href="../modules/node-event-delegate.html">node-event-delegate</a></li>
<li><a href="../modules/node-event-html5.html">node-event-html5</a></li>
<li><a href="../modules/node-event-simulate.html">node-event-simulate</a></li>
<li><a href="../modules/node-flick.html">node-flick</a></li>
<li><a href="../modules/node-focusmanager.html">node-focusmanager</a></li>
<li><a href="../modules/node-load.html">node-load</a></li>
<li><a href="../modules/node-menunav.html">node-menunav</a></li>
<li><a href="../modules/node-pluginhost.html">node-pluginhost</a></li>
<li><a href="../modules/node-screen.html">node-screen</a></li>
<li><a href="../modules/node-scroll-info.html">node-scroll-info</a></li>
<li><a href="../modules/node-style.html">node-style</a></li>
<li><a href="../modules/oop.html">oop</a></li>
<li><a href="../modules/overlay.html">overlay</a></li>
<li><a href="../modules/paginator.html">paginator</a></li>
<li><a href="../modules/paginator-core.html">paginator-core</a></li>
<li><a href="../modules/paginator-url.html">paginator-url</a></li>
<li><a href="../modules/panel.html">panel</a></li>
<li><a href="../modules/parallel.html">parallel</a></li>
<li><a href="../modules/pjax.html">pjax</a></li>
<li><a href="../modules/pjax-base.html">pjax-base</a></li>
<li><a href="../modules/pjax-content.html">pjax-content</a></li>
<li><a href="../modules/pjax-plugin.html">pjax-plugin</a></li>
<li><a href="../modules/plugin.html">plugin</a></li>
<li><a href="../modules/pluginhost.html">pluginhost</a></li>
<li><a href="../modules/pluginhost-base.html">pluginhost-base</a></li>
<li><a href="../modules/pluginhost-config.html">pluginhost-config</a></li>
<li><a href="../modules/promise.html">promise</a></li>
<li><a href="../modules/querystring.html">querystring</a></li>
<li><a href="../modules/querystring-parse.html">querystring-parse</a></li>
<li><a href="../modules/querystring-parse-simple.html">querystring-parse-simple</a></li>
<li><a href="../modules/querystring-stringify.html">querystring-stringify</a></li>
<li><a href="../modules/querystring-stringify-simple.html">querystring-stringify-simple</a></li>
<li><a href="../modules/queue-promote.html">queue-promote</a></li>
<li><a href="../modules/range-slider.html">range-slider</a></li>
<li><a href="../modules/recordset.html">recordset</a></li>
<li><a href="../modules/recordset-base.html">recordset-base</a></li>
<li><a href="../modules/recordset-filter.html">recordset-filter</a></li>
<li><a href="../modules/recordset-indexer.html">recordset-indexer</a></li>
<li><a href="../modules/recordset-sort.html">recordset-sort</a></li>
<li><a href="../modules/resize.html">resize</a></li>
<li><a href="../modules/resize-contrain.html">resize-contrain</a></li>
<li><a href="../modules/resize-plugin.html">resize-plugin</a></li>
<li><a href="../modules/resize-proxy.html">resize-proxy</a></li>
<li><a href="../modules/rollup.html">rollup</a></li>
<li><a href="../modules/router.html">router</a></li>
<li><a href="../modules/scrollview.html">scrollview</a></li>
<li><a href="../modules/scrollview-base.html">scrollview-base</a></li>
<li><a href="../modules/scrollview-base-ie.html">scrollview-base-ie</a></li>
<li><a href="../modules/scrollview-list.html">scrollview-list</a></li>
<li><a href="../modules/scrollview-paginator.html">scrollview-paginator</a></li>
<li><a href="../modules/scrollview-scrollbars.html">scrollview-scrollbars</a></li>
<li><a href="../modules/selection.html">selection</a></li>
<li><a href="../modules/selector-css2.html">selector-css2</a></li>
<li><a href="../modules/selector-css3.html">selector-css3</a></li>
<li><a href="../modules/selector-native.html">selector-native</a></li>
<li><a href="../modules/series-area.html">series-area</a></li>
<li><a href="../modules/series-area-stacked.html">series-area-stacked</a></li>
<li><a href="../modules/series-areaspline.html">series-areaspline</a></li>
<li><a href="../modules/series-areaspline-stacked.html">series-areaspline-stacked</a></li>
<li><a href="../modules/series-bar.html">series-bar</a></li>
<li><a href="../modules/series-bar-stacked.html">series-bar-stacked</a></li>
<li><a href="../modules/series-base.html">series-base</a></li>
<li><a href="../modules/series-candlestick.html">series-candlestick</a></li>
<li><a href="../modules/series-cartesian.html">series-cartesian</a></li>
<li><a href="../modules/series-column.html">series-column</a></li>
<li><a href="../modules/series-column-stacked.html">series-column-stacked</a></li>
<li><a href="../modules/series-combo.html">series-combo</a></li>
<li><a href="../modules/series-combo-stacked.html">series-combo-stacked</a></li>
<li><a href="../modules/series-combospline.html">series-combospline</a></li>
<li><a href="../modules/series-combospline-stacked.html">series-combospline-stacked</a></li>
<li><a href="../modules/series-curve-util.html">series-curve-util</a></li>
<li><a href="../modules/series-fill-util.html">series-fill-util</a></li>
<li><a href="../modules/series-histogram.html">series-histogram</a></li>
<li><a href="../modules/series-line.html">series-line</a></li>
<li><a href="../modules/series-line-stacked.html">series-line-stacked</a></li>
<li><a href="../modules/series-line-util.html">series-line-util</a></li>
<li><a href="../modules/series-marker.html">series-marker</a></li>
<li><a href="../modules/series-marker-stacked.html">series-marker-stacked</a></li>
<li><a href="../modules/series-ohlc.html">series-ohlc</a></li>
<li><a href="../modules/series-pie.html">series-pie</a></li>
<li><a href="../modules/series-plot-util.html">series-plot-util</a></li>
<li><a href="../modules/series-range.html">series-range</a></li>
<li><a href="../modules/series-spline.html">series-spline</a></li>
<li><a href="../modules/series-spline-stacked.html">series-spline-stacked</a></li>
<li><a href="../modules/series-stacked.html">series-stacked</a></li>
<li><a href="../modules/shim-plugin.html">shim-plugin</a></li>
<li><a href="../modules/slider.html">slider</a></li>
<li><a href="../modules/slider-base.html">slider-base</a></li>
<li><a href="../modules/slider-value-range.html">slider-value-range</a></li>
<li><a href="../modules/sortable.html">sortable</a></li>
<li><a href="../modules/sortable-scroll.html">sortable-scroll</a></li>
<li><a href="../modules/stylesheet.html">stylesheet</a></li>
<li><a href="../modules/substitute.html">substitute</a></li>
<li><a href="../modules/swf.html">swf</a></li>
<li><a href="../modules/swfdetect.html">swfdetect</a></li>
<li><a href="../modules/tabview.html">tabview</a></li>
<li><a href="../modules/template.html">template</a></li>
<li><a href="../modules/template-base.html">template-base</a></li>
<li><a href="../modules/template-micro.html">template-micro</a></li>
<li><a href="../modules/test.html">test</a></li>
<li><a href="../modules/test-console.html">test-console</a></li>
<li><a href="../modules/text.html">text</a></li>
<li><a href="../modules/text-accentfold.html">text-accentfold</a></li>
<li><a href="../modules/text-wordbreak.html">text-wordbreak</a></li>
<li><a href="../modules/timers.html">timers</a></li>
<li><a href="../modules/transition.html">transition</a></li>
<li><a href="../modules/transition-timer.html">transition-timer</a></li>
<li><a href="../modules/tree.html">tree</a></li>
<li><a href="../modules/tree-labelable.html">tree-labelable</a></li>
<li><a href="../modules/tree-lazy.html">tree-lazy</a></li>
<li><a href="../modules/tree-node.html">tree-node</a></li>
<li><a href="../modules/tree-openable.html">tree-openable</a></li>
<li><a href="../modules/tree-selectable.html">tree-selectable</a></li>
<li><a href="../modules/tree-sortable.html">tree-sortable</a></li>
<li><a href="../modules/uploader.html">uploader</a></li>
<li><a href="../modules/uploader-flash.html">uploader-flash</a></li>
<li><a href="../modules/uploader-html5.html">uploader-html5</a></li>
<li><a href="../modules/uploader-queue.html">uploader-queue</a></li>
<li><a href="../modules/view.html">view</a></li>
<li><a href="../modules/view-node-map.html">view-node-map</a></li>
<li><a href="../modules/widget.html">widget</a></li>
<li><a href="../modules/widget-anim.html">widget-anim</a></li>
<li><a href="../modules/widget-autohide.html">widget-autohide</a></li>
<li><a href="../modules/widget-base.html">widget-base</a></li>
<li><a href="../modules/widget-base-ie.html">widget-base-ie</a></li>
<li><a href="../modules/widget-buttons.html">widget-buttons</a></li>
<li><a href="../modules/widget-child.html">widget-child</a></li>
<li><a href="../modules/widget-htmlparser.html">widget-htmlparser</a></li>
<li><a href="../modules/widget-modality.html">widget-modality</a></li>
<li><a href="../modules/widget-parent.html">widget-parent</a></li>
<li><a href="../modules/widget-position.html">widget-position</a></li>
<li><a href="../modules/widget-position-align.html">widget-position-align</a></li>
<li><a href="../modules/widget-position-constrain.html">widget-position-constrain</a></li>
<li><a href="../modules/widget-skin.html">widget-skin</a></li>
<li><a href="../modules/widget-stack.html">widget-stack</a></li>
<li><a href="../modules/widget-stdmod.html">widget-stdmod</a></li>
<li><a href="../modules/widget-uievents.html">widget-uievents</a></li>
<li><a href="../modules/yql.html">yql</a></li>
<li><a href="../modules/yql-jsonp.html">yql-jsonp</a></li>
<li><a href="../modules/yql-nodejs.html">yql-nodejs</a></li>
<li><a href="../modules/yql-winjs.html">yql-winjs</a></li>
<li><a href="../modules/yui.html">yui</a></li>
<li><a href="../modules/yui-base.html">yui-base</a></li>
<li><a href="../modules/yui-later.html">yui-later</a></li>
<li><a href="../modules/yui-log.html">yui-log</a></li>
<li><a href="../modules/yui-throttle.html">yui-throttle</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="yui3-u-3-4">
<div id="api-options">
Show:
<label for="api-show-inherited">
<input type="checkbox" id="api-show-inherited" checked>
Inherited
</label>
<label for="api-show-protected">
<input type="checkbox" id="api-show-protected">
Protected
</label>
<label for="api-show-private">
<input type="checkbox" id="api-show-private">
Private
</label>
<label for="api-show-deprecated">
<input type="checkbox" id="api-show-deprecated">
Deprecated
</label>
</div>
<div class="apidocs">
<div id="docs-main">
<div class="content">
<h1>series-area Module</h1>
<div class="box clearfix meta">
<a class="button link-docs" href="/yui/docs/charts">User Guide & Examples</a>
<div class="foundat">
Defined in: <a href="../files/charts_js_AreaSeries.js.html#l7"><code>charts/js/AreaSeries.js:7</code></a>
</div>
</div>
<div class="box intro">
<p>Provides functionality for creating a area series.</p>
</div>
<div class="yui3-g">
<div class="yui3-u-1-2">
<p>This module provides the following classes:</p>
<ul class="module-classes">
<li class="module-class">
<a href="../classes/AreaSeries.html">
AreaSeries
</a>
</li>
</ul>
</div>
<div class="yui3-u-1-2">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="../assets/vendor/prettify/prettify-min.js"></script>
<script>prettyPrint();</script>
<script src="../assets/js/yui-prettify.js"></script>
<script src="../assets/../api.js"></script>
<script src="../assets/js/api-filter.js"></script>
<script src="../assets/js/api-list.js"></script>
<script src="../assets/js/api-search.js"></script>
<script src="../assets/js/apidocs.js"></script>
</body>
</html>
|
Cartok/doc/org/javajumper/cartok/class-use/Sword.html
|
JavaJumperStudios/Cartok
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (version 1.7.0_13) on Sat Mar 08 11:10:02 CET 2014 -->
<title>Uses of Class org.javajumper.cartok.Sword</title>
<meta name="date" content="2014-03-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.javajumper.cartok.Sword";
}
//-->
</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="../../../../org/javajumper/cartok/package-summary.html">Package</a></li>
<li><a href="../../../../org/javajumper/cartok/Sword.html" title="class in org.javajumper.cartok">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-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/javajumper/cartok/class-use/Sword.html" target="_top">Frames</a></li>
<li><a href="Sword.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.javajumper.cartok.Sword" class="title">Uses of Class<br>org.javajumper.cartok.Sword</h2>
</div>
<div class="classUseContainer">No usage of org.javajumper.cartok.Sword</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="../../../../org/javajumper/cartok/package-summary.html">Package</a></li>
<li><a href="../../../../org/javajumper/cartok/Sword.html" title="class in org.javajumper.cartok">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-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/javajumper/cartok/class-use/Sword.html" target="_top">Frames</a></li>
<li><a href="Sword.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>
|
rebbit/_functions/imagecreatetruecolor.html
|
inputx/code-ref-doc
|
<!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 : Function Reference: imagecreatetruecolor()</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 19:15:14 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='_functions';
filename='index.html';
cookiekey='phpxref';
handleNavFrame(relbase, subdir, filename);
logFunction('imagecreatetruecolor');
// -->
</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>Function and Method Cross Reference</h3>
<h2><a href="index.html#imagecreatetruecolor">imagecreatetruecolor()</a></h2>
<p><b>This function is provided by PHP directly.</b><br>
You can lookup the documentation for it here: <br> [<A HREF="http://php.net/manual-lookup.php?function=imagecreatetruecolor">php.net</A>] [<A HREF="http://us2.php.net/manual-lookup.php?function=imagecreatetruecolor">us2.php.net</A>] [<A HREF="http://uk.php.net/manual-lookup.php?function=imagecreatetruecolor">uk.php.net</A>] [<A HREF="http://au.php.net/manual-lookup.php?function=imagecreatetruecolor">au.php.net</A>] [<A HREF="http://de.php.net/manual-lookup.php?function=imagecreatetruecolor">de.php.net</A>] </p>
<b>Referenced 1 times:</b><ul>
<li><a href="../bonfire/codeigniter/helpers/captcha_helper.php.html">/bonfire/codeigniter/helpers/captcha_helper.php</a> -> <a href="../bonfire/codeigniter/helpers/captcha_helper.php.source.html#l138"> line 138</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 19:15:14 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>
|
lib/poi-3.1-FINAL/docs/apidocs/org/apache/poi/hssf/usermodel/HSSFChart.HSSFSeries.html
|
stumoodie/MetabolicNotationSubsystem
|
<!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.5.0_13) on Sun Jun 29 16:46:49 MSD 2008 -->
<TITLE>
HSSFChart.HSSFSeries (POI API Documentation)
</TITLE>
<META NAME="keywords" CONTENT="org.apache.poi.hssf.usermodel.HSSFChart.HSSFSeries class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="HSSFChart.HSSFSeries (POI API Documentation)";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/HSSFChart.HSSFSeries.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/poi/hssf/usermodel/HSSFChart.html" title="class in org.apache.poi.hssf.usermodel"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/poi/hssf/usermodel/HSSFChildAnchor.html" title="class in org.apache.poi.hssf.usermodel"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/hssf/usermodel/HSSFChart.HSSFSeries.html" target="_top"><B>FRAMES</B></A>
<A HREF="HSSFChart.HSSFSeries.html" target="_top"><B>NO FRAMES</B></A>
<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: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <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">
org.apache.poi.hssf.usermodel</FONT>
<BR>
Class HSSFChart.HSSFSeries</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.poi.hssf.usermodel.HSSFChart.HSSFSeries</B>
</PRE>
<DL>
<DT><B>Enclosing class:</B><DD><A HREF="../../../../../org/apache/poi/hssf/usermodel/HSSFChart.html" title="class in org.apache.poi.hssf.usermodel">HSSFChart</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>HSSFChart.HSSFSeries</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
A series in a chart
<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> short</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/usermodel/HSSFChart.HSSFSeries.html#getNumValues()">getNumValues</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/usermodel/HSSFChart.HSSFSeries.html#getSeriesTitle()">getSeriesTitle</A></B>()</CODE>
<BR>
Returns the series' title, if there is one,
or null if not</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> short</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/usermodel/HSSFChart.HSSFSeries.html#getValueType()">getValueType</A></B>()</CODE>
<BR>
See <A HREF="../../../../../org/apache/poi/hssf/record/SeriesRecord.html" title="class in org.apache.poi.hssf.record"><CODE>SeriesRecord</CODE></A></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../org/apache/poi/hssf/usermodel/HSSFChart.HSSFSeries.html#setSeriesTitle(java.lang.String)">setSeriesTitle</A></B>(java.lang.String title)</CODE>
<BR>
Changes the series' title, but only if there
was one already.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<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="getNumValues()"><!-- --></A><H3>
getNumValues</H3>
<PRE>
public short <B>getNumValues</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getValueType()"><!-- --></A><H3>
getValueType</H3>
<PRE>
public short <B>getValueType</B>()</PRE>
<DL>
<DD>See <A HREF="../../../../../org/apache/poi/hssf/record/SeriesRecord.html" title="class in org.apache.poi.hssf.record"><CODE>SeriesRecord</CODE></A>
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getSeriesTitle()"><!-- --></A><H3>
getSeriesTitle</H3>
<PRE>
public java.lang.String <B>getSeriesTitle</B>()</PRE>
<DL>
<DD>Returns the series' title, if there is one,
or null if not
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setSeriesTitle(java.lang.String)"><!-- --></A><H3>
setSeriesTitle</H3>
<PRE>
public void <B>setSeriesTitle</B>(java.lang.String title)</PRE>
<DL>
<DD>Changes the series' title, but only if there
was one already.
TODO - add in the records if not
<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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/HSSFChart.HSSFSeries.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../org/apache/poi/hssf/usermodel/HSSFChart.html" title="class in org.apache.poi.hssf.usermodel"><B>PREV CLASS</B></A>
<A HREF="../../../../../org/apache/poi/hssf/usermodel/HSSFChildAnchor.html" title="class in org.apache.poi.hssf.usermodel"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../index.html?org/apache/poi/hssf/usermodel/HSSFChart.HSSFSeries.html" target="_top"><B>FRAMES</B></A>
<A HREF="HSSFChart.HSSFSeries.html" target="_top"><B>NO FRAMES</B></A>
<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: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright 2008 The Apache Software Foundation or
its licensors, as applicable.</i>
</BODY>
</HTML>
|
layouts/index.html
|
bear-code/hugo-freelancer-theme
|
<!DOCTYPE html>
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
<head>
{{ partial "head.html" . }}
</head>
<body id="page-top" class="index">
{{ partial "nav.html" . }}
{{ partial "header.html" . }}
{{ partial "portfolio-grid.html" . }}
{{ partial "about.html" . }}
{{ partial "contact.html" . }}
{{ partial "jobs.html" . }}
{{ partial "footer.html" . }}
{{ partial "modals.html" . }}
{{ partial "js.html" . }}
</body>
</html>
|
2.6.0.Final/apidocs/org/wildfly/swarm/config/datasources/class-use/XADataSourceSupplier.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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:11 MST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildfly.swarm.config.datasources.XADataSourceSupplier (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 Interface org.wildfly.swarm.config.datasources.XADataSourceSupplier (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><a href="../../../../../../org/wildfly/swarm/config/datasources/XADataSourceSupplier.html" title="interface in org.wildfly.swarm.config.datasources">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.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/datasources/class-use/XADataSourceSupplier.html" target="_top">Frames</a></li>
<li><a href="XADataSourceSupplier.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 Interface org.wildfly.swarm.config.datasources.XADataSourceSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.datasources.XADataSourceSupplier</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/datasources/XADataSourceSupplier.html" title="interface in org.wildfly.swarm.config.datasources">XADataSourceSupplier</a></span><span class="tabEnd"> </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"> </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/datasources/XADataSourceSupplier.html" title="interface in org.wildfly.swarm.config.datasources">XADataSourceSupplier</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/datasources/XADataSourceSupplier.html" title="interface in org.wildfly.swarm.config.datasources">XADataSourceSupplier</a></span><span class="tabEnd"> </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/Datasources.html" title="type parameter in Datasources">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">Datasources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Datasources.html#xaDataSource-org.wildfly.swarm.config.datasources.XADataSourceSupplier-">xaDataSource</a></span>(<a href="../../../../../../org/wildfly/swarm/config/datasources/XADataSourceSupplier.html" title="interface in org.wildfly.swarm.config.datasources">XADataSourceSupplier</a> supplier)</code>
<div class="block">Install a supplied XADataSource 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/datasources/XADataSourceSupplier.html" title="interface in org.wildfly.swarm.config.datasources">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.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/datasources/class-use/XADataSourceSupplier.html" target="_top">Frames</a></li>
<li><a href="XADataSourceSupplier.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 © 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
public/partials/comments.html
|
danka74/task2_5
|
<b>hejsan</b>
|
src/main/resources/templates/charts/tag.html
|
MoriTanosuke/timeclicker
|
<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-4.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<head th:replace="fragments/head"></head>
<body>
<header th:replace="fragments/nav"></header>
<main role="main">
<div class="container-fluid">
<h1>Timeclicker</h1>
<h2>Sum per tag</h2>
<div>Some entries might contribute their duration to multiple tags.</div>
<div id="chart" style="width:100%; height:400px;"></div>
<table class="table table-striped table-hover">
<thead class="thead-dark">
<tr>
<th scope="col">Tag</th>
<th scope="col">Sum</th>
</tr>
</thead>
<tbody>
<tr th:each="summary : ${tagSummary}">
<td th:text="${summary.tag}">start</td>
<td th:text="${{summary.readableDuration}}">stop</td>
</tr>
</tbody>
</table>
</div>
</main>
<footer th:replace="fragments/foot"></footer>
<script th:src="@{/webjars/highcharts/6.1.1/highcharts.js}"></script>
<script th:src="@{/lib.js}"></script>
<script th:inline="javascript">
$(function () {
/*<![CDATA[*/
var data = [];
[[${tagSummary}]].forEach(function (e) {
var tag = e.tag || "no tag";
data.push([tag, parseDuration(e.readableDuration)]);
});
/*]]>*/
$(function () {
var myChart = Highcharts.chart('chart', {
chart: {
type: 'pie',
plotBackgroundColor: null
},
title: {
text: 'Sum per tag'
},
tooltip: {
formatter: function () {
return formatDuration(this.y);
}
},
series: [{
name: 'Sums',
data: data
}]
});
});
});
</script>
</body>
</html>
|
code/framework/doc/de/dhbw/wi13c/jguicreator/elemente/class-use/PieChartPanel.html
|
WI13C/Jgui-creator
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_101) on Mon Aug 22 00:07:21 CEST 2016 -->
<title>Uses of Class de.dhbw.wi13c.jguicreator.elemente.PieChartPanel</title>
<meta name="date" content="2016-08-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 de.dhbw.wi13c.jguicreator.elemente.PieChartPanel";
}
}
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="../../../../../../de/dhbw/wi13c/jguicreator/elemente/PieChartPanel.html" title="class in de.dhbw.wi13c.jguicreator.elemente">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-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?de/dhbw/wi13c/jguicreator/elemente/class-use/PieChartPanel.html" target="_top">Frames</a></li>
<li><a href="PieChartPanel.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 de.dhbw.wi13c.jguicreator.elemente.PieChartPanel" class="title">Uses of Class<br>de.dhbw.wi13c.jguicreator.elemente.PieChartPanel</h2>
</div>
<div class="classUseContainer">No usage of de.dhbw.wi13c.jguicreator.elemente.PieChartPanel</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="../../../../../../de/dhbw/wi13c/jguicreator/elemente/PieChartPanel.html" title="class in de.dhbw.wi13c.jguicreator.elemente">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-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?de/dhbw/wi13c/jguicreator/elemente/class-use/PieChartPanel.html" target="_top">Frames</a></li>
<li><a href="PieChartPanel.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>
|
external-apidocs/com/google/code/maven-play-plugin/org/playframework/play/1.3.3/play/data/validation/class-use/MatchCheck.html
|
play1-maven-plugin/play1-maven-plugin.github.io
|
<!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_66) on Mon Dec 14 16:02:04 CST 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class play.data.validation.MatchCheck (Play! API)</title>
<meta name="date" content="2015-12-14">
<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 play.data.validation.MatchCheck (Play! 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="../../../../play/data/validation/MatchCheck.html" title="class in play.data.validation">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?play/data/validation/class-use/MatchCheck.html" target="_top">Frames</a></li>
<li><a href="MatchCheck.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 play.data.validation.MatchCheck" class="title">Uses of Class<br>play.data.validation.MatchCheck</h2>
</div>
<div class="classUseContainer">No usage of play.data.validation.MatchCheck</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="../../../../play/data/validation/MatchCheck.html" title="class in play.data.validation">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?play/data/validation/class-use/MatchCheck.html" target="_top">Frames</a></li>
<li><a href="MatchCheck.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><a href=http://guillaume.bort.fr>Guillaume Bort</a> & <a href=http://www.zenexity.fr>zenexity</a> - Distributed under <a href=http://www.apache.org/licenses/LICENSE-2.0.html>Apache 2 licence</a>, without any warrantly</small></p>
</body>
</html>
|
solr-5.3.1/docs/solr-core/org/apache/solr/search/grouping/endresulttransformer/class-use/EndResultTransformer.html
|
TitasNandi/Summer_Project
|
<!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_79) on Thu Sep 17 01:48:47 IST 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Uses of Interface org.apache.solr.search.grouping.endresulttransformer.EndResultTransformer (Solr 5.3.1 API)</title>
<meta name="date" content="2015-09-17">
<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 Interface org.apache.solr.search.grouping.endresulttransformer.EndResultTransformer (Solr 5.3.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/search/grouping/endresulttransformer/EndResultTransformer.html" title="interface in org.apache.solr.search.grouping.endresulttransformer">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/search/grouping/endresulttransformer/class-use/EndResultTransformer.html" target="_top">Frames</a></li>
<li><a href="EndResultTransformer.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 Interface org.apache.solr.search.grouping.endresulttransformer.EndResultTransformer" class="title">Uses of Interface<br>org.apache.solr.search.grouping.endresulttransformer.EndResultTransformer</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/solr/search/grouping/endresulttransformer/EndResultTransformer.html" title="interface in org.apache.solr.search.grouping.endresulttransformer">EndResultTransformer</a></span><span class="tabEnd"> </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.solr.search.grouping.endresulttransformer">org.apache.solr.search.grouping.endresulttransformer</a></td>
<td class="colLast">
<div class="block">APIs and classes for transforming result grouping results into the appropriate response format</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.solr.search.grouping.endresulttransformer">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/apache/solr/search/grouping/endresulttransformer/EndResultTransformer.html" title="interface in org.apache.solr.search.grouping.endresulttransformer">EndResultTransformer</a> in <a href="../../../../../../../org/apache/solr/search/grouping/endresulttransformer/package-summary.html">org.apache.solr.search.grouping.endresulttransformer</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation">
<caption><span>Classes in <a href="../../../../../../../org/apache/solr/search/grouping/endresulttransformer/package-summary.html">org.apache.solr.search.grouping.endresulttransformer</a> that implement <a href="../../../../../../../org/apache/solr/search/grouping/endresulttransformer/EndResultTransformer.html" title="interface in org.apache.solr.search.grouping.endresulttransformer">EndResultTransformer</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><strong><a href="../../../../../../../org/apache/solr/search/grouping/endresulttransformer/GroupedEndResultTransformer.html" title="class in org.apache.solr.search.grouping.endresulttransformer">GroupedEndResultTransformer</a></strong></code>
<div class="block">Implementation of <a href="../../../../../../../org/apache/solr/search/grouping/endresulttransformer/EndResultTransformer.html" title="interface in org.apache.solr.search.grouping.endresulttransformer"><code>EndResultTransformer</code></a> that keeps each grouped result separate in the final response.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../../org/apache/solr/search/grouping/endresulttransformer/MainEndResultTransformer.html" title="class in org.apache.solr.search.grouping.endresulttransformer">MainEndResultTransformer</a></strong></code>
<div class="block">Implementation of <a href="../../../../../../../org/apache/solr/search/grouping/endresulttransformer/EndResultTransformer.html" title="interface in org.apache.solr.search.grouping.endresulttransformer"><code>EndResultTransformer</code></a> that transforms the grouped result into the main result list in the
response.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../../org/apache/solr/search/grouping/endresulttransformer/SimpleEndResultTransformer.html" title="class in org.apache.solr.search.grouping.endresulttransformer">SimpleEndResultTransformer</a></strong></code>
<div class="block">Implementation of <a href="../../../../../../../org/apache/solr/search/grouping/endresulttransformer/EndResultTransformer.html" title="interface in org.apache.solr.search.grouping.endresulttransformer"><code>EndResultTransformer</code></a> that transforms the grouped result into a single flat list.</div>
</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/solr/search/grouping/endresulttransformer/EndResultTransformer.html" title="interface in org.apache.solr.search.grouping.endresulttransformer">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/search/grouping/endresulttransformer/class-use/EndResultTransformer.html" target="_top">Frames</a></li>
<li><a href="EndResultTransformer.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 © 2000-2015 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>
|
Application/Admin/View/Public/dispatch_jump.html
|
biner88/BinerCms
|
<extend name="Admin@Public/common" />
<block name="header-ext">
<style>
.fali{
color:#5c5c5e;padding-right:10px
}
</style>
</block>
<block name="body-main">
<div id="wrap-all">
<div id="main">
<div class="global_layout" style="background-image: none;">
<!--leftpanel start-->
<include file="Admin@Public/leftpanel" />
<!--leftpanel end-->
<div class="centerpanel">
<div class="layout_content ng-scope">
<div class="layout_content_main dashboard">
<!--navbar start-->
<div class="mod-navbar">
<div class="main">
<div class="title"><h3>
<?php if(isset($message)) {?>
<i class="fa fa-check" style="color:green"></i><?php echo($message); ?>
<?php }else{?>
<i class="fa fa-close" style="color:red"></i><?php echo($error); ?>
<?php }?>
</h3></div>
<div class="main_toolbar"></div>
</div>
</div>
<!--navbar end-->
<div class="height-nonav dashboard-body wt-scroll" style="top:54px;">
<dl class="frame">
<br/><br/><br/><br/><br/>
<div class="row" style="b">
<div class="col-md-4"></div>
<div class="col-md-4">
<h4>您现在可以:</h4>
<h3><i class="fa fa-history fali"></i> <a href="<?php echo($_SERVER['HTTP_REFERER']); ?>">返回上一页</a></h3>
<h3><i class="fa fa-home fali"></i> <a href="{:U('admin/index/index')}">回到控制面板首页</a></h3>
<h3><i class="fa fa-play fali"></i> 页面自动 <a id="href" href="<?php echo($jumpUrl); ?>">跳转</a> 等待时间: <b id="wait" class="label label-danger"><?php echo($waitSecond); ?></b></h3>
</div>
<div class="col-md-4"></div>
</div>
</dl>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</block>
<block name="footer-common">
<!--footer-common-->
<js href="__STATIC__/js/jquery-1.9.1.js?v={$Think.APP_VERSION}"/>
</block>
<block name="footer-ext">
<!--footer-ext-->
<js href="__STATIC__/js/common.js?v={$Think.APP_VERSION}"/>
</block>
<block name="footer-end">
<script type="text/javascript">
(function(){
var wait = document.getElementById('wait'),href = document.getElementById('href').href;
var interval = setInterval(function(){
var time = --wait.innerHTML;
if(time <= 0) {
location.href = href;
clearInterval(interval);
};
}, 1000);
})();
</script>
</block>
|
docs/dyn/binaryauthorization_v1beta1.projects.html
|
googleapis/google-api-python-client
|
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="binaryauthorization_v1beta1.html">Binary Authorization API</a> . <a href="binaryauthorization_v1beta1.projects.html">projects</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="binaryauthorization_v1beta1.projects.attestors.html">attestors()</a></code>
</p>
<p class="firstline">Returns the attestors Resource.</p>
<p class="toc_element">
<code><a href="binaryauthorization_v1beta1.projects.policy.html">policy()</a></code>
</p>
<p class="firstline">Returns the policy Resource.</p>
<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
<code><a href="#getPolicy">getPolicy(name, x__xgafv=None)</a></code></p>
<p class="firstline">A policy specifies the attestors that must attest to a container image, before the project is allowed to deploy that image. There is at most one policy per project. All image admission requests are permitted if a project has no policy. Gets the policy for this project. Returns a default policy if the project does not have one.</p>
<p class="toc_element">
<code><a href="#updatePolicy">updatePolicy(name, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Creates or updates a project's policy, and returns a copy of the new policy. A policy is always updated as a whole, to avoid race conditions with concurrent policy enforcement (or management!) requests. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT if the request is malformed.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="close">close()</code>
<pre>Close httplib2 connections.</pre>
</div>
<div class="method">
<code class="details" id="getPolicy">getPolicy(name, x__xgafv=None)</code>
<pre>A policy specifies the attestors that must attest to a container image, before the project is allowed to deploy that image. There is at most one policy per project. All image admission requests are permitted if a project has no policy. Gets the policy for this project. Returns a default policy if the project does not have one.
Args:
name: string, Required. The resource name of the policy to retrieve, in the format `projects/*/policy`. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # A policy for Binary Authorization.
"admissionWhitelistPatterns": [ # Optional. Admission policy allowlisting. A matching admission request will always be permitted. This feature is typically used to exclude Google or third-party infrastructure images from Binary Authorization policies.
{ # An admission allowlist pattern exempts images from checks by admission rules.
"namePattern": "A String", # An image name pattern to allowlist, in the form `registry/path/to/image`. This supports a trailing `*` as a wildcard, but this is allowed only in text after the `registry/` part. `*` wildcard does not match `/`, i.e., `gcr.io/nginx*` matches `gcr.io/nginx@latest`, but it does not match `gcr.io/nginx/image`. This also supports a trailing `**` wildcard which matches subdirectories, i.e., `gcr.io/nginx**` matches `gcr.io/nginx/image`.
},
],
"clusterAdmissionRules": { # Optional. Per-cluster admission rules. Cluster spec format: `location.clusterId`. There can be at most one admission rule per cluster spec. A `location` is either a compute zone (e.g. us-central1-a) or a region (e.g. us-central1). For `clusterId` syntax restrictions see https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters.
"a_key": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
},
"defaultAdmissionRule": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation. # Required. Default admission rule for a cluster without a per-cluster, per- kubernetes-service-account, or per-istio-service-identity admission rule.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
"description": "A String", # Optional. A descriptive comment.
"etag": "A String", # Optional. Used to prevent updating the policy when another request has updated it since it was retrieved.
"globalPolicyEvaluationMode": "A String", # Optional. Controls the evaluation of a Google-maintained global admission policy for common system-level images. Images not covered by the global policy will be subject to the project admission policy. This setting has no effect when specified inside a global admission policy.
"istioServiceIdentityAdmissionRules": { # Optional. Per-istio-service-identity admission rules. Istio service identity spec format: `spiffe:///ns//sa/` or `/ns//sa/` e.g. `spiffe://example.com/ns/test-ns/sa/default`
"a_key": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
},
"kubernetesNamespaceAdmissionRules": { # Optional. Per-kubernetes-namespace admission rules. K8s namespace spec format: `[a-z.-]+`, e.g. `some-namespace`
"a_key": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
},
"kubernetesServiceAccountAdmissionRules": { # Optional. Per-kubernetes-service-account admission rules. Service account spec format: `namespace:serviceaccount`. e.g. `test-ns:default`
"a_key": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
},
"name": "A String", # Output only. The resource name, in the format `projects/*/policy`. There is at most one policy per project.
"updateTime": "A String", # Output only. Time when the policy was last updated.
}</pre>
</div>
<div class="method">
<code class="details" id="updatePolicy">updatePolicy(name, body=None, x__xgafv=None)</code>
<pre>Creates or updates a project's policy, and returns a copy of the new policy. A policy is always updated as a whole, to avoid race conditions with concurrent policy enforcement (or management!) requests. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT if the request is malformed.
Args:
name: string, Output only. The resource name, in the format `projects/*/policy`. There is at most one policy per project. (required)
body: object, The request body.
The object takes the form of:
{ # A policy for Binary Authorization.
"admissionWhitelistPatterns": [ # Optional. Admission policy allowlisting. A matching admission request will always be permitted. This feature is typically used to exclude Google or third-party infrastructure images from Binary Authorization policies.
{ # An admission allowlist pattern exempts images from checks by admission rules.
"namePattern": "A String", # An image name pattern to allowlist, in the form `registry/path/to/image`. This supports a trailing `*` as a wildcard, but this is allowed only in text after the `registry/` part. `*` wildcard does not match `/`, i.e., `gcr.io/nginx*` matches `gcr.io/nginx@latest`, but it does not match `gcr.io/nginx/image`. This also supports a trailing `**` wildcard which matches subdirectories, i.e., `gcr.io/nginx**` matches `gcr.io/nginx/image`.
},
],
"clusterAdmissionRules": { # Optional. Per-cluster admission rules. Cluster spec format: `location.clusterId`. There can be at most one admission rule per cluster spec. A `location` is either a compute zone (e.g. us-central1-a) or a region (e.g. us-central1). For `clusterId` syntax restrictions see https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters.
"a_key": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
},
"defaultAdmissionRule": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation. # Required. Default admission rule for a cluster without a per-cluster, per- kubernetes-service-account, or per-istio-service-identity admission rule.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
"description": "A String", # Optional. A descriptive comment.
"etag": "A String", # Optional. Used to prevent updating the policy when another request has updated it since it was retrieved.
"globalPolicyEvaluationMode": "A String", # Optional. Controls the evaluation of a Google-maintained global admission policy for common system-level images. Images not covered by the global policy will be subject to the project admission policy. This setting has no effect when specified inside a global admission policy.
"istioServiceIdentityAdmissionRules": { # Optional. Per-istio-service-identity admission rules. Istio service identity spec format: `spiffe:///ns//sa/` or `/ns//sa/` e.g. `spiffe://example.com/ns/test-ns/sa/default`
"a_key": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
},
"kubernetesNamespaceAdmissionRules": { # Optional. Per-kubernetes-namespace admission rules. K8s namespace spec format: `[a-z.-]+`, e.g. `some-namespace`
"a_key": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
},
"kubernetesServiceAccountAdmissionRules": { # Optional. Per-kubernetes-service-account admission rules. Service account spec format: `namespace:serviceaccount`. e.g. `test-ns:default`
"a_key": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
},
"name": "A String", # Output only. The resource name, in the format `projects/*/policy`. There is at most one policy per project.
"updateTime": "A String", # Output only. Time when the policy was last updated.
}
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # A policy for Binary Authorization.
"admissionWhitelistPatterns": [ # Optional. Admission policy allowlisting. A matching admission request will always be permitted. This feature is typically used to exclude Google or third-party infrastructure images from Binary Authorization policies.
{ # An admission allowlist pattern exempts images from checks by admission rules.
"namePattern": "A String", # An image name pattern to allowlist, in the form `registry/path/to/image`. This supports a trailing `*` as a wildcard, but this is allowed only in text after the `registry/` part. `*` wildcard does not match `/`, i.e., `gcr.io/nginx*` matches `gcr.io/nginx@latest`, but it does not match `gcr.io/nginx/image`. This also supports a trailing `**` wildcard which matches subdirectories, i.e., `gcr.io/nginx**` matches `gcr.io/nginx/image`.
},
],
"clusterAdmissionRules": { # Optional. Per-cluster admission rules. Cluster spec format: `location.clusterId`. There can be at most one admission rule per cluster spec. A `location` is either a compute zone (e.g. us-central1-a) or a region (e.g. us-central1). For `clusterId` syntax restrictions see https://cloud.google.com/container-engine/reference/rest/v1/projects.zones.clusters.
"a_key": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
},
"defaultAdmissionRule": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation. # Required. Default admission rule for a cluster without a per-cluster, per- kubernetes-service-account, or per-istio-service-identity admission rule.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
"description": "A String", # Optional. A descriptive comment.
"etag": "A String", # Optional. Used to prevent updating the policy when another request has updated it since it was retrieved.
"globalPolicyEvaluationMode": "A String", # Optional. Controls the evaluation of a Google-maintained global admission policy for common system-level images. Images not covered by the global policy will be subject to the project admission policy. This setting has no effect when specified inside a global admission policy.
"istioServiceIdentityAdmissionRules": { # Optional. Per-istio-service-identity admission rules. Istio service identity spec format: `spiffe:///ns//sa/` or `/ns//sa/` e.g. `spiffe://example.com/ns/test-ns/sa/default`
"a_key": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
},
"kubernetesNamespaceAdmissionRules": { # Optional. Per-kubernetes-namespace admission rules. K8s namespace spec format: `[a-z.-]+`, e.g. `some-namespace`
"a_key": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
},
"kubernetesServiceAccountAdmissionRules": { # Optional. Per-kubernetes-service-account admission rules. Service account spec format: `namespace:serviceaccount`. e.g. `test-ns:default`
"a_key": { # An admission rule specifies either that all container images used in a pod creation request must be attested to by one or more attestors, that all pod creations will be allowed, or that all pod creations will be denied. Images matching an admission allowlist pattern are exempted from admission rules and will never block a pod creation.
"enforcementMode": "A String", # Required. The action when a pod creation is denied by the admission rule.
"evaluationMode": "A String", # Required. How this admission rule will be evaluated.
"requireAttestationsBy": [ # Optional. The resource names of the attestors that must attest to a container image, in the format `projects/*/attestors/*`. Each attestor must exist before a policy can reference it. To add an attestor to a policy the principal issuing the policy change request must be able to read the attestor resource. Note: this field must be non-empty when the evaluation_mode field specifies REQUIRE_ATTESTATION, otherwise it must be empty.
"A String",
],
},
},
"name": "A String", # Output only. The resource name, in the format `projects/*/policy`. There is at most one policy per project.
"updateTime": "A String", # Output only. Time when the policy was last updated.
}</pre>
</div>
</body></html>
|
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_13b_testAbaNumberCheck_27385_good_73r.html
|
dcarda/aba.route.validator
|
<!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"> 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_13b.html">Class Test_AbaRouteValidator_13b</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_27385_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_13b.html?line=4504#src-4504" >testAbaNumberCheck_27385_good</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:42:34
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </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_27385_good</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=9207#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>
|
page/4/index.html
|
daringpig/daringpig.github.io
|
<!DOCTYPE html>
<html lang="en">
<!-- Head tag -->
<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="马浩珍在 Github 上的个人博客">
<meta name="keyword" content="haojen,马浩珍,前端,全栈,hexo,Anisina,blog,github">
<meta name="theme-color" content="#600090">
<meta name="msapplication-navbutton-color" content="#600090">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#600090">
<link rel="shortcut icon" href="http://icons.iconarchive.com/icons/blackvariant/button-ui-requests-15/256/Amazon-Kindle-icon.png">
<link rel="alternate" type="application/atom+xml" title="Haojen" href="/atom.xml">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" href="//cdn.bootcss.com/font-awesome/4.6.3/css/font-awesome.css">
<title>
Haojen's blog
</title>
<link rel="canonical" href="https://haojen.github.io/page/4/">
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="/css/blog-style.css">
<!-- Pygments Github CSS -->
<link rel="stylesheet" href="/css/syntax.css">
</head>
<style>
header.intro-header {
background-image: url('//oco8bvfr8.qnssl.com/lion-blur-bg.jpg')
}
</style>
<!-- hack iOS CSS :active style -->
<body ontouchstart="" class="animated fadeIn">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top " id="nav-top" data-ispost = "false" data-istags="false
" data-ishome = "true" >
<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">
<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 animated pulse" href="/">
<span class="brand-logo">
Haojen
</span>
's Blog
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- Known Issue, found by Hux:
<nav>'s height woule be hold on by its content.
so, when navbar scale out, the <nav> will cover tags.
also mask any touch event of tags, unfortunately.
-->
<!-- /.navbar-collapse -->
<div id="huxblog_navbar">
<div class="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/my-works/">My works</a>
</li>
<li>
<a href="/tags/">Tags</a>
</li>
</ul>
</div>
</div>
</div>
<!-- /.container -->
</nav>
<script>
// Drop Bootstarp low-performance Navbar
// Use customize navbar with high-quality material design animation
// in high-perf jank-free CSS3 implementation
// var $body = document.body;
var $toggle = document.querySelector('.navbar-toggle');
var $navbar = document.querySelector('#huxblog_navbar');
var $collapse = document.querySelector('.navbar-collapse');
$toggle.addEventListener('click', handleMagic)
function handleMagic(e){
if ($navbar.className.indexOf('in') > 0) {
// CLOSE
$navbar.className = " ";
// wait until animation end.
setTimeout(function(){
// prevent frequently toggle
if($navbar.className.indexOf('in') < 0) {
$collapse.style.height = "0px"
}
},400)
}else{
// OPEN
$collapse.style.height = "auto"
$navbar.className += " in";
}
}
</script>
<!-- Main Content -->
<style>
.custom-haojen-container .post-preview:nth-of-type(1),
.custom-haojen-container .post-preview-poetry:nth-of-type(1) {
text-align: center;
background-repeat: no-repeat;
border-radius: 3px;
background-size: cover;
padding: 0;
height: 300px;
display: table;
width: 100%;
background-color: rgba(0, 0, 0, 0.16);
}
/*去掉诗歌的背景图片*/
.custom-haojen-container .post-preview-poetry:nth-of-type(1) {
background-image: none !important;
background-color: rgba(255, 248, 220, 0.5);
}
.custom-haojen-container .post-preview:nth-child(1) h2,
.custom-haojen-container .post-preview:nth-child(1) .post-meta,
.custom-haojen-container .post-preview:nth-child(1) .post-subtitle {
text-shadow: 0 0 40px rgba(0, 0, 0, 1);
letter-spacing: 1px;
color: #fff;
margin-top: 0;
padding-left: 60px;
padding-right: 60px;
}
.custom-haojen-container .post-preview:nth-child(1) .post-meta {
font-size: .9em;
font-weight: 300;
margin-top: 0;
}
.custom-haojen-container .post-preview-poetry:nth-child(1) .post-subtitle {
letter-spacing: 6px;
font-size: 18px;
font-family: unset;
font-weight: 400;
color: rgba(0, 0, 0, .75)
}
/*不显示摘要*/
.custom-haojen-container .post-preview:nth-child(1) .post-content-preview {
display: none
}
/*只第一个显示背景图片*/
.custom-haojen-container .post-preview:not(:nth-child(1)) {
background-image: none !important;
}
/*第一个分界线去掉*/
.custom-haojen-container hr:nth-of-type(1) {
display: none;
}
/*主题*/
.custom-haojen-container .post-preview:nth-of-type(1) > a {
display: table-cell;
vertical-align: middle;
}
/*诗词标题*/
.custom-haojen-container .post-preview-poetry:nth-child(1) h2 {
font-size: 35px;
font-family: STKaiti;
color: rgba(0, 0, 0, .8);
}
.custom-haojen-container .post-preview-poetry:nth-of-type(1) .post-meta {
color: #0e2231;
}
@media (max-width: 768px) {
.custom-haojen-container .post-preview:nth-child(1) {
height: 240px;
}
.custom-haojen-container .post-preview-poetry:nth-child(1) h2 {
font-size: 28px !important;
margin-top: 0;
}
.custom-haojen-container .post-preview:nth-child(1) .post-subtitle {
font-size: 18px;
font-weight: 400;
padding-left: 0;
padding-right: 0;
}
.custom-haojen-container .post-preview:nth-of-type(1) > a {
padding: 20px
}
}
/*手机屏幕*/
@media (max-width: 400px) {
.custom-haojen-container .post-preview:nth-child(1) {
height: 195px;
}
.custom-haojen-container .post-preview-poetry:nth-child(1) h2 {
font-size: 20px !important;
}
.custom-haojen-container .post-preview:nth-child(1) .post-subtitle {
font-size: 16px;
}
.custom-haojen-container .post-preview:nth-child(1) a {
padding: 30px 20px;
}
}
</style>
<!-- Page Header -->
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1 visible-xs-block visible-sm-block">
<div class="row">
<header class="intro-header">
<div class="container">
<div class="site-heading text-center">
<div class="about-me">
<!--移动端头部显示-->
<img src="//oco8bvfr8.qnssl.com/new_aman.jpg?imageView2/2/w/300/h/300/interlace/1/q/90"/>
<h5><a href="/about/">Haojen Ma</a></h5>
<p>求知若饥 虚心若愚</p>
</div>
</div>
</div>
</header>
</div>
</div>
<!-- Main Content -->
<div class="container custom-haojen-container">
<!-- Post Container -->
<div class="row">
<div class="col-lg-8 col-lg-offset-1 col-md-8 col-md-offset-1 col-sm-12 col-xs-12 post-container">
<!-- Main Content -->
<div class="post-preview "
style="background-image: url('//oco8bvfr8.qnssl.com/16-8-new-bg.jpg?imageView2/1/w/800/h/300/interlace/1/q/80')">
<a href="/2015/12/11/复习整理/">
<h2 class="post-title">
HTML 初学复习笔记
</h2>
<p class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> 2015-12-11
</p>
<div class="post-content-preview">
<p>
第一阶段复习: HTML
重新认识到的
<hr/>
新元素
<address>这里可以添加地址,地址将呈现斜体字</address>
<a href="mailto:someName@xxmail.com?subject=回复主题& b..
</p>
</div>
</a>
</div>
<hr>
<div class="post-preview "
style="background-image: url('//oco8bvfr8.qnssl.com/16-8-new-bg.jpg?imageView2/1/w/800/h/300/interlace/1/q/80')">
<a href="/2015/12/10/我所不知道的_json/">
<h2 class="post-title">
你所不知道的 JSON
</h2>
<p class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> 2015-12-10
</p>
<div class="post-content-preview">
<p>
JSON 里面的字符串必须使用双引号,而如果使用单引号的话会导致语法错误
不支持 undefined
JSON 没有变量概念
没有末尾的分号,因为这不是 JS 语句,所以不需要分号
对象的属性必须加双引号
JSON 对象有两个方法:stringify() 和parse() , 这两个方法分别用..
</p>
</div>
</a>
</div>
<hr>
<div class="post-preview "
style="background-image: url('//oco8bvfr8.qnssl.com/16-8-new-bg.jpg?imageView2/1/w/800/h/300/interlace/1/q/80')">
<a href="/2015/12/10/BOM 概览/">
<h2 class="post-title">
BOM 概览
</h2>
<p class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> 2015-12-10
</p>
<h3 class="post-subtitle">
BOM 的简单介绍,也涉及到 DOM
</h3>
<div class="post-content-preview">
<p>
window 对象
Javascript 的全局作用域 global
location 对象
浏览器的 URL , 前进后退
navigator 对象
浏览器的版本信息,获取用户的平台, 配置等信息
history 对象
浏览器的历史记录
screen 对象
用户的显示器信息
DOM
需要了解的..
</p>
</div>
</a>
</div>
<hr>
<div class="post-preview "
style="background-image: url('//oco8bvfr8.qnssl.com/16-8-new-bg.jpg?imageView2/1/w/800/h/300/interlace/1/q/80')">
<a href="/2015/12/05/人类的性存在/">
<h2 class="post-title">
人类的性存在
</h2>
<p class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> 2015-12-05
</p>
<h3 class="post-subtitle">
一本包涵了世界各地性文化的书籍,客观严谨
</h3>
<div class="post-content-preview">
<p>
第一章 性的视野
###性研究发展史
###性禁忌
在大多数地区,这些禁忌都是存在的
乱伦
婚外情
###同性恋
同性恋的三条一般性规律
无论一个社会群体如何对待同性恋,同性恋的存在总是少数的,并且同性恋存在世界各地。
男人比女人更可能发生同性行为
在任何一个社会中,同性性行为从不是被学习..
</p>
</div>
</a>
</div>
<hr>
<div class="post-preview "
style="background-image: url('//oco8bvfr8.qnssl.com/16-8-new-bg.jpg?imageView2/1/w/800/h/300/interlace/1/q/80')">
<a href="/2015/12/05/聆听音乐_by_耶鲁大学/">
<h2 class="post-title">
聆听音乐
</h2>
<p class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> 2015-12-05
</p>
<h3 class="post-subtitle">
音乐是意志的本尊--叔本华
</h3>
<div class="post-content-preview">
<p>
该笔记内容处理在该视频或书籍中学到的东西,整理出来帮助我更好的加深与理解,且在学习的过程中锻炼我在阅读书籍或者视频的过程中集中精力,更好的理解内容本身。
所以在记录的过程中, 只根据个人的判断对内容的重要性进行记录
<!-- more -->
1 导言
大脑中的哪里是处理声音的?
左..
</p>
</div>
</a>
</div>
<hr>
<div class="post-preview "
style="background-image: url('//oco8bvfr8.qnssl.com/16-8-new-bg.jpg?imageView2/1/w/800/h/300/interlace/1/q/80')">
<a href="/2015/11/25/一元运算符/">
<h2 class="post-title">
一元运算符
</h2>
<p class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> 2015-11-25
</p>
<div class="post-content-preview">
<p>
前++ & 前--
在计算表达式之前将给定的值进行自增或自减操作
var a =2
var b =++a //b输出 3
后++ & 后- -
在计算表达式之后将给定的值进行自增或自减操作
var a=2
var b=a-- //此时 b等于 a
var c =b //c =..
</p>
</div>
</a>
</div>
<hr>
<div class="post-preview "
style="background-image: url('//oco8bvfr8.qnssl.com/16-8-new-bg.jpg?imageView2/1/w/800/h/300/interlace/1/q/80')">
<a href="/2015/11/11/js_命名规范/">
<h2 class="post-title">
Javascript 不同的数据类型命名规范
</h2>
<p class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> 2015-11-11
</p>
<div class="post-content-preview">
<p>
Array 前缀 a
aSomeArray //etc
Boolean 前缀 b
bSomeBoolean //etc
浮点数 前缀 f
fSomeFloat //etc
函数 前缀 fn
fnSomeFunction //etc
整数 前缀 i
iSomeInteger //etc
..
</p>
</div>
</a>
</div>
<hr>
<div class="post-preview "
style="background-image: url('//oco8bvfr8.qnssl.com/16-8-new-bg.jpg?imageView2/1/w/800/h/300/interlace/1/q/80')">
<a href="/2015/11/10/定时器学习/">
<h2 class="post-title">
定时器
</h2>
<p class="post-meta">
<i class="fa fa-calendar" aria-hidden="true"></i> 2015-11-10
</p>
<div class="post-content-preview">
<p>
setTimeOut
var timer = setTimeOut(function(){},1000 )//第一个参数是需要执行的程序,第二个是执行前的等待时间
设定一个程序触发后,执行前的等待时间
clearTimeOut
clearTimeOut(timer)
清除 setTimeOu..
</p>
</div>
</a>
</div>
<hr>
<!-- 翻页 pager -->
<ul class="pager">
<li class="previous">
<a href="/page/3/">← Newer Posts</a>
</li>
<li class="next">
<a href="/page/5/">Older Posts →</a>
</li>
</ul>
</div>
<!-- Sidebar Container -->
<div class="
col-lg-3 col-lg-offset-0
col-md-3 col-md-offset-0
col-sm-12
col-xs-12
sidebar-container
">
<!-- About Me -->
<section class="visible-md visible-lg" style="padding: 0 18px">
<div class="short-about">
<!--侧边栏头像-->
<img src="//oco8bvfr8.qnssl.com/new_aman.jpg?imageView2/2/w/300/h/300/interlace/1/q/90"/>
<h5><a href="/about/">Haojen Ma</a></h5>
<p>求知若饥 虚心若愚</p>
<hr>
<!-- SNS Link 社交 -->
<ul class="list-inline">
<li>
<a target="_blank" href="https://twitter.com/ehazon">
<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 target="_blank" href="https://www.zhihu.com/people/megahertz">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-stack-1x fa-inverse">知</i>
</span>
</a>
</li>
<li>
<a target="_blank" href="http://weibo.com/haojen">
<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>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://github.com/haojen">
<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>
</div>
</section>
<!-- Featured Tags 标签 -->
<section>
<div class="tags">
<a href="/tags/#CSS" title="CSS"
rel="4">CSS</a>
<a href="/tags/#Anisina" title="Anisina"
rel="2">Anisina</a>
<a href="/tags/#JS" title="JS"
rel="7">JS</a>
<a href="/tags/#jQuery" title="jQuery"
rel="2">jQuery</a>
<a href="/tags/#HTML" title="HTML"
rel="2">HTML</a>
<a href="/tags/#Node.js" title="Node.js"
rel="2">Node.js</a>
<a href="/tags/#诗词" title="诗词"
rel="2">诗词</a>
</div>
</section>
<hr>
<h5 style="text-align: center;">Friends</h5>
<ul class="list-inline" style="text-align: center;">
<li><a href="http://blog.kaijun.rocks" target="_blank">Kaijun's Blog</a></li>
<li><a href="http://huangxuan.me" target="_blank">Hux Blog</a></li>
<li><a href="#" target="_blank">Foo</a></li>
<li><a href="#" target="_blank">Bar</a></li>
<li><a href="#" target="_blank">Example Friends</a></li>
<li><a href="#" target="_blank">It helps SEO</a></li>
</ul>
</div>
</div>
</div>
<!-- Footer -->
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1 text-center">
<br>
<ul class="list-inline text-center">
<li>
<a target="_blank" href="https://twitter.com/ehazon">
<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 target="_blank" href="https://www.zhihu.com/people/megahertz">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-stack-1x fa-inverse">知</i>
</span>
</a>
</li>
<li>
<a target="_blank" href="http://weibo.com/haojen">
<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>
</span>
</a>
</li>
<li>
<a target="_blank" href="https://github.com/haojen">
<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 © Haojen 2016
<br>
<span id="busuanzi_container_site_pv" style="font-size: 12px;">PV: <span id="busuanzi_value_site_pv"></span> Times</span>
<br>
Theme by <a href="https://haojen.github.io/">Haojen Ma</a>
</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/blog.js"></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>
<!-- jquery.tagcloud.js -->
<script>
// only load tagcloud.js in tag.html
if($('#tag_cloud').length !== 0){
async("https://haojen.github.io/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>
<!--fastClick.js -->
<script>
async("//cdn.bootcss.com/fastclick/1.0.6/fastclick.min.js", function(){
var $nav = document.querySelector("nav");
if($nav) FastClick.attach($nav);
})
</script>
<!-- Google Analytics -->
<script>
// dynamic User by Hux
var _gaId = 'UA-78633618-1';
var _gaDomain = 'auto';
// 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>
<!-- Baidu Tongji -->
<!-- swiftype -->
<script type="text/javascript">
(function(w,d,t,u,n,s,e){w['SwiftypeObject']=n;w[n]=w[n]||function(){
(w[n].q=w[n].q||[]).push(arguments);};s=d.createElement(t);
e=d.getElementsByTagName(t)[0];s.async=1;s.src=u;e.parentNode.insertBefore(s,e);
})(window,document,'script','//s.swiftypecdn.com/install/v2/st.js','_st');
_st('install','Wedjzx3dn5qkFKLneXxt','2.0.0');
</script>
<script async src="//dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<!--wechat title img-->
<img class="wechat-title-img" src="//oco8bvfr8.qnssl.com/new_aman.jpg?imageView2/2/w/300/h/300/interlace/1/q/90">
</body>
</html>
|
docs/sdl2_sys/pixels/constant.SDL_PIXELFORMAT_BGRA5551.html
|
nitro-devs/nitro-game-engine
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `SDL_PIXELFORMAT_BGRA5551` constant in crate `sdl2_sys`.">
<meta name="keywords" content="rust, rustlang, rust-lang, SDL_PIXELFORMAT_BGRA5551">
<title>sdl2_sys::pixels::SDL_PIXELFORMAT_BGRA5551 - Rust</title>
<link rel="stylesheet" type="text/css" href="../../normalize.css">
<link rel="stylesheet" type="text/css" href="../../rustdoc.css">
<link rel="stylesheet" type="text/css" href="../../main.css">
</head>
<body class="rustdoc constant">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<nav class="sidebar">
<p class='location'><a href='../index.html'>sdl2_sys</a>::<wbr><a href='index.html'>pixels</a></p><script>window.sidebarCurrent = {name: 'SDL_PIXELFORMAT_BGRA5551', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</nav>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
type="search">
</div>
</form>
</nav>
<section id='main' class="content">
<h1 class='fqn'><span class='in-band'>Constant <a href='../index.html'>sdl2_sys</a>::<wbr><a href='index.html'>pixels</a>::<wbr><a class="constant" href=''>SDL_PIXELFORMAT_BGRA5551</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>−</span>]
</a>
</span><a class='srclink' href='../../src/sdl2_sys/pixels.rs.html#65' title='goto source code'>[src]</a></span></h1>
<pre class='rust const'>pub const SDL_PIXELFORMAT_BGRA5551: <a class="type" href="../../sdl2_sys/pixels/type.SDL_PixelFormatEnum.html" title="type sdl2_sys::pixels::SDL_PixelFormatEnum">SDL_PixelFormatEnum</a><code> = </code><code>360976386</code></pre></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<aside id="help" class="hidden">
<div>
<h1 class="hidden">Help</h1>
<div class="shortcuts">
<h2>Keyboard Shortcuts</h2>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
<dt>+</dt>
<dd>Collapse/expand all sections</dd>
</dl>
</div>
<div class="infos">
<h2>Search Tricks</h2>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>type</code>, <code>macro</code>,
and <code>const</code>.
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code> or <code>* -> vec</code>)
</p>
</div>
</div>
</aside>
<script>
window.rootPath = "../../";
window.currentCrate = "sdl2_sys";
</script>
<script src="../../jquery.js"></script>
<script src="../../main.js"></script>
<script defer src="../../search-index.js"></script>
</body>
</html>
|
core/gramar/apidocs/org/gramar/tag/class-use/BodyTagHandler.html
|
chrisGerken/gramar
|
<!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_75) on Wed Jul 20 17:40:21 CDT 2016 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.gramar.tag.BodyTagHandler (org.gramar:gramar 1.0.0 API)</title>
<meta name="date" content="2016-07-20">
<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.gramar.tag.BodyTagHandler (org.gramar:gramar 1.0.0 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/gramar/tag/BodyTagHandler.html" title="class in org.gramar.tag">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/gramar/tag/class-use/BodyTagHandler.html" target="_top">Frames</a></li>
<li><a href="BodyTagHandler.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.gramar.tag.BodyTagHandler" class="title">Uses of Class<br>org.gramar.tag.BodyTagHandler</h2>
</div>
<div class="classUseContainer">No usage of org.gramar.tag.BodyTagHandler</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/gramar/tag/BodyTagHandler.html" title="class in org.gramar.tag">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/gramar/tag/class-use/BodyTagHandler.html" target="_top">Frames</a></li>
<li><a href="BodyTagHandler.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 © 2016. All rights reserved.</small></p>
</body>
</html>
|
web/templates/layout/single_default.html
|
pythonstock/stock
|
{% extends "../common/meta.html" %}
{% extends "../common/header.html" %}
{% extends "../common/footer.html" %}
{% extends "single_main.html" %}
|
surfers/mqs/jses.html
|
chicofilho/fst
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FST - Jennings Sessoms</title>
<meta name="description" content="Keep track of the statistics from Jennings Sessoms. Average heat score, heat wins, heat wins percentage, epic heats road to the final">
<meta name="author" content="">
<link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta property="og:title" content="Fantasy Surfing tips"/>
<meta property="og:image" content="https://fantasysurfingtips.com/img/just_waves.png"/>
<meta property="og:description" content="See how great Jennings Sessoms is surfing this year"/>
<!-- Bootstrap Core CSS - Uses Bootswatch Flatly Theme: https://bootswatch.com/flatly/ -->
<link href="https://fantasysurfingtips.com/css/bootstrap.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="https://fantasysurfingtips.com/css/freelancer.css" rel="stylesheet">
<link href="https://cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.css" rel="stylesheet" />
<!-- Custom Fonts -->
<link href="https://fantasysurfingtips.com/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.css">
<script src="https://code.jquery.com/jquery-2.x-git.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-ujs/1.2.1/rails.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.min.js"></script>
<script src="https://www.w3schools.com/lib/w3data.js"></script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-2675412311042802",
enable_page_level_ads: true
});
</script>
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.6";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- Navigation -->
<div w3-include-html="https://fantasysurfingtips.com/layout/header.html"></div>
<!-- Header -->
<div w3-include-html="https://fantasysurfingtips.com/layout/sponsor.html"></div>
<section >
<div class="container">
<div class="row">
<div class="col-sm-3 ">
<div class="col-sm-2 ">
</div>
<div class="col-sm-8 ">
<!-- <img src="http://fantasysurfingtips.com/img/surfers/jses.png" class="img-responsive" alt=""> -->
<h3 style="text-align:center;">Jennings Sessoms</h3>
<a href="https://twitter.com/share" class="" data-via="fansurfingtips"><i class="fa fa-twitter"></i> Share on Twitter</i></a> <br/>
<a class="fb-xfbml-parse-ignore" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Ffantasysurfingtips.com%2Fsurfers%2Fjses&src=sdkpreparse"><i class="fa fa-facebook"></i> Share on Facebook</a>
</div>
<div class="col-sm-2 ">
</div>
</div>
<div class="col-sm-3 portfolio-item">
</div>
<div class="col-sm-3 portfolio-item">
<h6 style="text-align:center;">Avg Heat Score (FST DATA)</h6>
<h1 style="text-align:center;">3.6</h1>
</div>
</div>
<hr/>
<h4 style="text-align:center;" >Heat Stats (FST data)</h4>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h6 style="text-align:center;">Heats</h6>
<h2 style="text-align:center;">1</h2>
</div>
<div class="col-sm-4 portfolio-item">
<h6 style="text-align:center;">Heat wins</h6>
<h2 style="text-align:center;">0</h2>
</div>
<div class="col-sm-4 portfolio-item">
<h6 style="text-align:center;">HEAT WINS PERCENTAGE</h6>
<h2 style="text-align:center;">0.0%</h2>
</div>
</div>
<hr/>
<h4 style="text-align:center;">Avg Heat Score progression</h4>
<div id="avg_chart" style="height: 250px;"></div>
<hr/>
<h4 style="text-align:center;">Heat stats progression</h4>
<div id="heat_chart" style="height: 250px;"></div>
<hr/>
<style type="text/css">
.heats-all{
z-index: 3;
margin-left: 5px;
cursor: pointer;
}
</style>
<div class="container">
<div id="disqus_thread"></div>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
var disqus_config = function () {
this.page.url = "http://fantasysurfingtips.com/surfers/jses"; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = '3291'; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//fantasysurfingtips.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
</section>
<script type="text/javascript">
$('.heats-all').click(function(){
$('.heats-all-stat').css('display', 'none')
$('#'+$(this).attr('id')+'-stat').css('display', 'block')
});
$('.heats-2016').click(function(){
$('.heats-2016-stat').css('display', 'none')
$('#'+$(this).attr('id')+'-stat').css('display', 'block')
});
$('document').ready(function(){
new Morris.Line({
// ID of the element in which to draw the chart.
element: 'avg_chart',
// Chart data records -- each entry in this array corresponds to a point on
// the chart.
data: [],
// The name of the data record attribute that contains x-values.
xkey: 'year',
// A list of names of data record attributes that contain y-values.
ykeys: ['avg', 'avg_all'],
// Labels for the ykeys -- will be displayed when you hover over the
// chart.
labels: ['Avg score in year', 'Avg score FST DATA']
});
new Morris.Bar({
// ID of the element in which to draw the chart.
element: 'heat_chart',
// Chart data records -- each entry in this array corresponds to a point on
// the chart.
data: [],
// The name of the data record attribute that contains x-values.
xkey: 'year',
// A list of names of data record attributes that contain y-values.
ykeys: ['heats', 'wins', 'percs'],
// Labels for the ykeys -- will be displayed when you hover over the
// chart.
labels: ['Heats surfed', 'Heats won', 'Winning percentage']
});
});
</script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<!-- Footer -->
<div w3-include-html="https://fantasysurfingtips.com/layout/footer.html"></div>
<script type="text/javascript">
(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-74337819-1', 'auto'); // Replace with your property ID.
ga('send', 'pageview');
</script>
<script>
w3IncludeHTML();
</script>
<!-- jQuery -->
<script src="https://fantasysurfingtips.com/js/jquery.js"></script>
<script src="https://cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="https://fantasysurfingtips.com/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="https://fantasysurfingtips.com/js/classie.js"></script>
<script src="https://fantasysurfingtips.com/js/cbpAnimatedHeader.js"></script>
<!-- Contact Form JavaScript -->
<script src="https://fantasysurfingtips.com/js/jqBootstrapValidation.js"></script>
<script src="https://fantasysurfingtips.com/js/contact_me.js"></script>
<!-- Custom Theme JavaScript -->
<script src="https://fantasysurfingtips.com/js/freelancer.js"></script>
<script type="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<script type="https://cdn.datatables.net/1.10.12/js/dataTables.bootstrap.min.js"></script>
</body>
</html>
|
app/b2c/view/site/cart/item/goods.html
|
liuguogen/Ecstore
|
<{if $aCart.object.goods}>
<{foreach from=$aCart.object.goods item=goods key=_obj_key}>
<tbody class="cart-item">
<!-- 主商品 -->
<tr class="cart-product<{if !$goods.adjunct}> last<{/if}>">
<td>
<input type="hidden" name="obj_type" value="goods">
<input type="hidden" name="goods_ident" value="<{$goods.obj_ident}>">
<input type="hidden" name="goods_id" value="<{$goods.obj_items.products.0.goods_id}>">
<input type="hidden" name="min" value="1"/>
<input type="hidden" name="max" value="<{$goods.store.real}>"/>
<input type="hidden" name="stock" value="<{$goods.store.store}>"/>
<div class="p-pic">
<a href="<{link app=b2c ctl=site_product act=index arg0=$goods.obj_items.products.0.product_id}>" target="_blank"><img src="<{$goods.obj_items.products.0.default_image.thumbnail|default:$env.conf.site.default_thumbnail_pic|storager:'s'}>" alt="<{$goods.obj_items.products.0.name}>"></a>
</td>
<td class="p-info">
<div class="p-title"><a target="_blank" href="<{link app=b2c ctl=site_product arg0=$goods.obj_items.products.0.product_id}>"><{$goods.obj_items.products.0.name}></a></div>
<div class="p-spec<{if !$goods.obj_items.products.0.spec_info}> fix-empty<{/if}>"><{$goods.obj_items.products.0.spec_info|spec_desc}></div>
<!-- 赠品 -->
<{if $goods.special_type}>
<div class="p-gift">
<span class="tag"><b>[<{$goods.special_type}>]</b></span>
</div>
<{/if}>
<{foreach from=$goods.gift item=gift key=_gift_key}>
<div class="p-gift">
<b>[赠品]</b><a target="_blank" href="<{link app=gift ctl=site_gift arg0=$gift.product_id}>"><{$gift.name}><{$gift.spec_info|spec_desc}></a> <i><{$gift.price.price|cur_odr}> x <{$gift.quantity}></i>
</div>
<{/foreach}>
<!-- 商品促销 -->
<div class="p-promotion">
<ul>
<{foreach from=$aCart.promotion.goods.[$goods.obj_ident] item=goods_promotion}>
<{if $goods_promotion.cart_display}>
<li>
<b>[<{$goods_promotion.desc_tag}>]</b><{$goods_promotion.name}>
</li>
<{/if}>
<{/foreach}>
</ul>
</div>
</td>
<td class="p-price"><{$goods.obj_items.products.0.price.price|cur_odr}></td>
<td>
<div class="p-quantity">
<a href="javascript:void(0);" class="btn-decrease">-</a>
<input type="text" name="modify_quantity[<{$goods.obj_ident}>][quantity]" value="<{$goods.quantity}>">
<a href="javascript:void(0);" class="btn-increase">+</a>
</div>
<{if $goods.store.store == 0}><span class="warn-message"><{t}>库存不足<{/t}></span>
<{elseif $goods.store.store <= 5}><span class="warn-message"><{t}>余量有限<{/t}></span><{/if}>
</td>
<td class="p-discount"><{($goods.discount_amount_prefilter)+(($goods.obj_items.products.0.price.price-$goods.obj_items.products.0.price.member_lv_price)*$goods.quantity)|cur_odr}></td>
<td class="p-integral">
<{if ($goods.obj_items.products.0.gain_score * $goods.quantity)}>
<{$goods.obj_items.products.0.gain_score * $goods.quantity}>
<{else}>
-
<{/if}>
</td>
<td class="p-subtotal"><{$goods.subtotal_prefilter_after|cur_odr}></td>
<td class="p-action">
<{if $login=='nologin'}>
<a href="<{link app=b2c ctl=site_passport act=login}>" class="btn-fav">收藏</a>
<{else}>
<a href="javascript:void(0);" class="btn-fav" rel="_addfav_" data-gid="<{$goods.obj_items.products.0.goods_id}>">收藏</a>
<{/if}>
<i>|</i>
<a href="javascript:void(0);" class="btn-delete">移除</a>
</td>
</tr>
<!-- 配件 -->
<{foreach from=$goods.adjunct item=adjunct key=key name=adjunct}>
<tr class="p-adjunct<{if $smarty.foreach.adjunct.last}> last<{/if}>">
<td>
<input type="hidden" name="obj_type" value="goods">
<input type="hidden" name="min" value="<{$adjunct.store.min_buy_store}>"/>
<input type="hidden" name="max" value="<{$adjunct.store.real}>"/>
<input type="hidden" name="stock" value="<{$adjunct.store.store}>"/>
<div class="p-adjunct-icon"><{t}>配件<{/t}><br><{t}>商品<{/t}></div>
</td>
<td class="p-info">
<div class="p-pic">
<a target="_blank" href="<{link app=b2c ctl=site_product arg0=$adjunct.product_id}>"><img src="<{$adjunct.default_image.thumbnail|default:$env.conf.site.default_thumbnail_pic|storager:'s'}>" alt="<{$adjunct.name}>,<{$adjunct.spec_info}>"></a>
</div>
<div class="p-title"><a target="_blank" href="<{link app=b2c ctl=site_product arg0=$adjunct.product_id}>"><{$adjunct.name}>,<{$adjunct.spec_info|spec_desc}></a></div>
</td>
<td class="p-price"><{$adjunct.json_price.price|cur_odr}></td>
<td>
<div class="p-quantity">
<a href="javascript:void(0);" class="btn-decrease">-</a>
<input type="text" name="modify_quantity[<{$goods.obj_ident}>][adjunct][<{$adjunct.group_id}>][<{$adjunct.product_id}>][quantity]" id="" value="<{if $adjunct.store.store == 0}>0<{else}><{$adjunct.quantity}><{/if}>">
<a href="javascript:void(0);" class="btn-increase">+</a>
</div>
<{if $adjunct.store.store == 0}>
<span class="warn-message"><{t}>库存不足<{/t}></span>
<{elseif $adjunct.store.store <= 5}>
<span class="warn-message"><{t}>余量有限<{/t}></span>
<{/if}>
</td>
<td class="p-discount"><{($adjunct.json_price.price-$adjunct.price.price)*$adjunct.quantity|cur_odr}></td>
<td class="p-integral">
<{if ($adjunct.gain_score * $adjunct.quantity)}>
<{($adjunct.gain_score * $adjunct.quantity)}>
<{else}>
-
<{/if}>
</td>
<td class="p-subtotal"><{$adjunct.subtotal_price|cur_odr}></td>
<td class="p-action">
<{if $login=='nologin'}>
<a href="<{link app=b2c ctl=site_passport act=login}>" class="btn-fav">收藏</a>
<{else}>
<a href="javascript:void(0);" class="btn-fav" rel="_addfav_" data-gid="<{$adjunct.goods_id}>">收藏</a>
<{/if}>
<i>|</i>
<a href="javascript:void(0);" class="btn-delete">移除</a>
</td>
</tr>
<{/foreach}>
</tbody>
<{/foreach}>
<{/if}>
|
dingschool/files/金额结算表/styles.css
|
yicold/axure-case
|
body {
margin:0px;
background-image:none;
position:static;
left:auto;
width:1502px;
margin-left:0;
margin-right:0;
text-align:left;
}
#base {
position:absolute;
z-index:0;
}
#u23814_img {
position:absolute;
left:0px;
top:0px;
width:1283px;
height:626px;
}
#u23814 {
position:absolute;
left:219px;
top:232px;
width:1283px;
height:626px;
}
#u23815 {
position:absolute;
left:2px;
top:305px;
width:1279px;
visibility:hidden;
word-wrap:break-word;
}
#u23817_div {
position:absolute;
left:0px;
top:0px;
width:220px;
height:804px;
background:inherit;
background-color:rgba(59, 79, 114, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
font-size:14px;
color:#FFFFFF;
}
#u23817 {
position:absolute;
left:0px;
top:103px;
width:220px;
height:804px;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
font-size:14px;
color:#FFFFFF;
}
#u23818 {
position:absolute;
left:2px;
top:392px;
width:216px;
word-wrap:break-word;
}
#u23819_img {
position:absolute;
left:0px;
top:0px;
width:1264px;
height:2px;
}
#u23819 {
position:absolute;
left:239px;
top:869px;
width:1263px;
height:1px;
color:#999999;
}
#u23820 {
position:absolute;
left:2px;
top:-8px;
width:1259px;
visibility:hidden;
word-wrap:break-word;
}
#u23821_div {
position:absolute;
left:0px;
top:0px;
width:214px;
height:17px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#CCCCCC;
}
#u23821 {
position:absolute;
left:761px;
top:885px;
width:214px;
height:17px;
font-size:12px;
color:#CCCCCC;
}
#u23822 {
position:absolute;
left:0px;
top:0px;
width:214px;
white-space:nowrap;
}
#u23823_div {
position:absolute;
left:0px;
top:0px;
width:1502px;
height:103px;
background:inherit;
background-color:rgba(102, 204, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
font-size:28px;
text-align:left;
}
#u23823 {
position:absolute;
left:0px;
top:0px;
width:1502px;
height:103px;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
font-size:28px;
text-align:left;
}
#u23824 {
position:absolute;
left:2px;
top:34px;
width:1498px;
word-wrap:break-word;
}
#u23825_div {
position:absolute;
left:0px;
top:0px;
width:57px;
height:20px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
color:#FFFFFF;
}
#u23825 {
position:absolute;
left:240px;
top:113px;
width:57px;
height:20px;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
color:#FFFFFF;
}
#u23826 {
position:absolute;
left:0px;
top:0px;
width:57px;
white-space:nowrap;
}
#u23827_img {
position:absolute;
left:0px;
top:0px;
width:1283px;
height:45px;
}
#u23827 {
position:absolute;
left:219px;
top:103px;
width:1283px;
height:45px;
}
#u23828 {
position:absolute;
left:2px;
top:14px;
width:1279px;
visibility:hidden;
word-wrap:break-word;
}
#u23829_div {
position:absolute;
left:0px;
top:0px;
width:71px;
height:20px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
color:#FFFFFF;
}
#u23829 {
position:absolute;
left:237px;
top:112px;
width:71px;
height:20px;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
color:#FFFFFF;
}
#u23830 {
position:absolute;
left:0px;
top:0px;
width:71px;
white-space:nowrap;
}
#u23831 {
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u23832_div {
position:absolute;
left:0px;
top:0px;
width:191px;
height:32px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(204, 204, 204, 1);
border-radius:4px;
-moz-box-shadow:0px 1px 3px -2px rgba(0, 0, 0, 0.349019607843137) inset;
-webkit-box-shadow:0px 1px 3px -2px rgba(0, 0, 0, 0.349019607843137) inset;
box-shadow:0px 1px 3px -2px rgba(0, 0, 0, 0.349019607843137) inset;
}
#u23832 {
position:absolute;
left:318px;
top:166px;
width:191px;
height:32px;
}
#u23832_div.selected {
position:absolute;
left:0px;
top:0px;
width:191px;
height:32px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(102, 175, 233, 1);
border-radius:4px;
-moz-box-shadow:0px 0px 6px rgba(102, 175, 233, 0.6), 0px 1px 3px -2px rgba(0, 0, 0, 0.349019607843137) inset;
-webkit-box-shadow:0px 0px 6px rgba(102, 175, 233, 0.6), 0px 1px 3px -2px rgba(0, 0, 0, 0.349019607843137) inset;
box-shadow:0px 0px 6px rgba(102, 175, 233, 0.6), 0px 1px 3px -2px rgba(0, 0, 0, 0.349019607843137) inset;
}
#u23832.selected {
}
#u23833 {
position:absolute;
left:20px;
top:8px;
width:151px;
visibility:hidden;
word-wrap:break-word;
}
#u23834 {
position:absolute;
left:324px;
top:165px;
width:178px;
height:33px;
}
#u23834_input {
position:absolute;
left:0px;
top:0px;
width:178px;
height:33px;
background-color:transparent;
font-family:'Arial Normal', 'Arial';
font-weight:400;
font-style:normal;
font-size:14px;
text-decoration:none;
color:#333333;
text-align:left;
border-color:transparent;
outline-style:none;
}
#u23835_div {
position:absolute;
left:0px;
top:0px;
width:69px;
height:25px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
font-size:12px;
text-align:right;
}
#u23835 {
position:absolute;
left:239px;
top:171px;
width:69px;
height:25px;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
font-size:12px;
text-align:right;
}
#u23836 {
position:absolute;
left:0px;
top:0px;
width:69px;
word-wrap:break-word;
}
#u23837_div {
position:absolute;
left:0px;
top:0px;
width:45px;
height:28px;
background:inherit;
background-color:rgba(66, 139, 202, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(53, 126, 189, 1);
border-radius:3px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
font-size:12px;
line-height:18px;
}
#u23837 {
position:absolute;
left:1297px;
top:170px;
width:45px;
height:28px;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
font-size:12px;
line-height:18px;
}
#u23837_div.mouseOver {
position:absolute;
left:0px;
top:0px;
width:45px;
height:28px;
background:inherit;
background-color:rgba(50, 118, 177, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(40, 94, 142, 1);
border-radius:3px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
font-size:12px;
line-height:18px;
}
#u23837.mouseOver {
}
#u23837_div.mouseDown {
position:absolute;
left:0px;
top:0px;
width:45px;
height:28px;
background:inherit;
background-color:rgba(50, 118, 177, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(40, 94, 142, 1);
border-radius:3px;
-moz-box-shadow:0px 3px 5px -3px rgba(51, 51, 51, 0.349019607843137) inset;
-webkit-box-shadow:0px 3px 5px -3px rgba(51, 51, 51, 0.349019607843137) inset;
box-shadow:0px 3px 5px -3px rgba(51, 51, 51, 0.349019607843137) inset;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
font-size:12px;
line-height:18px;
}
#u23837.mouseDown {
}
#u23837_div.disabled {
position:absolute;
left:0px;
top:0px;
width:45px;
height:28px;
background:inherit;
background-color:rgba(66, 139, 202, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(53, 126, 189, 1);
border-radius:3px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Normal', 'Arial';
font-weight:400;
font-style:normal;
font-size:12px;
line-height:18px;
}
#u23837.disabled {
opacity:0.5;
}
#u23838 {
position:absolute;
left:10px;
top:5px;
width:25px;
white-space:nowrap;
}
#u23839_div {
position:absolute;
left:0px;
top:0px;
width:45px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(221, 221, 221, 1);
border-radius:3px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
line-height:18px;
}
#u23839 {
position:absolute;
left:1354px;
top:170px;
width:45px;
height:28px;
font-size:12px;
line-height:18px;
}
#u23839_div.mouseOver {
position:absolute;
left:0px;
top:0px;
width:45px;
height:28px;
background:inherit;
background-color:rgba(235, 235, 235, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(173, 173, 173, 1);
border-radius:3px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
line-height:18px;
}
#u23839.mouseOver {
}
#u23839_div.mouseDown {
position:absolute;
left:0px;
top:0px;
width:45px;
height:28px;
background:inherit;
background-color:rgba(235, 235, 235, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(173, 173, 173, 1);
border-radius:3px;
-moz-box-shadow:0px 3px 5px -2px rgba(51, 51, 51, 0.349019607843137) inset;
-webkit-box-shadow:0px 3px 5px -2px rgba(51, 51, 51, 0.349019607843137) inset;
box-shadow:0px 3px 5px -2px rgba(51, 51, 51, 0.349019607843137) inset;
font-size:12px;
line-height:18px;
}
#u23839.mouseDown {
}
#u23839_div.disabled {
position:absolute;
left:0px;
top:0px;
width:45px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(221, 221, 221, 1);
border-radius:3px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
line-height:18px;
}
#u23839.disabled {
opacity:0.5;
}
#u23840 {
position:absolute;
left:10px;
top:5px;
width:25px;
white-space:nowrap;
}
#u23841 {
position:absolute;
left:250px;
top:271px;
width:1229px;
height:177px;
}
#u23842_img {
position:absolute;
left:0px;
top:0px;
width:156px;
height:48px;
}
#u23842 {
position:absolute;
left:0px;
top:0px;
width:156px;
height:48px;
font-family:'PingFang SC Bold', 'PingFang SC';
font-weight:700;
font-style:normal;
color:#666666;
line-height:18px;
}
#u23843 {
position:absolute;
left:16px;
top:15px;
width:124px;
word-wrap:break-word;
}
#u23844_img {
position:absolute;
left:0px;
top:0px;
width:175px;
height:48px;
}
#u23844 {
position:absolute;
left:156px;
top:0px;
width:175px;
height:48px;
font-family:'PingFang SC Bold', 'PingFang SC';
font-weight:700;
font-style:normal;
color:#666666;
line-height:18px;
}
#u23845 {
position:absolute;
left:16px;
top:15px;
width:143px;
word-wrap:break-word;
}
#u23846_img {
position:absolute;
left:0px;
top:0px;
width:175px;
height:48px;
}
#u23846 {
position:absolute;
left:331px;
top:0px;
width:175px;
height:48px;
font-family:'PingFang SC Bold', 'PingFang SC';
font-weight:700;
font-style:normal;
color:#666666;
line-height:18px;
}
#u23847 {
position:absolute;
left:16px;
top:15px;
width:143px;
word-wrap:break-word;
}
#u23848_img {
position:absolute;
left:0px;
top:0px;
width:203px;
height:48px;
}
#u23848 {
position:absolute;
left:506px;
top:0px;
width:203px;
height:48px;
font-family:'PingFang SC Bold', 'PingFang SC';
font-weight:700;
font-style:normal;
color:#666666;
line-height:18px;
}
#u23849 {
position:absolute;
left:16px;
top:15px;
width:171px;
word-wrap:break-word;
}
#u23850_img {
position:absolute;
left:0px;
top:0px;
width:123px;
height:48px;
}
#u23850 {
position:absolute;
left:709px;
top:0px;
width:123px;
height:48px;
font-family:'PingFang SC Bold', 'PingFang SC';
font-weight:700;
font-style:normal;
color:#666666;
line-height:18px;
}
#u23851 {
position:absolute;
left:16px;
top:15px;
width:91px;
word-wrap:break-word;
}
#u23852_img {
position:absolute;
left:0px;
top:0px;
width:133px;
height:48px;
}
#u23852 {
position:absolute;
left:832px;
top:0px;
width:133px;
height:48px;
font-family:'PingFang SC Bold', 'PingFang SC';
font-weight:700;
font-style:normal;
color:#666666;
line-height:18px;
}
#u23853 {
position:absolute;
left:16px;
top:15px;
width:101px;
word-wrap:break-word;
}
#u23854_img {
position:absolute;
left:0px;
top:0px;
width:259px;
height:48px;
}
#u23854 {
position:absolute;
left:965px;
top:0px;
width:259px;
height:48px;
font-family:'PingFang SC Bold', 'PingFang SC';
font-weight:700;
font-style:normal;
color:#666666;
line-height:18px;
}
#u23855 {
position:absolute;
left:16px;
top:15px;
width:227px;
word-wrap:break-word;
}
#u23856_img {
position:absolute;
left:0px;
top:0px;
width:156px;
height:48px;
}
#u23856 {
position:absolute;
left:0px;
top:48px;
width:156px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23857 {
position:absolute;
left:16px;
top:15px;
width:124px;
word-wrap:break-word;
}
#u23858_img {
position:absolute;
left:0px;
top:0px;
width:175px;
height:48px;
}
#u23858 {
position:absolute;
left:156px;
top:48px;
width:175px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23859 {
position:absolute;
left:16px;
top:15px;
width:143px;
word-wrap:break-word;
}
#u23860_img {
position:absolute;
left:0px;
top:0px;
width:175px;
height:48px;
}
#u23860 {
position:absolute;
left:331px;
top:48px;
width:175px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23861 {
position:absolute;
left:16px;
top:15px;
width:143px;
word-wrap:break-word;
}
#u23862_img {
position:absolute;
left:0px;
top:0px;
width:203px;
height:48px;
}
#u23862 {
position:absolute;
left:506px;
top:48px;
width:203px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23863 {
position:absolute;
left:16px;
top:15px;
width:171px;
word-wrap:break-word;
}
#u23864_img {
position:absolute;
left:0px;
top:0px;
width:123px;
height:48px;
}
#u23864 {
position:absolute;
left:709px;
top:48px;
width:123px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23865 {
position:absolute;
left:16px;
top:15px;
width:91px;
word-wrap:break-word;
}
#u23866_img {
position:absolute;
left:0px;
top:0px;
width:133px;
height:48px;
}
#u23866 {
position:absolute;
left:832px;
top:48px;
width:133px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23867 {
position:absolute;
left:16px;
top:15px;
width:101px;
word-wrap:break-word;
}
#u23868_img {
position:absolute;
left:0px;
top:0px;
width:259px;
height:48px;
}
#u23868 {
position:absolute;
left:965px;
top:48px;
width:259px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23869 {
position:absolute;
left:16px;
top:15px;
width:227px;
word-wrap:break-word;
}
#u23870_img {
position:absolute;
left:0px;
top:0px;
width:156px;
height:48px;
}
#u23870 {
position:absolute;
left:0px;
top:96px;
width:156px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23871 {
position:absolute;
left:16px;
top:15px;
width:124px;
word-wrap:break-word;
}
#u23872_img {
position:absolute;
left:0px;
top:0px;
width:175px;
height:48px;
}
#u23872 {
position:absolute;
left:156px;
top:96px;
width:175px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23873 {
position:absolute;
left:16px;
top:15px;
width:143px;
word-wrap:break-word;
}
#u23874_img {
position:absolute;
left:0px;
top:0px;
width:175px;
height:48px;
}
#u23874 {
position:absolute;
left:331px;
top:96px;
width:175px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23875 {
position:absolute;
left:16px;
top:15px;
width:143px;
word-wrap:break-word;
}
#u23876_img {
position:absolute;
left:0px;
top:0px;
width:203px;
height:48px;
}
#u23876 {
position:absolute;
left:506px;
top:96px;
width:203px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23877 {
position:absolute;
left:16px;
top:15px;
width:171px;
word-wrap:break-word;
}
#u23878_img {
position:absolute;
left:0px;
top:0px;
width:123px;
height:48px;
}
#u23878 {
position:absolute;
left:709px;
top:96px;
width:123px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23879 {
position:absolute;
left:16px;
top:15px;
width:91px;
word-wrap:break-word;
}
#u23880_img {
position:absolute;
left:0px;
top:0px;
width:133px;
height:48px;
}
#u23880 {
position:absolute;
left:832px;
top:96px;
width:133px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23881 {
position:absolute;
left:16px;
top:15px;
width:101px;
word-wrap:break-word;
}
#u23882_img {
position:absolute;
left:0px;
top:0px;
width:259px;
height:48px;
}
#u23882 {
position:absolute;
left:965px;
top:96px;
width:259px;
height:48px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23883 {
position:absolute;
left:16px;
top:15px;
width:227px;
word-wrap:break-word;
}
#u23884_img {
position:absolute;
left:0px;
top:0px;
width:156px;
height:28px;
}
#u23884 {
position:absolute;
left:0px;
top:144px;
width:156px;
height:28px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23885 {
position:absolute;
left:16px;
top:6px;
width:124px;
visibility:hidden;
word-wrap:break-word;
}
#u23886_img {
position:absolute;
left:0px;
top:0px;
width:175px;
height:28px;
}
#u23886 {
position:absolute;
left:156px;
top:144px;
width:175px;
height:28px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23887 {
position:absolute;
left:16px;
top:6px;
width:143px;
visibility:hidden;
word-wrap:break-word;
}
#u23888_img {
position:absolute;
left:0px;
top:0px;
width:175px;
height:28px;
}
#u23888 {
position:absolute;
left:331px;
top:144px;
width:175px;
height:28px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23889 {
position:absolute;
left:16px;
top:6px;
width:143px;
visibility:hidden;
word-wrap:break-word;
}
#u23890_img {
position:absolute;
left:0px;
top:0px;
width:203px;
height:28px;
}
#u23890 {
position:absolute;
left:506px;
top:144px;
width:203px;
height:28px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23891 {
position:absolute;
left:16px;
top:6px;
width:171px;
visibility:hidden;
word-wrap:break-word;
}
#u23892_img {
position:absolute;
left:0px;
top:0px;
width:123px;
height:28px;
}
#u23892 {
position:absolute;
left:709px;
top:144px;
width:123px;
height:28px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23893 {
position:absolute;
left:16px;
top:6px;
width:91px;
visibility:hidden;
word-wrap:break-word;
}
#u23894_img {
position:absolute;
left:0px;
top:0px;
width:133px;
height:28px;
}
#u23894 {
position:absolute;
left:832px;
top:144px;
width:133px;
height:28px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23895 {
position:absolute;
left:16px;
top:6px;
width:101px;
visibility:hidden;
word-wrap:break-word;
}
#u23896_img {
position:absolute;
left:0px;
top:0px;
width:259px;
height:28px;
}
#u23896 {
position:absolute;
left:965px;
top:144px;
width:259px;
height:28px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
line-height:18px;
}
#u23897 {
position:absolute;
left:16px;
top:6px;
width:227px;
visibility:hidden;
word-wrap:break-word;
}
#u23898_div {
position:absolute;
left:0px;
top:0px;
width:85px;
height:20px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
color:#666666;
}
#u23898 {
position:absolute;
left:257px;
top:241px;
width:85px;
height:20px;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
color:#666666;
}
#u23899 {
position:absolute;
left:0px;
top:0px;
width:85px;
white-space:nowrap;
}
#u23900 {
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u23901 {
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u23902 {
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u23903 {
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u23904 {
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u23905 {
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u23906 {
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u23907 {
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u23908 {
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u23909_div {
position:absolute;
left:0px;
top:0px;
width:28px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(217, 217, 217, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#666666;
}
#u23909 {
position:absolute;
left:876px;
top:460px;
width:28px;
height:28px;
font-size:12px;
color:#666666;
}
#u23910 {
position:absolute;
left:2px;
top:6px;
width:24px;
visibility:hidden;
word-wrap:break-word;
}
#u23911_div {
position:absolute;
left:0px;
top:0px;
width:28px;
height:28px;
background:inherit;
background-color:rgba(45, 183, 245, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(45, 183, 245, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#FFFFFF;
}
#u23911 {
position:absolute;
left:912px;
top:460px;
width:28px;
height:28px;
font-size:12px;
color:#FFFFFF;
}
#u23912 {
position:absolute;
left:2px;
top:6px;
width:24px;
word-wrap:break-word;
}
#u23913_div {
position:absolute;
left:0px;
top:0px;
width:28px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(217, 217, 217, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#666666;
}
#u23913 {
position:absolute;
left:948px;
top:460px;
width:28px;
height:28px;
font-size:12px;
color:#666666;
}
#u23914 {
position:absolute;
left:2px;
top:6px;
width:24px;
word-wrap:break-word;
}
#u23915_div {
position:absolute;
left:0px;
top:0px;
width:28px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(217, 217, 217, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#666666;
}
#u23915 {
position:absolute;
left:984px;
top:460px;
width:28px;
height:28px;
font-size:12px;
color:#666666;
}
#u23916 {
position:absolute;
left:2px;
top:6px;
width:24px;
word-wrap:break-word;
}
#u23917_div {
position:absolute;
left:0px;
top:0px;
width:28px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(217, 217, 217, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#666666;
}
#u23917 {
position:absolute;
left:1020px;
top:460px;
width:28px;
height:28px;
font-size:12px;
color:#666666;
}
#u23918 {
position:absolute;
left:2px;
top:6px;
width:24px;
word-wrap:break-word;
}
#u23919_div {
position:absolute;
left:0px;
top:0px;
width:28px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(217, 217, 217, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#666666;
}
#u23919 {
position:absolute;
left:1056px;
top:460px;
width:28px;
height:28px;
font-size:12px;
color:#666666;
}
#u23920 {
position:absolute;
left:2px;
top:6px;
width:24px;
word-wrap:break-word;
}
#u23921_div {
position:absolute;
left:0px;
top:0px;
width:28px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(217, 217, 217, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#666666;
}
#u23921 {
position:absolute;
left:1200px;
top:460px;
width:28px;
height:28px;
font-size:12px;
color:#666666;
}
#u23922 {
position:absolute;
left:2px;
top:6px;
width:24px;
word-wrap:break-word;
}
#u23923_div {
position:absolute;
left:0px;
top:0px;
width:28px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(217, 217, 217, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#666666;
}
#u23923 {
position:absolute;
left:1236px;
top:460px;
width:28px;
height:28px;
font-size:12px;
color:#666666;
}
#u23924 {
position:absolute;
left:2px;
top:6px;
width:24px;
visibility:hidden;
word-wrap:break-word;
}
#u23925_div {
position:absolute;
left:0px;
top:0px;
width:25px;
height:17px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
}
#u23925 {
position:absolute;
left:1374px;
top:464px;
width:25px;
height:17px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
}
#u23926 {
position:absolute;
left:0px;
top:0px;
width:25px;
white-space:nowrap;
}
#u23927_div {
position:absolute;
left:0px;
top:0px;
width:47px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(217, 217, 217, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#666666;
text-align:left;
}
#u23927 {
position:absolute;
left:1408px;
top:460px;
width:47px;
height:28px;
font-size:12px;
color:#666666;
text-align:left;
}
#u23928 {
position:absolute;
left:12px;
top:6px;
width:33px;
word-wrap:break-word;
}
#u23929_div {
position:absolute;
left:0px;
top:0px;
width:13px;
height:17px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
}
#u23929 {
position:absolute;
left:1461px;
top:466px;
width:13px;
height:17px;
font-family:'Microsoft YaHei Regular', 'Microsoft YaHei';
font-weight:400;
font-style:normal;
font-size:12px;
color:#666666;
}
#u23930 {
position:absolute;
left:0px;
top:0px;
width:13px;
white-space:nowrap;
}
#u23931_div {
position:absolute;
left:0px;
top:0px;
width:28px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(217, 217, 217, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#666666;
}
#u23931 {
position:absolute;
left:1164px;
top:460px;
width:28px;
height:28px;
font-size:12px;
color:#666666;
}
#u23932 {
position:absolute;
left:2px;
top:6px;
width:24px;
word-wrap:break-word;
}
#u23933_div {
position:absolute;
left:0px;
top:0px;
width:28px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(217, 217, 217, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#666666;
}
#u23933 {
position:absolute;
left:1128px;
top:460px;
width:28px;
height:28px;
font-size:12px;
color:#666666;
}
#u23934 {
position:absolute;
left:2px;
top:6px;
width:24px;
word-wrap:break-word;
}
#u23935_div {
position:absolute;
left:0px;
top:0px;
width:28px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(217, 217, 217, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#666666;
}
#u23935 {
position:absolute;
left:1092px;
top:460px;
width:28px;
height:28px;
font-size:12px;
color:#666666;
}
#u23936 {
position:absolute;
left:2px;
top:6px;
width:24px;
word-wrap:break-word;
}
#u23937_div {
position:absolute;
left:0px;
top:0px;
width:82px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(217, 217, 217, 1);
border-radius:6px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:12px;
color:#666666;
text-align:left;
}
#u23937 {
position:absolute;
left:1280px;
top:460px;
width:82px;
height:28px;
font-size:12px;
color:#666666;
text-align:left;
}
#u23938 {
position:absolute;
left:8px;
top:6px;
width:72px;
word-wrap:break-word;
}
#u23939_img {
position:absolute;
left:0px;
top:0px;
width:8px;
height:8px;
}
#u23939 {
position:absolute;
left:886px;
top:470px;
width:8px;
height:8px;
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-ms-transform:rotate(180deg);
transform:rotate(180deg);
opacity:0.400000005960464;
}
#u23940 {
position:absolute;
left:2px;
top:-4px;
width:4px;
visibility:hidden;
word-wrap:break-word;
}
#u23941_img {
position:absolute;
left:0px;
top:0px;
width:8px;
height:8px;
}
#u23941 {
position:absolute;
left:1346px;
top:470px;
width:8px;
height:8px;
-webkit-transform:rotate(90deg);
-moz-transform:rotate(90deg);
-ms-transform:rotate(90deg);
transform:rotate(90deg);
opacity:0.800000011920929;
}
#u23942 {
position:absolute;
left:2px;
top:-4px;
width:4px;
visibility:hidden;
word-wrap:break-word;
}
#u23943_img {
position:absolute;
left:0px;
top:0px;
width:8px;
height:8px;
}
#u23943 {
position:absolute;
left:1246px;
top:470px;
width:8px;
height:8px;
}
#u23944 {
position:absolute;
left:2px;
top:-4px;
width:4px;
visibility:hidden;
word-wrap:break-word;
}
#u23945 {
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u23946_div {
position:absolute;
left:0px;
top:0px;
width:191px;
height:32px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(204, 204, 204, 1);
border-radius:4px;
-moz-box-shadow:0px 1px 3px -2px rgba(0, 0, 0, 0.349019607843137) inset;
-webkit-box-shadow:0px 1px 3px -2px rgba(0, 0, 0, 0.349019607843137) inset;
box-shadow:0px 1px 3px -2px rgba(0, 0, 0, 0.349019607843137) inset;
}
#u23946 {
position:absolute;
left:652px;
top:164px;
width:191px;
height:32px;
}
#u23946_div.selected {
position:absolute;
left:0px;
top:0px;
width:191px;
height:32px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(102, 175, 233, 1);
border-radius:4px;
-moz-box-shadow:0px 0px 6px rgba(102, 175, 233, 0.6), 0px 1px 3px -2px rgba(0, 0, 0, 0.349019607843137) inset;
-webkit-box-shadow:0px 0px 6px rgba(102, 175, 233, 0.6), 0px 1px 3px -2px rgba(0, 0, 0, 0.349019607843137) inset;
box-shadow:0px 0px 6px rgba(102, 175, 233, 0.6), 0px 1px 3px -2px rgba(0, 0, 0, 0.349019607843137) inset;
}
#u23946.selected {
}
#u23947 {
position:absolute;
left:20px;
top:8px;
width:151px;
visibility:hidden;
word-wrap:break-word;
}
#u23948 {
position:absolute;
left:658px;
top:163px;
width:178px;
height:33px;
}
#u23948_input {
position:absolute;
left:0px;
top:0px;
width:178px;
height:33px;
background-color:transparent;
font-family:'Arial Normal', 'Arial';
font-weight:400;
font-style:normal;
font-size:14px;
text-decoration:none;
color:#333333;
text-align:left;
border-color:transparent;
outline-style:none;
}
#u23949_div {
position:absolute;
left:0px;
top:0px;
width:69px;
height:25px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
font-size:12px;
text-align:right;
}
#u23949 {
position:absolute;
left:573px;
top:169px;
width:69px;
height:25px;
font-family:'微软雅黑 Regular', '微软雅黑';
font-weight:400;
font-style:normal;
font-size:12px;
text-align:right;
}
#u23950 {
position:absolute;
left:0px;
top:0px;
width:69px;
word-wrap:break-word;
}
#u23951_div {
position:absolute;
left:0px;
top:0px;
width:400px;
height:70px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(221, 221, 221, 1);
border-radius:4px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Cursiva', 'Arial Normal', 'Arial';
font-weight:400;
font-style:italic;
text-decoration:underline;
color:#FF0000;
text-align:left;
}
#u23951 {
position:absolute;
left:250px;
top:550px;
width:400px;
height:70px;
font-family:'Arial Cursiva', 'Arial Normal', 'Arial';
font-weight:400;
font-style:italic;
text-decoration:underline;
color:#FF0000;
text-align:left;
}
#u23952 {
position:absolute;
left:15px;
top:15px;
width:370px;
word-wrap:break-word;
}
|
web/static/javadoc/5.6.2/org/acra/log/package-tree.html
|
ACRA/acra
|
<!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>org.acra.log Class Hierarchy</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="org.acra.log Class Hierarchy";
}
}
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">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>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/acra/limiter/package-tree.html">Prev</a></li>
<li><a href="../../../org/acra/mail/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/acra/log/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.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 class="title">Hierarchy For Package org.acra.log</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://d.android.com/reference/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
<ul>
<li type="circle">org.acra.log.<a href="../../../org/acra/log/AndroidLogDelegate.html" title="class in org.acra.log"><span class="typeNameLink">AndroidLogDelegate</span></a> (implements org.acra.log.<a href="../../../org/acra/log/ACRALog.html" title="interface in org.acra.log">ACRALog</a>)</li>
<li type="circle">org.acra.log.<a href="../../../org/acra/log/HollowLog.html" title="class in org.acra.log"><span class="typeNameLink">HollowLog</span></a> (implements org.acra.log.<a href="../../../org/acra/log/ACRALog.html" title="interface in org.acra.log">ACRALog</a>)</li>
</ul>
</li>
</ul>
<h2 title="Interface Hierarchy">Interface Hierarchy</h2>
<ul>
<li type="circle">org.acra.log.<a href="../../../org/acra/log/ACRALog.html" title="interface in org.acra.log"><span class="typeNameLink">ACRALog</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 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>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/acra/limiter/package-tree.html">Prev</a></li>
<li><a href="../../../org/acra/mail/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/acra/log/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.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>
|
docs/api/Sensus.UI.Inputs.SingleLineTextInput.html
|
predictive-technology-laboratory/sensus
|
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class SingleLineTextInput
| Sensus Documentation </title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class SingleLineTextInput
| Sensus Documentation ">
<meta name="generator" content="docfx 2.38.1.0">
<link rel="shortcut icon" href="../images/favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
<meta property="docfx:rel" content="../">
</head>
<body data-spy="scroll" data-target="#affix" data-offset="120">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<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">
<img id="logo" class="svg" src="../images/group-of-members-users-icon.png" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div class="container body-content">
<div id="search-results">
<div class="search-list"></div>
<div class="sr-items">
<p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
</div>
<ul id="pagination"></ul>
</div>
</div>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="Sensus.UI.Inputs.SingleLineTextInput">
<h1 id="Sensus_UI_Inputs_SingleLineTextInput" data-uid="Sensus.UI.Inputs.SingleLineTextInput" class="text-break">Class SingleLineTextInput
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><a class="xref" href="Sensus.UI.Inputs.Input.html">Input</a></div>
<div class="level2"><span class="xref">SingleLineTextInput</span></div>
</div>
<div classs="implements">
<h5>Implements</h5>
<div><span class="xref">System.ComponentModel.INotifyPropertyChanged</span></div>
<div><a class="xref" href="Sensus.UI.Inputs.IVariableDefiningInput.html">IVariableDefiningInput</a></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_EFFECT_RESOLUTION_GROUP_NAME">Input.EFFECT_RESOLUTION_GROUP_NAME</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_CreateLabel_System_Int32_">Input.CreateLabel(Int32)</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_GetLabelText_System_Int32_">Input.GetLabelText(Int32)</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_SetView_Xamarin_Forms_View_">Input.SetView(View)</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Reset">Input.Reset()</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_ValueMatches_System_Object_System_Boolean_">Input.ValueMatches(Object, Boolean)</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Copy_System_Boolean_">Input.Copy(Boolean)</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_ToString">Input.ToString()</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Name">Input.Name</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Id">Input.Id</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_GroupId">Input.GroupId</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_LabelText">Input.LabelText</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_LabelFontSize">Input.LabelFontSize</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_DisplayNumber">Input.DisplayNumber</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Complete">Input.Complete</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Valid">Input.Valid</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Store">Input.Store</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Latitude">Input.Latitude</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Longitude">Input.Longitude</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_LocationUpdateTimestamp">Input.LocationUpdateTimestamp</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Required">Input.Required</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Viewed">Input.Viewed</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_CompletionTimestamp">Input.CompletionTimestamp</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_DisplayConditions">Input.DisplayConditions</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_BackgroundColor">Input.BackgroundColor</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Padding">Input.Padding</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Frame">Input.Frame</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_CompletionRecords">Input.CompletionRecords</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_StoreCompletionRecords">Input.StoreCompletionRecords</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Display">Input.Display</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_SubmissionTimestamp">Input.SubmissionTimestamp</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Caption">Input.Caption</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_TriggeringDatum">Input.TriggeringDatum</a>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_PropertyChanged">Input.PropertyChanged</a>
</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="Sensus.UI.Inputs.html">Sensus.UI.Inputs</a></h6>
<h6><strong>Assembly</strong>: SensusAndroid.dll</h6>
<h5 id="Sensus_UI_Inputs_SingleLineTextInput_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class SingleLineTextInput : Input, INotifyPropertyChanged, IVariableDefiningInput</code></pre>
</div>
<h3 id="constructors">Constructors
</h3>
<a id="Sensus_UI_Inputs_SingleLineTextInput__ctor_" data-uid="Sensus.UI.Inputs.SingleLineTextInput.#ctor*"></a>
<h4 id="Sensus_UI_Inputs_SingleLineTextInput__ctor" data-uid="Sensus.UI.Inputs.SingleLineTextInput.#ctor">SingleLineTextInput()</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SingleLineTextInput()</code></pre>
</div>
<a id="Sensus_UI_Inputs_SingleLineTextInput__ctor_" data-uid="Sensus.UI.Inputs.SingleLineTextInput.#ctor*"></a>
<h4 id="Sensus_UI_Inputs_SingleLineTextInput__ctor_System_String_System_String_Xamarin_Forms_Keyboard_System_Boolean_" data-uid="Sensus.UI.Inputs.SingleLineTextInput.#ctor(System.String,System.String,Xamarin.Forms.Keyboard,System.Boolean)">SingleLineTextInput(String, String, Keyboard, Boolean)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SingleLineTextInput(string labelText, string name, Keyboard keyboard, bool masked = false)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">labelText</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">name</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">Xamarin.Forms.Keyboard</span></td>
<td><span class="parametername">keyboard</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">masked</span></td>
<td></td>
</tr>
</tbody>
</table>
<a id="Sensus_UI_Inputs_SingleLineTextInput__ctor_" data-uid="Sensus.UI.Inputs.SingleLineTextInput.#ctor*"></a>
<h4 id="Sensus_UI_Inputs_SingleLineTextInput__ctor_System_String_Xamarin_Forms_Keyboard_System_Boolean_" data-uid="Sensus.UI.Inputs.SingleLineTextInput.#ctor(System.String,Xamarin.Forms.Keyboard,System.Boolean)">SingleLineTextInput(String, Keyboard, Boolean)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public SingleLineTextInput(string labelText, Keyboard keyboard, bool masked = false)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><span class="parametername">labelText</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">Xamarin.Forms.Keyboard</span></td>
<td><span class="parametername">keyboard</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><span class="parametername">masked</span></td>
<td></td>
</tr>
</tbody>
</table>
<h3 id="properties">Properties
</h3>
<a id="Sensus_UI_Inputs_SingleLineTextInput_DefaultName_" data-uid="Sensus.UI.Inputs.SingleLineTextInput.DefaultName*"></a>
<h4 id="Sensus_UI_Inputs_SingleLineTextInput_DefaultName" data-uid="Sensus.UI.Inputs.SingleLineTextInput.DefaultName">DefaultName</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override string DefaultName { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_DefaultName">Input.DefaultName</a></div>
<a id="Sensus_UI_Inputs_SingleLineTextInput_DefinedVariable_" data-uid="Sensus.UI.Inputs.SingleLineTextInput.DefinedVariable*"></a>
<h4 id="Sensus_UI_Inputs_SingleLineTextInput_DefinedVariable" data-uid="Sensus.UI.Inputs.SingleLineTextInput.DefinedVariable">DefinedVariable</h4>
<div class="markdown level1 summary"><p>The name of the variable in <a class="xref" href="Sensus.Protocol.html#Sensus_Protocol_VariableValueUiProperty">VariableValueUiProperty</a> that this input should
define the value for. For example, if you wanted this input to supply the value for a variable
named <code>study-name</code>, then set this field to <code>study-name</code> and the user's selection will be used as
the value for this variable. </p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[EntryStringUiProperty("Define Variable:", true, 2, false)]
public string DefinedVariable { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.String</span></td>
<td><p>The defined variable.</p>
</td>
</tr>
</tbody>
</table>
<a id="Sensus_UI_Inputs_SingleLineTextInput_Enabled_" data-uid="Sensus.UI.Inputs.SingleLineTextInput.Enabled*"></a>
<h4 id="Sensus_UI_Inputs_SingleLineTextInput_Enabled" data-uid="Sensus.UI.Inputs.SingleLineTextInput.Enabled">Enabled</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override bool Enabled { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Enabled">Input.Enabled</a></div>
<a id="Sensus_UI_Inputs_SingleLineTextInput_Masked_" data-uid="Sensus.UI.Inputs.SingleLineTextInput.Masked*"></a>
<h4 id="Sensus_UI_Inputs_SingleLineTextInput_Masked" data-uid="Sensus.UI.Inputs.SingleLineTextInput.Masked">Masked</h4>
<div class="markdown level1 summary"><p>Whether or not to mask the entered text with asterisks (e.g., for passwords or other sensitive information).</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">[OnOffUiProperty(null, true, 1)]
public bool Masked { get; set; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td><p><code>true</code> to mask; otherwise, <code>false</code>.</p>
</td>
</tr>
</tbody>
</table>
<a id="Sensus_UI_Inputs_SingleLineTextInput_Value_" data-uid="Sensus.UI.Inputs.SingleLineTextInput.Value*"></a>
<h4 id="Sensus_UI_Inputs_SingleLineTextInput_Value" data-uid="Sensus.UI.Inputs.SingleLineTextInput.Value">Value</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override object Value { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_Value">Input.Value</a></div>
<h3 id="methods">Methods
</h3>
<a id="Sensus_UI_Inputs_SingleLineTextInput_GetView_" data-uid="Sensus.UI.Inputs.SingleLineTextInput.GetView*"></a>
<h4 id="Sensus_UI_Inputs_SingleLineTextInput_GetView_System_Int32_" data-uid="Sensus.UI.Inputs.SingleLineTextInput.GetView(System.Int32)">GetView(Int32)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override View GetView(int index)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Int32</span></td>
<td><span class="parametername">index</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">Xamarin.Forms.View</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><a class="xref" href="Sensus.UI.Inputs.Input.html#Sensus_UI_Inputs_Input_GetView_System_Int32_">Input.GetView(Int32)</a></div>
<h3 id="implements">Implements</h3>
<div>
<span class="xref">System.ComponentModel.INotifyPropertyChanged</span>
</div>
<div>
<a class="xref" href="Sensus.UI.Inputs.IVariableDefiningInput.html">IVariableDefiningInput</a>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
Copyright © 2014-2018 University of Virginia<br>Generated by <strong>DocFX</strong>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
|
tensorflow/tensorboard/components/tf-image-dashboard/tf-image-loader.html
|
DeepThoughtTeam/tensorflow
|
<link rel="import" href="../polymer/polymer.html">
<link rel="import" href="../tf-imports/lodash.html">
<!--
tf-image-loader loads an individual image from the TensorBoard backend.
Right now it always loads the most recent image. We should add support in the
future for loading older images.
-->
<dom-module id="tf-image-loader">
<style>
:host {
display: block;
}
img {
width: 100%;
height: 100%;
}
</style>
<template>
<iron-ajax
id="ajax"
auto
url="[[metadataUrl]]"
handle-as="json"
debounce="50"
last-response="{{imageMetadata}}"
verbose="true"
></iron-ajax>
<template is="dom-if" if="[[imageUrl]]">
<img src="[[imageUrl]]">
</template>
</template>
<script>
Polymer({
is: "tf-image-loader",
properties: {
run: String,
tag: String,
imagesGenerator: Function,
individualImageGenerator: Function,
imageMetadata: Array,
metadataUrl: {
type: String,
computed: "apply(imagesGenerator, tag, run)",
},
imageUrl: {
type: String,
computed: "getLastImage(imageMetadata, individualImageGenerator)",
},
},
apply: function(imagesGenerator, run, tag) {
return imagesGenerator(run, tag);
},
getLastImage: function(imageMetadata, individualImageGenerator) {
if (imageMetadata == null) {
return null;
}
var query = _.last(imageMetadata).query;
return individualImageGenerator(query);
},
});
</script>
</dom-module>
|
templates/hello.html
|
mehmetkose/tornado-localization-demo
|
English: <strong>{{ message }}</strong>,
Translation : <strong>{{ _(message) }}</strong>
|
2017.1.1/apidocs/org/wildfly/swarm/config/infinispan/cache_container/class-use/StateTransferThreadPoolConsumer.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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 Wed Jan 04 17:08:18 EST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildfly.swarm.config.infinispan.cache_container.StateTransferThreadPoolConsumer (Public javadocs 2017.1.1 API)</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="Uses of Interface org.wildfly.swarm.config.infinispan.cache_container.StateTransferThreadPoolConsumer (Public javadocs 2017.1.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="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">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.1.1</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/infinispan/cache_container/class-use/StateTransferThreadPoolConsumer.html" target="_top">Frames</a></li>
<li><a href="StateTransferThreadPoolConsumer.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 Interface org.wildfly.swarm.config.infinispan.cache_container.StateTransferThreadPoolConsumer" class="title">Uses of Interface<br>org.wildfly.swarm.config.infinispan.cache_container.StateTransferThreadPoolConsumer</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/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">StateTransferThreadPoolConsumer</a></span><span class="tabEnd"> </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.infinispan">org.wildfly.swarm.config.infinispan</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.wildfly.swarm.config.infinispan.cache_container">org.wildfly.swarm.config.infinispan.cache_container</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config.infinispan">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">StateTransferThreadPoolConsumer</a> in <a href="../../../../../../../org/wildfly/swarm/config/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</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/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">StateTransferThreadPoolConsumer</a></span><span class="tabEnd"> </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/infinispan/CacheContainer.html" title="type parameter in CacheContainer">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">CacheContainer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/CacheContainer.html#stateTransferThreadPool-org.wildfly.swarm.config.infinispan.cache_container.StateTransferThreadPoolConsumer-">stateTransferThreadPool</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">StateTransferThreadPoolConsumer</a> consumer)</code>
<div class="block">Defines a thread pool used for for state transfer.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.wildfly.swarm.config.infinispan.cache_container">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">StateTransferThreadPoolConsumer</a> in <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/package-summary.html">org.wildfly.swarm.config.infinispan.cache_container</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/infinispan/cache_container/package-summary.html">org.wildfly.swarm.config.infinispan.cache_container</a> that return <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">StateTransferThreadPoolConsumer</a></span><span class="tabEnd"> </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>default <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">StateTransferThreadPoolConsumer</a><<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="type parameter in StateTransferThreadPoolConsumer">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">StateTransferThreadPoolConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html#andThen-org.wildfly.swarm.config.infinispan.cache_container.StateTransferThreadPoolConsumer-">andThen</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">StateTransferThreadPoolConsumer</a><<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="type parameter in StateTransferThreadPoolConsumer">T</a>> after)</code> </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/infinispan/cache_container/package-summary.html">org.wildfly.swarm.config.infinispan.cache_container</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">StateTransferThreadPoolConsumer</a></span><span class="tabEnd"> </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>default <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">StateTransferThreadPoolConsumer</a><<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="type parameter in StateTransferThreadPoolConsumer">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">StateTransferThreadPoolConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html#andThen-org.wildfly.swarm.config.infinispan.cache_container.StateTransferThreadPoolConsumer-">andThen</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">StateTransferThreadPoolConsumer</a><<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="type parameter in StateTransferThreadPoolConsumer">T</a>> after)</code> </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/infinispan/cache_container/StateTransferThreadPoolConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">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.1.1</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/infinispan/cache_container/class-use/StateTransferThreadPoolConsumer.html" target="_top">Frames</a></li>
<li><a href="StateTransferThreadPoolConsumer.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 © 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
docs/devapidocs/org/apache/hadoop/hbase/client/class-use/HTableMultiplexer.html
|
lshain/hbase-0.98.6-hadoop2
|
<!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_65) on Wed Sep 03 20:05:59 PDT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.apache.hadoop.hbase.client.HTableMultiplexer (HBase 0.98.6-hadoop2 API)</title>
<meta name="date" content="2014-09-03">
<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.client.HTableMultiplexer (HBase 0.98.6-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/client/HTableMultiplexer.html" title="class in org.apache.hadoop.hbase.client">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/client/class-use/HTableMultiplexer.html" target="_top">Frames</a></li>
<li><a href="HTableMultiplexer.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.client.HTableMultiplexer" class="title">Uses of Class<br>org.apache.hadoop.hbase.client.HTableMultiplexer</h2>
</div>
<div class="classUseContainer">No usage of org.apache.hadoop.hbase.client.HTableMultiplexer</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/client/HTableMultiplexer.html" title="class in org.apache.hadoop.hbase.client">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/client/class-use/HTableMultiplexer.html" target="_top">Frames</a></li>
<li><a href="HTableMultiplexer.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 © 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
|
public/scaladoc/3.0.1/org/scalatest/FreeSpecLike$FreeSpecStringWrapper.html
|
scalatest/scalatest-website
|
<!DOCTYPE html >
<html>
<head>
<title>FreeSpecStringWrapper - ScalaTest 3.0.1 - org.scalatest.FreeSpecLike.FreeSpecStringWrapper</title>
<meta name="description" content="FreeSpecStringWrapper - ScalaTest 3.0.1 - org.scalatest.FreeSpecLike.FreeSpecStringWrapper" />
<meta name="keywords" content="FreeSpecStringWrapper ScalaTest 3.0.1 org.scalatest.FreeSpecLike.FreeSpecStringWrapper" />
<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.FreeSpecLike$FreeSpecStringWrapper';
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>
</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 alt="Class" 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="FreeSpecLike.html" class="extype" name="org.scalatest.FreeSpecLike">FreeSpecLike</a></p>
<h1>FreeSpecStringWrapper</h1><h3><span class="morelinks"><div>Related Doc:
<a href="FreeSpecLike.html" class="extype" name="org.scalatest.FreeSpecLike">package FreeSpecLike</a>
</div></span></h3><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
</div>
<h4 id="signature" class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">class</span>
</span>
<span class="symbol">
<span class="name">FreeSpecStringWrapper</span><span class="result"> extends <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
</h4>
<div id="comment" class="fullcommenttop"><div class="comment cmt"><p>A class that via an implicit conversion (named <code>convertToFreeSpecStringWrapper</code>) enables
methods <code>in</code>, <code>is</code>, <code>taggedAs</code> and <code>ignore</code>,
as well as the dash operator (<code>-</code>), to be invoked on <code>String</code>s.
</p></div><dl class="attributes block"> <dt>Attributes</dt><dd>protected </dd><dt>Source</dt><dd><a href="https://github.com/scalatest/scalatest/tree/release-3.0.1/scalatest//src/main/scala/org/scalatest/FreeSpecLike.scala" target="_blank">FreeSpecLike.scala</a></dd></dl><div class="toggleContainer block">
<span class="toggle">Linear Supertypes</span>
<div class="superTypes hiddenContent"><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.FreeSpecLike.FreeSpecStringWrapper"><span>FreeSpecStringWrapper</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>
</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.FreeSpecLike.FreeSpecStringWrapper#<init>" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="<init>(string:String,pos:org.scalactic.source.Position):FreeSpecLike.this.FreeSpecStringWrapper"></a>
<a id="<init>:FreeSpecStringWrapper"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">new</span>
</span>
<span class="symbol">
<span class="name">FreeSpecStringWrapper</span><span class="params">(<span name="string">string: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="pos">pos: <span class="extype" name="org.scalactic.source.Position">Position</span></span>)</span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@<init>(string:String,pos:org.scalactic.source.Position):FreeSpecLike.this.FreeSpecStringWrapper" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
</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: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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@!=(x$1:Any):Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<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="##():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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@##():Int" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="org.scalatest.FreeSpecLike.FreeSpecStringWrapper#-" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="-(fun:=>Unit):Unit"></a>
<a id="-(⇒Unit):Unit"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span title="gt4s: $minus" class="name">-</span><span class="params">(<span name="fun">fun: ⇒ <span class="extype" name="scala.Unit">Unit</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@-(fun:=>Unit):Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Register some text that may surround one or more tests.</p><div class="fullcomment"><div class="comment cmt"><p>Register some text that may surround one or more tests. Thepassed function value may contain surrounding text
registrations (defined with dash (<code>-</code>)) and/or tests (defined with <code>in</code>). This trait's
implementation of this method will register the text (passed to the contructor of <code>FreeSpecStringWrapper</code>
and immediately invoke the passed function.
</p></div></div>
</li><li name="scala.AnyRef#==" 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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@==(x$1:Any):Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → 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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@asInstanceOf[T0]:T0" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@clone():Object" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<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>
<span class="defval" name="classOf[java.lang.CloneNotSupportedException]">...</span>
</span>)</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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@eq(x$1:AnyRef):Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#equals" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="equals(x$1:Any):Boolean"></a>
<a id="equals(Any):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">equals</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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@equals(x$1:Any):Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@finalize():Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<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>
<span class="symbol">classOf[java.lang.Throwable]</span>
</span>)</span>
</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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@getClass():Class[_]" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="scala.AnyRef#hashCode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="hashCode():Int"></a>
<a id="hashCode():Int"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">hashCode</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@hashCode():Int" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div>
</li><li name="org.scalatest.FreeSpecLike.FreeSpecStringWrapper#ignore" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="ignore(f:=>Any):Unit"></a>
<a id="ignore(⇒Any):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">ignore</span><span class="params">(<span name="f">f: ⇒ <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@ignore(f:=>Any):Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Supports ignored test registration.</p><div class="fullcomment"><div class="comment cmt"><p>Supports ignored test registration.</p><p>For example, this method supports syntax such as the following:</p><p><pre class="stHighlighted">
<span class="stQuotedString">"complain on peek"</span> ignore { ... }
^
</pre></p><p>For more information and examples of this method's use, see the <a href="FreeSpec.html">main documentation</a> for trait <code>FreeSpec</code>.</p></div></div>
</li><li name="org.scalatest.FreeSpecLike.FreeSpecStringWrapper#in" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="in(f:=>Any):Unit"></a>
<a id="in(⇒Any):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">in</span><span class="params">(<span name="f">f: ⇒ <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@in(f:=>Any):Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Supports test registration.</p><div class="fullcomment"><div class="comment cmt"><p>Supports test registration.</p><p>For example, this method supports syntax such as the following:</p><p><pre class="stHighlighted">
<span class="stQuotedString">"complain on peek"</span> in { ... }
^
</pre></p><p>For more information and examples of this method's use, see the <a href="FreeSpec.html">main documentation</a> for trait <code>FreeSpec</code>.</p></div></div>
</li><li name="org.scalatest.FreeSpecLike.FreeSpecStringWrapper#is" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="is(f:=>org.scalatest.PendingStatement):Unit"></a>
<a id="is(⇒PendingStatement):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">is</span><span class="params">(<span name="f">f: ⇒ <a href="PendingStatement.html" class="extype" name="org.scalatest.PendingStatement">PendingStatement</a></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@is(f:=>org.scalatest.PendingStatement):Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Supports pending test registration.</p><div class="fullcomment"><div class="comment cmt"><p>Supports pending test registration.</p><p>For example, this method supports syntax such as the following:</p><p><pre class="stHighlighted">
<span class="stQuotedString">"complain on peek"</span> is (pending)
^
</pre></p><p>For more information and examples of this method's use, see the <a href="FreeSpec.html">main documentation</a> for trait <code>FreeSpec</code>.</p></div></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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@isInstanceOf[T0]:Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@ne(x$1:AnyRef):Boolean" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@notify():Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@notifyAll():Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="synchronized[T0](x$1:=>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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@synchronized[T0](x$1:=>T0):T0" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div>
</li><li name="org.scalatest.FreeSpecLike.FreeSpecStringWrapper#taggedAs" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="taggedAs(firstTestTag:org.scalatest.Tag,otherTestTags:org.scalatest.Tag*):FreeSpecLike.this.ResultOfTaggedAsInvocationOnString"></a>
<a id="taggedAs(Tag,Tag*):ResultOfTaggedAsInvocationOnString"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">taggedAs</span><span class="params">(<span name="firstTestTag">firstTestTag: <a href="Tag.html" class="extype" name="org.scalatest.Tag">Tag</a></span>, <span name="otherTestTags">otherTestTags: <a href="Tag.html" class="extype" name="org.scalatest.Tag">Tag</a>*</span>)</span><span class="result">: <a href="FreeSpecLike$ResultOfTaggedAsInvocationOnString.html" class="extype" name="org.scalatest.FreeSpecLike.ResultOfTaggedAsInvocationOnString">ResultOfTaggedAsInvocationOnString</a></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@taggedAs(firstTestTag:org.scalatest.Tag,otherTestTags:org.scalatest.Tag*):FreeSpecLike.this.ResultOfTaggedAsInvocationOnString" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<p class="shortcomment cmt">Supports tagged test registration.</p><div class="fullcomment"><div class="comment cmt"><p>Supports tagged test registration.</p><p>For example, this method supports syntax such as the following:</p><p><pre class="stHighlighted">
<span class="stQuotedString">"complain on peek"</span> taggedAs(<span class="stType">SlowTest</span>) in { ... }
^
</pre></p><p>For more information and examples of this method's use, see the <a href="FreeSpec.html">main documentation</a> for trait <code>FreeSpec</code>.</p></div></div>
</li><li name="scala.AnyRef#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="java.lang.String">String</span></span>
</span>
</h4><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@toString():String" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@wait():Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<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>
<span class="defval" name="classOf[java.lang.InterruptedException]">...</span>
</span>)</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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@wait(x$1:Long,x$2:Int):Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<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>
<span class="defval" name="classOf[java.lang.InterruptedException]">...</span>
</span>)</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><span class="permalink">
<a href="../../index.html#org.scalatest.FreeSpecLike$FreeSpecStringWrapper@wait(x$1:Long):Unit" title="Permalink" target="_top">
<img src="../../lib/permalink.png" alt="Permalink" />
</a>
</span>
<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>
<span class="defval" name="classOf[java.lang.InterruptedException]">...</span>
</span>)</span>
</dd></dl></div>
</li></ol>
</div>
</div>
<div id="inheritedMembers">
<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>
|
docs/apidocs/org/apache/hadoop/hbase/thrift/generated/class-use/IllegalArgument._Fields.html
|
wanhao/IRIndex
|
<!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 Fri Jan 10 21:37:06 UTC 2014 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class org.apache.hadoop.hbase.thrift.generated.IllegalArgument._Fields (HBase 0.94.16 API)
</TITLE>
<META NAME="date" CONTENT="2014-01-10">
<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.hbase.thrift.generated.IllegalArgument._Fields (HBase 0.94.16 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/hbase/thrift/generated//class-useIllegalArgument._Fields.html" target="_top"><B>FRAMES</B></A>
<A HREF="IllegalArgument._Fields.html" target="_top"><B>NO FRAMES</B></A>
<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.hbase.thrift.generated.IllegalArgument._Fields</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/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.apache.hadoop.hbase.thrift.generated"><B>org.apache.hadoop.hbase.thrift.generated</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="org.apache.hadoop.hbase.thrift.generated"><!-- --></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/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A> in <A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/package-summary.html">org.apache.hadoop.hbase.thrift.generated</A></FONT></TH>
</TR>
</TABLE>
<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/apache/hadoop/hbase/thrift/generated/package-summary.html">org.apache.hadoop.hbase.thrift.generated</A> with type parameters of type <A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <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><<A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A>,org.apache.thrift.meta_data.FieldMetaData></CODE></FONT></TD>
<TD><CODE><B>IllegalArgument.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument.html#metaDataMap">metaDataMap</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<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/hbase/thrift/generated/package-summary.html">org.apache.hadoop.hbase.thrift.generated</A> that return <A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A></CODE></FONT></TD>
<TD><CODE><B>IllegalArgument.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument.html#fieldForId(int)">fieldForId</A></B>(int fieldId)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A></CODE></FONT></TD>
<TD><CODE><B>IllegalArgument._Fields.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html#findByName(java.lang.String)">findByName</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> name)</CODE>
<BR>
Find the _Fields constant that matches name, or null if its not found.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A></CODE></FONT></TD>
<TD><CODE><B>IllegalArgument._Fields.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html#findByThriftId(int)">findByThriftId</A></B>(int fieldId)</CODE>
<BR>
Find the _Fields constant that matches fieldId, or null if its not found.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A></CODE></FONT></TD>
<TD><CODE><B>IllegalArgument._Fields.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html#findByThriftIdOrThrow(int)">findByThriftIdOrThrow</A></B>(int fieldId)</CODE>
<BR>
Find the _Fields constant that matches fieldId, throwing an exception
if it is not found.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A></CODE></FONT></TD>
<TD><CODE><B>IllegalArgument._Fields.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html#valueOf(java.lang.String)">valueOf</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> name)</CODE>
<BR>
Returns the enum constant of this type with the specified name.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A>[]</CODE></FONT></TD>
<TD><CODE><B>IllegalArgument._Fields.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html#values()">values</A></B>()</CODE>
<BR>
Returns an array containing the constants of this enum type, in
the order they are declared.</TD>
</TR>
</TABLE>
<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/hbase/thrift/generated/package-summary.html">org.apache.hadoop.hbase.thrift.generated</A> with parameters of type <A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <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></CODE></FONT></TD>
<TD><CODE><B>IllegalArgument.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument.html#getFieldValue(org.apache.hadoop.hbase.thrift.generated.IllegalArgument._Fields)">getFieldValue</A></B>(<A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A> field)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B>IllegalArgument.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument.html#isSet(org.apache.hadoop.hbase.thrift.generated.IllegalArgument._Fields)">isSet</A></B>(<A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A> field)</CODE>
<BR>
Returns true if field corresponding to fieldID is set (has been assigned a value) and false otherwise</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B>IllegalArgument.</B><B><A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument.html#setFieldValue(org.apache.hadoop.hbase.thrift.generated.IllegalArgument._Fields, java.lang.Object)">setFieldValue</A></B>(<A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated">IllegalArgument._Fields</A> field,
<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> value)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/hadoop/hbase/thrift/generated/IllegalArgument._Fields.html" title="enum in org.apache.hadoop.hbase.thrift.generated"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../index.html?org/apache/hadoop/hbase/thrift/generated//class-useIllegalArgument._Fields.html" target="_top"><B>FRAMES</B></A>
<A HREF="IllegalArgument._Fields.html" target="_top"><B>NO FRAMES</B></A>
<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 © 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
|
css/grayscale.css
|
ivanvargas/ivanvargas.github.io
|
/*!
* Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com)
* Code licensed under the Apache License v2.0.
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
*/
body {
width: 100%;
height: 100%;
font-family: Lora,"Helvetica Neue",Helvetica,Arial,sans-serif;
color: #fff;
background-color: #000;
}
html {
width: 100%;
height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0 0 35px;
text-transform: uppercase;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight: 700;
letter-spacing: 1px;
}
p {
margin: 0 0 25px;
font-size: 18px;
line-height: 1.5;
}
@media(min-width:768px) {
p {
margin: 0 0 35px;
font-size: 20px;
line-height: 1.6;
}
}
a {
color: #42dca3;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
a:hover,
a:focus {
text-decoration: none;
color: #1d9b6c;
}
.light {
font-weight: 400;
}
.navbar-custom {
margin-bottom: 0;
border-bottom: 1px solid rgba(255,255,255,.3);
text-transform: uppercase;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
background-color: #000;
}
.navbar-custom .navbar-brand {
font-weight: 700;
}
.navbar-custom .navbar-brand:focus {
outline: 0;
}
.navbar-custom .navbar-brand .navbar-toggle {
padding: 4px 6px;
font-size: 16px;
color: #fff;
}
.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
outline: 0;
}
.navbar-custom a {
color: #fff;
}
.navbar-custom .nav li a {
-webkit-transition: background .3s ease-in-out;
-moz-transition: background .3s ease-in-out;
transition: background .3s ease-in-out;
}
.navbar-custom .nav li a:hover {
outline: 0;
color: rgba(255,255,255,.8);
background-color: transparent;
}
.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
outline: 0;
background-color: transparent;
}
.navbar-custom .nav li.active {
outline: 0;
}
.navbar-custom .nav li.active a {
background-color: rgba(255,255,255,.3);
}
.navbar-custom .nav li.active a:hover {
color: #fff;
}
@media(min-width:768px) {
.navbar-custom {
padding: 20px 0;
border-bottom: 0;
letter-spacing: 1px;
background: 0 0;
-webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
-moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
transition: background .5s ease-in-out,padding .5s ease-in-out;
}
.navbar-custom.top-nav-collapse {
padding: 0;
border-bottom: 1px solid rgba(255,255,255,.3);
background: #000;
}
}
.intro {
display: table;
width: 100%;
height: auto;
padding: 100px 0;
text-align: center;
color: #fff;
background: url(../img/rodadero.jpg) no-repeat bottom center scroll;
background-color: #000;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.intro .intro-body {
display: table-cell;
vertical-align: middle;
}
.intro .intro-body .brand-heading {
font-size: 40px;
}
.intro .intro-body .intro-text {
font-size: 18px;
}
@media(min-width:768px) {
.intro {
height: 100%;
padding: 0;
}
.intro .intro-body .brand-heading {
font-size: 100px;
}
.intro .intro-body .intro-text {
font-size: 26px;
}
}
.btn-circle {
width: 70px;
height: 70px;
margin-top: 15px;
padding: 7px 16px;
border: 2px solid #fff;
border-radius: 100%!important;
font-size: 40px;
color: #fff;
background: 0 0;
-webkit-transition: background .3s ease-in-out;
-moz-transition: background .3s ease-in-out;
transition: background .3s ease-in-out;
}
.btn-circle:hover,
.btn-circle:focus {
outline: 0;
color: #fff;
background: rgba(255,255,255,.1);
}
.btn-circle i.animated {
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 1s;
-moz-transition-property: -moz-transform;
-moz-transition-duration: 1s;
}
.btn-circle:hover i.animated {
-webkit-animation-name: pulse;
-moz-animation-name: pulse;
-webkit-animation-duration: 1.5s;
-moz-animation-duration: 1.5s;
-webkit-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-timing-function: linear;
}
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-moz-keyframes pulse {
0% {
-moz-transform: scale(1);
transform: scale(1);
}
50% {
-moz-transform: scale(1.2);
transform: scale(1.2);
}
100% {
-moz-transform: scale(1);
transform: scale(1);
}
}
.content-section {
padding-top: 100px;
}
.download-section {
width: 100%;
padding: 50px 0;
color: #fff;
background: url(../img/rodadero2.jpg) no-repeat center center scroll;
background-color: #000;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
#map {
width: 100%;
height: 200px;
margin-top: 100px;
}
@media(min-width:767px) {
.content-section {
padding-top: 250px;
}
.download-section {
padding: 100px 0;
}
#map {
height: 400px;
margin-top: 250px;
}
}
.btn {
border-radius: 0;
text-transform: uppercase;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight: 400;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
.btn-default {
border: 1px solid #42dca3;
color: #42dca3;
background-color: transparent;
}
.btn-default:hover,
.btn-default:focus {
border: 1px solid #42dca3;
outline: 0;
color: #000;
background-color: #42dca3;
}
ul.banner-social-buttons {
margin-top: 0;
}
@media(max-width:1199px) {
ul.banner-social-buttons {
margin-top: 15px;
}
}
@media(max-width:767px) {
ul.banner-social-buttons li {
display: block;
margin-bottom: 20px;
padding: 0;
}
ul.banner-social-buttons li:last-child {
margin-bottom: 0;
}
}
footer {
padding: 50px 0;
}
footer p {
margin: 0;
}
::-moz-selection {
text-shadow: none;
background: #fcfcfc;
background: rgba(255,255,255,.2);
}
::selection {
text-shadow: none;
background: #fcfcfc;
background: rgba(255,255,255,.2);
}
img::selection {
background: 0 0;
}
img::-moz-selection {
background: 0 0;
}
body {
webkit-tap-highlight-color: rgba(255,255,255,.2);
}
|
2018/01/13/What-should-I-do-at-25/index.html
|
XingwenZhang/XingwenZhang.github.io
|
<!DOCTYPE html>
<html class="theme-next pisces use-motion" lang="en">
<head>
<!-- hexo-inject:begin --><!-- hexo-inject:end --><meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.4" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=5.1.4">
<link rel="mask-icon" href="/images/logo.svg?v=5.1.4" color="#222">
<meta name="keywords" content="生活," />
<meta name="description" content="Reproduce from zhihu(Sorry I forget the username of original article) 想象一下其实你已经80岁了,碌碌无为的一生即将结束,你躺在床上望着天花板,想着如果我现在25岁就好了。 然后,你的愿望实现了,之后的记忆全都消失,但你真的回到了25岁。 如果现在的人生是你的第二人生,你还愿意像现在这样度过吗? 25岁的人,最应该知道的是,现">
<meta name="keywords" content="生活">
<meta property="og:type" content="article">
<meta property="og:title" content="What should I do at 25">
<meta property="og:url" content="http://yoursite.com/2018/01/13/What-should-I-do-at-25/index.html">
<meta property="og:site_name" content="Angus' MineCraft">
<meta property="og:description" content="Reproduce from zhihu(Sorry I forget the username of original article) 想象一下其实你已经80岁了,碌碌无为的一生即将结束,你躺在床上望着天花板,想着如果我现在25岁就好了。 然后,你的愿望实现了,之后的记忆全都消失,但你真的回到了25岁。 如果现在的人生是你的第二人生,你还愿意像现在这样度过吗? 25岁的人,最应该知道的是,现">
<meta property="og:locale" content="en">
<meta property="og:updated_time" content="2018-01-13T23:46:31.000Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="What should I do at 25">
<meta name="twitter:description" content="Reproduce from zhihu(Sorry I forget the username of original article) 想象一下其实你已经80岁了,碌碌无为的一生即将结束,你躺在床上望着天花板,想着如果我现在25岁就好了。 然后,你的愿望实现了,之后的记忆全都消失,但你真的回到了25岁。 如果现在的人生是你的第二人生,你还愿意像现在这样度过吗? 25岁的人,最应该知道的是,现">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Pisces',
version: '5.1.4',
sidebar: {"position":"left","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
duoshuo: {
userId: '0',
author: 'Author'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://yoursite.com/2018/01/13/What-should-I-do-at-25/"/>
<title>What should I do at 25 | Angus' MineCraft</title><!-- hexo-inject:begin --><!-- hexo-inject:end -->
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="en">
<!-- hexo-inject:begin --><!-- hexo-inject:end --><div class="container sidebar-position-left page-post-detail">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Angus' MineCraft</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
Home
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
Archives
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2018/01/13/What-should-I-do-at-25/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="Angus">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Angus' MineCraft">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">What should I do at 25</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2018-01-13T15:45:04+08:00">
2018-01-13
</time>
</span>
<span class="post-meta-divider">|</span>
<span class="page-pv"><i class="fa fa-file-o"></i>
<span class="busuanzi-value" id="busuanzi_value_page_pv" ></span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>Reproduce from zhihu(Sorry I forget the username of original article)</p>
<p>想象一下其实你已经80岁了,碌碌无为的一生即将结束,你躺在床上望着天花板,想着如果我现在25岁就好了。</p>
<p>然后,你的愿望实现了,之后的记忆全都消失,但你真的回到了25岁。</p>
<p><strong>如果现在的人生是你的第二人生,你还愿意像现在这样度过吗?</strong></p>
<ol>
<li>25岁的人,最应该知道的是,现在每一个看似不经意的选择,都会影响你的发展。为了让自己轻松一点而逃避掉的烦恼,之后会加倍来让你痛苦。</li>
<li>25岁,看似健康的身体不过是年轻的附属品,只有现在开始锻炼运动,注意饮食,30岁的时候才能依然有健康的身体,保持充沛的精力。</li>
<li>25岁了,就不要把时间浪费在无谓的社交上,等到5年后,你就会发现很多当初如胶似漆的朋友不过是过客,真正留下来的还是那么几个。</li>
<li>25岁开始找一个目标,并为之奋斗,等到5年后,你就能成为行业内的专家,获得一定的成就和地位。在当下,专注和耐心已经成为最稀缺的东西。</li>
<li>25岁也要开始关注自己的外貌,长出的皱纹不会消失,脱掉的发不会长出来,现在开始护肤护理,不要嫌麻烦,5年后你会感激现在的自己。</li>
<li>25岁,是时候好好谈一场恋爱了,趁着还有爱的能力的时候,找一个值得爱的人,做一个耐心的好人,享受幸福的时光,无论最后会不会在一起。</li>
</ol>
<p><strong>25岁的时候,你不一定要去四处旅游,女生无需囤积200支口红,男生无需买一箱子的酒精,别装酷,别被自媒体洗脑,认真生活不是一件丢人的事情。</strong></p>
</div>
<footer class="post-footer">
<div class="post-tags">
<a href="/tags/生活/" rel="tag"># 生活</a>
</div>
<div class="post-nav">
<div class="post-nav-next post-nav-item">
<a href="/2018/01/03/TopCoder-Sorting/" rel="next" title="TopCoder-Sorting">
<i class="fa fa-chevron-left"></i> TopCoder-Sorting
</a>
</div>
<span class="post-nav-divider"></span>
<div class="post-nav-prev post-nav-item">
<a href="/2018/01/26/Reading-Notes-Multimedia-Systems-—-Algorithms-Standards-and-Industry-Practices-Chapter-1-Introducation-to-Multimedia/" rel="prev" title="[Reading Notes] Multimedia Systems — Algorithms, Standards and Industry Practices, Chapter 1 Introducation to Multimedia">
[Reading Notes] Multimedia Systems — Algorithms, Standards and Industry Practices, Chapter 1 Introducation to Multimedia <i class="fa fa-chevron-right"></i>
</a>
</div>
</div>
</footer>
</div>
</article>
<div class="post-spread">
</div>
</div>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview-wrap sidebar-panel sidebar-panel-active">
<div class="site-overview">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<p class="site-author-name" itemprop="name">Angus</p>
<p class="site-description motion-element" itemprop="description">只要思想不滑坡,办法总比困难多</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">21</span>
<span class="site-state-item-name">posts</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/index.html">
<span class="site-state-item-count">2</span>
<span class="site-state-item-name">categories</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/index.html">
<span class="site-state-item-count">24</span>
<span class="site-state-item-name">tags</span>
</a>
</div>
</nav>
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright">© <span itemprop="copyrightYear">2019</span>
<span class="with-love">
<i class="fa fa-user"></i>
</span>
<span class="author" itemprop="copyrightHolder">Angus</span>
</div>
<div class="powered-by">Powered by <a class="theme-link" target="_blank" href="https://hexo.io">Hexo</a></div>
<span class="post-meta-divider">|</span>
<div class="theme-info">Theme — <a class="theme-link" target="_blank" href="https://github.com/iissnan/hexo-theme-next">NexT.Pisces</a> v5.1.4</div>
<div class="busuanzi-count">
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<span class="site-uv">
<i class="fa fa-user"></i>
<span class="busuanzi-value" id="busuanzi_value_site_uv"></span>
</span>
<span class="site-pv">
<i class="fa fa-eye"></i>
<span class="busuanzi-value" id="busuanzi_value_site_pv"></span>
</span>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.4"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.4"></script>
<script type="text/javascript" src="/js/src/affix.js?v=5.1.4"></script>
<script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.1.4"></script>
<script type="text/javascript" src="/js/src/scrollspy.js?v=5.1.4"></script>
<script type="text/javascript" src="/js/src/post-details.js?v=5.1.4"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.4"></script><!-- hexo-inject:begin --><!-- hexo-inject:end -->
</body>
</html>
|
cloud-paas/cloud-paas-webapp/cloud-paas-webapp-war/src/main/webapp/styles/modal/pop-in.css
|
Orange-OpenSource/elpaaso-core
|
/**
* Copyright (C) 2015 Orange
* 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
* http://www.apache.org/licenses/LICENSE-2.0
* 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.
*/
div.wicket-mask-dark {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
opacity: 0.5;
background-color: #000;
filter: alpha(opacity=50);
background-image: url('transparent2.png');
}
div.wicket-mask-transparent {
position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-image: url('transparent1.gif');
}
div.wicket-modal {
position: fixed;
_position: absolute;
z-index: 20001;
visibility: hidden;
overflow:auto;
background:#eef;
padding:10px;
border: .084em solid #A3A3A3 !important;
box-shadow:1px 1px 10px #000;
border-radius: 5px;
}
div.wicket-modal div.w_top_1 {
width: 100%;
overflow: hidden;
}
div.wicket-modal div.w_top {
height: 0px;
background-position: 0px -16px;
overflow: hidden;
cursor:n-resize;
padding: 0px; margin: 0px;
}
div.wicket-modal .w_topLeft {
/*
position: absolute;
top: 0px;
left: 0px;
*/
width: 14px;
height: 0px;
float: left;
background-position: 0px 0px;
overflow: hidden;
cursor: nw-resize;
}
div.wicket-modal div.w_topRight {
/*
position: absolute;
top: 0px;
right: 0px;
*/
width: 14px;
height: 0px;
float: right;
background-position: -16px 0px;
overflow: hidden;
cursor: ne-resize;
}
div.wicket-modal div.w_left {
background-position: 0px 0px;
background-repeat: repeat-y;
cursor: w-resize;
width: 100%;
}
div.wicket-modal div.w_right_1 {
margin-left:10px;
}
div.wicket-modal div.w_right {
background-position: right;
background-repeat: repeat-y;
cursor:e-resize;
width: 100%;
}
div.wicket-modal div.w_content_1 {
margin-right: 10px;
cursor: auto;
}
div.wicket-modal div.w_caption {
height: 2.1em;
overflow: hidden;
cursor: default;
position: relative;
background-color: white;
cursor: default;
line-height: 1.4em;
color: #666;
}
div.wicket-modal a.w_close {
height: 27px;
width: 27px;
overflow: hidden;
/* background-position: -64px 0px; */
/*background-position: 0px 0px;*/
position: absolute;
right: 3px;
padding: 0px;
margin: 0px;
background-position: 0px 0px;
background-image: url('popin_close_btn.gif');
background-repeat: no-repeat;
}
div.wicket-modal a.w_close:hover {
float: right;
height: 27px;
width: 27px;
overflow: hidden;
background-position: 0px 0px;
background-image: url('popin_close_btn.gif');
background-repeat: no-repeat;
}
div.wicket-modal span.w_captionText {
/*
height: 1.4em;
position: absolute;
margin-left: 3px;
font-weight: bold;
left: 0em;
*/
color:#444;
font:normal 1em/1.2 Arial, Helvetica, sans-serif;
text-transform:lowercase;
margin:0 0 10px 0;
font-size:1.83em;
}
div.wicket-modal div.w_content_container {
position: relative;
}
div.wicket-modal div.w_content_2 {
width: 100%;
background-color: white;
padding-top: 0.1em;
_overflow: auto;
}
div.wicket-modal div.w_content_3 {
border: 0px solid #bbb;
padding: 0px;
}
div.wicket-modal div.w_content {
width: 100%;
background-color: white;
}
div.wicket-modal iframe {
width: 100%;
height: 400px;
padding: 0px;
margin: 0px;
border-width: 0px;
position: relative;
}
div.wicket-modal div.w_bottom_1 {
width: 100%;
overflow: hidden;
/*cursor: n-resize; */
}
div.wicket-modal div.w_bottom {
height: 0px;
background-position: 0px -32px;
overflow:hidden;
}
div.wicket-modal div.w_bottomRight {
/*
position: absolute;
bottom: 0px;
right: 0px;
*/
width: 14px;
height: 0px;
float: right;
background-position: -48px 0px;
/*cursor: nw-resize; */
overflow: hidden;
}
div.wicket-modal div.w_bottomLeft {
/*
position: absolute;
bottom: 0px;
left: 0px;
*/
width: 14px;
height: 0px;
float: left;
background-position: -32px 0px;
overflow: hidden;
/*cursor: ne-resize;*/
}
div.wicket-modal div.w_orange div.w_left,
div.wicket-modal div.w_orange div.w_right {
background-image: none;
_background-image: none;
}
div.wicket-modal div.w_orange div.w_top,
div.wicket-modal div.w_orange div.w_bottom,
div.wicket-modal div.w_orange div.w_topLeft,
div.wicket-modal div.w_orange div.w_topRight,
div.wicket-modal div.w_orange div.w_bottomRight,
div.wicket-modal div.w_orange div.w_bottomLeft {
background-image: none;
}
div.wicket-modal div.w_orange a.w_close {
background-image: url('popin_close_btn.gif');
}
div.wicket-modal div.w_blue div.w_left,
div.wicket-modal div.w_blue div.w_right {
background-image: url('frame-blue-2-alpha.png');
_background-image: url('frame-blue-2-ie.png');
}
div.wicket-modal div.w_blue div.w_top,
div.wicket-modal div.w_blue div.w_bottom,
div.wicket-modal div.w_blue div.w_topLeft,
div.wicket-modal div.w_blue div.w_topRight,
div.wicket-modal div.w_blue div.w_bottomRight,
div.wicket-modal div.w_blue div.w_bottomLeft,
div.wicket-modal div.w_blue a.w_close {
background-image: url('frame-blue-1-alpha.png');
}
div.wicket-modal div.w_silver div.w_left,
div.wicket-modal div.w_silver div.w_right {
background-image: url('frame-gray-2-alpha.png');
_background-image: url('frame-gray-2-ie.png');
}
div.wicket-modal div.w_silver div.w_top,
div.wicket-modal div.w_silver div.w_bottom,
div.wicket-modal div.w_silver div.w_topLeft,
div.wicket-modal div.w_silver div.w_topRight,
div.wicket-modal div.w_silver div.w_bottomRight,
div.wicket-modal div.w_silver div.w_bottomLeft,
div.wicket-modal div.w_silver a.w_close {
background-image: url('frame-gray-1-alpha.png');
_background-image: url('frame-gray-1-ie.png');
}
|
docs/solution/dv360_targeter/index.html
|
google/starthinker
|
<!DOCTYPE html>
<html>
<head>
<!--
###########################################################################
#
# Copyright 2020 Google LLC
#
# 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# 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.
#
###########################################################################
#
# This code generated (see starthinker/scripts for possible source):
# - Command: "python starthinker_ui/manage.py github"
#
###########################################################################
-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-167283455-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-167283455-3');
</script>
<link rel="shortcut icon" href="https://google.github.io/starthinker/static/favicon.ico" type="image/x-icon">
<link rel="icon" href="https://google.github.io/starthinker/static/favicon.ico" type="image/x-icon">
<!--Import Google Icon Font-->
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined" rel="stylesheet">
<!--Import materialize.css-->
<link rel="stylesheet" href="https://google.github.io/starthinker/static/css/materialize-1.0.0.min.css">
<style>
html { color: rgba(68,68,68,1); font-family: Roboto, sans-serif; }
.material-icons { line-height: normal; vertical-align: middle; }
#message { justify-content: center; font-size: 2em; padding: 0px 20px; }
#message i { font-size: 1.5em; margin: 10px; }
#message ul, #message li { display: inline; margin-left: 10px; }
#page { width: 100%; max-width: 1280px; min-height: 500px; margin: 0px auto; padding-bottom: 50px; }
div.nav-wrapper { padding-left: 10%; padding-right: 10%; }
h1 a i.material-icons { font-size: 4rem; }
a.brand-logo img { vertical-align: middle; width: 40px; height: 40px; }
span.brand-title { vertical-align: middle; padding-left: 10px;}
ol li { line-height: 1.8em; }
textarea { margin-top: 7px; height: 10rem; }
table.list { width: 96%; max-width: 800px; margin: 1vh auto; line-height: 1.8em; }
a.menu_link, span.menu_link { display: inline-block; margin: 8px; }
div.row { display: flex; align-items: flex-start; justify-content: center; flex-wrap: wrap; }
#cards div.card { width: 300px; margin: 20px; padding: 0.1px; text-align: left; }
div.card h4 { width 100%; padding: 20px;}
div.card h4 i.material-icons { font-size: 2.28rem; }
div.card table { margin: 0px 5% 30px 5%; width: 90%; }
.card .card-content .card-title { word-wrap: break-word; }
div.input-field { padding-top: 0.1px; margin-top: 2.4em;}
div.switch { padding-top: 1rem; padding-bottom: 1rem; }
div.switch label { font-size: 1.05rem; }
div.switch label:first-child { font-size: 1.3rem; margin-right: 40px; }
p.flow-text { font-weight: 100; }
i.right { margin: 0px 15px; font-size: 1.5rem;}
.collapsible-body { padding: 0px; }
body { overflow: auto !important; }
#solution_image { margin: 10px auto; width: 100%; max-width: 800px; height: auto; display: block; }
.btn-large { margin: 1vh 1vw; }
.col { margin-right: auto; }
pre { overflow: scroll; }
</style>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<nav class="blue darken-1">
<div class="nav-wrapper">
<a href="/starthinker/" class="brand-logo">
<img src="https://google.github.io/starthinker/static/StarThinker.png" alt="StarThinker Logo"/>
<span class="brand-title">StarThinker</span>
</a>
<a href="#" data-target="mobile-menu" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="/starthinker/solution/">Solutions</a></li>
<li><a href="/starthinker/help/">Help</a></li>
</ul>
</div>
</nav>
<ul class="sidenav blue darken-2" id="mobile-menu">
<li><a class="white-text" href="/starthinker/solution/">Solutions</a></li>
<li><a class="white-text" href="/starthinker/help/">Help</a></li>
</ul>
<body>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://google.github.io/starthinker/static/js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="https://google.github.io/starthinker/static/js/materialize-1.0.0.min.js"></script>
<!--
Start of Floodlight Tag: Please do not remove
Activity name of this tag: Gallery Conversions
URL of the webpage where the tag is expected to be placed: https://google.github.io/starthinker/
This tag must be placed between the <body> and </body> tags, as close as possible to the opening tag.
Creation Date: 03/09/2020
-->
<script type="text/javascript">
var axel = Math.random() + "";
var a = axel * 10000000000000;
document.write('<img src="https://ad.doubleclick.net/ddm/activity/src=8657867;type=github;cat=galle0;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;npa=;ord=' + a + '?" width="1" height="1" alt=""/>');
</script>
<noscript>
<img src="https://ad.doubleclick.net/ddm/activity/src=8657867;type=github;cat=galle0;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;npa=;ord=1?" width="1" height="1" alt=""/>
</noscript>
<!-- End of Floodlight Tag: Please do not remove -->
<div id="page" class="center">
<br/><br/>
<a class="trigger_category menu_link waves-effect waves-dark btn-flat grey lighten-2" href="/starthinker/solution/">All</a>
<br/><br/>
<div class="row">
<div class="col s12 m6 l4">
<i class="large material-icons">gps_fixed</i><h1>DV360 Bulk Targeting Editor</h1>
<p class="flow-text">Allows bulk targeting DV360 through Sheets and BigQuery.</p>
</div>
<div class="col s12 m6 l8">
<img id="solution_image" src="https://github.com/google/starthinker/raw/master/tutorials/images/dv360_targeter.png" alt="DV360 Bulk Targeting Editor Sample Screenshot"/>
</div>
</div>
<br/><br/>
<div class="buttons">
<a class="btn-large blue waves-effect waves-light" href="https://groups.google.com/d/forum/starthinker-assets" target="_blank">
<i class="material-icons right">lock_open</i>Get Access
</a>
<a class="btn-large blue waves-effect waves-light" href="https://docs.google.com/spreadsheets/d/1ARkIvh0D-gltZeiwniUonMNrm0Mi1s2meZ9FUjutXOE/" target="_blank">
<i class="material-icons right">directions_bike</i>Sample
</a>
<a class="btn-large blue waves-effect waves-light" href="https://github.com/google/starthinker/blob/master/scripts/dv360_targeter.json" target="_blank">
<i class="material-icons right">list</i>Git Hub
</a>
<a class="btn-large blue waves-effect waves-light" href="https://github.com/google/starthinker/blob/master/examples/dv360_targeter_example.py" target="_blank">
<i class="material-icons right">source</i>Python
</a>
<a class="btn-large blue waves-effect waves-light" href="https://colab.research.google.com/github/google/starthinker/blob/master/colabs/dv360_targeter.ipynb" target="_blank">
<i class="material-icons right">menu_book</i>Colab
</a>
<a class="btn-large blue waves-effect waves-light" href="https://github.com/google/starthinker/blob/master/dags/dv360_targeter_dag.py" target="_blank">
<i class="material-icons right">air</i>Airflow
</a>
<a class="btn-large blue waves-effect waves-light" href="https://github.com/google/starthinker/blob/master/tests/dv360_targeter.json" target="_blank">
<i class="material-icons right">thumb_up</i>Test
</a>
</div>
<br/><br/>
<div class="row">
<div class="col s12 m6 l4">
<div class="card">
<br/>
<h4>Impact Level</h4>
<table class="bordered">
<tbody>
<tr>
<td width="50%">Spend Optimization</td>
<td>
<div class="progress">
<div class="determinate" style="width: 100%"></div>
</div>
</td>
</tr>
<tr>
<td width="50%">Spend Growth</td>
<td>
<div class="progress">
<div class="determinate" style="width: 80%"></div>
</div>
</td>
</tr>
<tr>
<td width="50%">Time Savings</td>
<td>
<div class="progress">
<div class="determinate" style="width: 100%"></div>
</div>
</td>
</tr>
<tr>
<td width="50%">Account Health</td>
<td>
<div class="progress">
<div class="determinate" style="width: 100%"></div>
</div>
</td>
</tr>
<tr>
<td width="50%">Csat Improvement</td>
<td>
<div class="progress">
<div class="determinate" style="width: 100%"></div>
</div>
</td>
</tr>
</tbody>
</table>
<h4>Value Proposition</h4>
<table class="bordered">
<tbody>
<tr>
<td>Speed up bulk targeting.</td>
</tr>
</tbody>
</table>
<h4>Instructions</h4>
<table class="bordered">
<tbody>
<tr>
<td>Select <strong>Load</strong>, click <strong>Save + Run</strong>, a sheet called <strong> DV Targeter</strong> will be created.</td>
</tr>
<tr>
<td>In the <strong>Partners</strong> sheet tab, fill in <strong>Filter</strong> column then select <strong>Load</strong>, click <strong>Save + Run</strong>.</td>
</tr>
<tr>
<td>In the <strong>Advertisers</strong> sheet tab, fill in <strong>Filter</strong> column. then select <strong>Load</strong>, click <strong>Save + Run</strong>.</td>
</tr>
<tr>
<td>Check the First And Third Party option to load audiences, which may be slow. If not loaded, user will enter audience ids into the sheet manually.</td>
</tr>
<tr>
<td>On the <strong>Line Items</strong> sheet tab, the <strong>Filter</strong> is used only to limit drop down choices in the rest of the tool.</td>
</tr>
<tr>
<td>Optionally edit or filter the <strong>Targeting Options</strong> or <strong>Inventory Sources</strong> sheets to limit choices.</td>
</tr>
<tr>
<td>Make targeting updates, fill in changes on all tabs with colored fields (RED FIELDS ARE NOT IMPLEMENTED, IGNORE).</td>
</tr>
<tr>
<td>Select <strong>Preview</strong>, click <strong>Save + Run</strong> then check the <strong>Preview</strong> tabs.</td>
</tr>
<tr>
<td>Select <strong>Update</strong>, click <strong>Save + Run</strong> then check the <strong>Success</strong> and <strong>Error</strong> tabs.</td>
</tr>
<tr>
<td>Load and Update can be run multiple times.</td>
</tr>
<tr>
<td>If an update fails, all parts of the update failed, break it up into multiple updates.</td>
</tr>
<tr>
<td>To refresh the Partner, Advertiser, or Line Item list, remove the filters and run load.</td>
</tr>
</tbody>
</table>
<h4>Details</h4>
<table class="bordered">
<tbody>
<tr>
<td>Open Source</td>
<td>YES
</tr>
<tr>
<td>Age</td>
<td>Jan. 12, 2021 (10 months, 1 week)</td>
</tr>
<tr>
<td>Authors</td>
<td><a href="mailto:kenjora@google.com?subject=Request+For+A+DV360+Bulk+Targeting+Editor+StarThinker+Solution&body=Hi%2C%0A%0AI%27d+like+to+learn+more+about+the+DV360+Bulk+Targeting+Editor+solution.%0A%0AStarThinker+Link%3A+https%3A%2F%2Fgoogle.github.io%2Fstarthinker%2Fsolution%2Fdv360_targeter%2F%0A%0ACan+we+set+up+some+time+to+over+it%3F%0A%0AThanks" target="_blank">kenjora@google.com</a>
</td>
</tr>
<tr>
<td>Manual</td>
<td>Triggered on demand by user.</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="col s12 m6 l8">
<pre id="code-workflow" class="card left-align"><code class="language-json">[
{
"<a href="https://github.com/google/starthinker/tree/master/starthinker/task/dataset/run.py" target="_blank">dataset</a>": {
"__comment__": "Ensure dataset exists.",
"auth": {
"field": {
"name": "auth_bigquery",
"kind": "authentication",
"order": 1,
"default": "service",
"description": "Credentials used for writing data."
}
},
"dataset": {
"field": {
"name": "recipe_slug",
"kind": "string",
"order": 2,
"default": "",
"description": "Name of Google BigQuery dataset to create."
}
}
}
},
{
"<a href="https://github.com/google/starthinker/tree/master/starthinker/task/drive/run.py" target="_blank">drive</a>": {
"__comment__": "Copy the default template to sheet with the recipe name",
"auth": {
"field": {
"name": "auth_sheet",
"kind": "authentication",
"order": 1,
"default": "user",
"description": "Credentials used for reading data."
}
},
"copy": {
"source": "https://docs.google.com/spreadsheets/d/1ARkIvh0D-gltZeiwniUonMNrm0Mi1s2meZ9FUjutXOE/",
"destination": {
"field": {
"name": "recipe_name",
"suffix": " DV Targeter",
"kind": "string",
"order": 3,
"default": "",
"description": "Name of Google Sheet to create."
}
}
}
}
},
{
"<a href="https://github.com/google/starthinker/tree/master/starthinker/task/dv_targeter/run.py" target="_blank">dv_targeter</a>": {
"__comment": "Depending on users choice, execute a different part of the solution.",
"auth_dv": {
"field": {
"name": "auth_dv",
"kind": "authentication",
"order": 1,
"default": "user",
"description": "Credentials used for dv."
}
},
"auth_sheets": {
"field": {
"name": "auth_sheet",
"kind": "authentication",
"order": 2,
"default": "user",
"description": "Credentials used for sheet."
}
},
"auth_bigquery": {
"field": {
"name": "auth_bigquery",
"kind": "authentication",
"order": 3,
"default": "service",
"description": "Credentials used for bigquery."
}
},
"sheet": {
"field": {
"name": "recipe_name",
"suffix": " DV Targeter",
"kind": "string",
"order": 4,
"default": "",
"description": "Name of Google Sheet to create."
}
},
"dataset": {
"field": {
"name": "recipe_slug",
"kind": "string",
"order": 5,
"default": "",
"description": "Name of Google BigQuery dataset to create."
}
},
"command": {
"field": {
"name": "command",
"kind": "choice",
"choices": [
"Clear",
"Load",
"Preview",
"Update"
],
"order": 6,
"default": "Load",
"description": "Action to take."
}
},
"first_and_third": {
"field": {
"name": "first_and_third",
"kind": "boolean",
"order": 6,
"default": false,
"description": "Load first and third party data (may be slow). If not selected, enter audience identifiers into sheet manually."
}
}
}
}
]</code></pre>
</div>
</div>
<br/><br/>
<h3 id="code-tasks">Run This Workflow In Minutes On Google Cloud</h3>
<p class="flow-text">Everything from a quick Google Cloud UI to reference developer code for your team in one GitHub repository.</p>
<p>
<a href="https://github.com/google/starthinker/blob/master/tutorials/README.md#deployment" class="waves-effect waves-light btn blue form_button modal-trigger" target="_blank">
Deployment Steps<i class="material-icons right">launch</i>
</a>
<a href="https://github.com/google/starthinker/blob/master/tutorials/README.md#development" class="waves-effect waves-light btn blue form_button modal-trigger" target="_blank">
Developer Guide<i class="material-icons right">build</i>
</a>
<a href="https://google.github.io/starthinker/help/" class="waves-effect waves-light btn blue form_button modal-trigger" target="_blank">
UI How To<i class="material-icons right">laptop</i>
</a>
</p>
</div>
</body>
<footer class="page-footer blue">
<div class="footer-copyright">
<div class="container center">
© 2019 Google LLC
</div>
</div>
</footer>
<script type="text/javascript">
$(document).ready(function() {
M.AutoInit(context=document.getElementById("form_recipe"));
});
</script>
</html>
|
tools/FAKE/docs/apidocs/fake-iisexpress.html
|
Elders/Hermes
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>IISExpress - FAKE - F# Make</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Steffen Forkmann, Mauricio Scheffer, Colin Bull">
<script src="http://code.jquery.com/jquery-1.8.0.js"></script>
<script src="http://code.jquery.com/ui/1.8.23/jquery-ui.js"></script>
<script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="http://fsharp.github.io/FAKE/content/style.css" />
<script type="text/javascript" src="http://fsharp.github.io/FAKE/content/tips.js"></script>
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<li><a href="http://fsharp.org">fsharp.org</a></li>
<li><a href="http://github.com/fsharp/fake">github page</a></li>
</ul>
<h3 class="muted">FAKE - F# Make</h3>
</div>
<hr />
<div class="row">
<div class="span9" id="main">
<h1>IISExpress</h1>
<div class="xmldoc">
<p>Contains tasks to host webprojects in IIS Express.</p>
</div>
<!-- Render nested types and modules, if there are any -->
<h2>Nested types and modules</h2>
<div>
<table class="table table-bordered type-list">
<thead>
<tr><td>Type</td><td>Description</td></tr>
</thead>
<tbody>
<tr>
<td class="type-name">
<a href="fake-iisexpress-iisexpressoptions.html">IISExpressOptions</a>
</td>
<td class="xmldoc"><p>Options for using IISExpress</p>
</td>
</tr>
</tbody>
</table>
</div>
<h3>Functions and values</h3>
<table class="table table-bordered member-list">
<thead>
<tr><td>Function or value</td><td>Description</td></tr>
</thead>
<tbody>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '11', 11)" onmouseover="showTip(event, '11', 11)">
createConfigFile (...)
</code>
<div class="tip" id="11">
<strong>Signature:</strong>(name:'?6085 * siteId:int * templateFileName:string * path:string * hostName:string * port:int) -> string<br />
<strong>Type parameters:</strong> '?6085 </div>
</td>
<td class="xmldoc">
<p>Create a IISExpress config file from a given template</p>
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/Fake.IIS/IISExpress.fs#L24-24" class="github-link">Go to GitHub source</a>
</td>
</tr>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '12', 12)" onmouseover="showTip(event, '12', 12)">
HostWebsite (...)
</code>
<div class="tip" id="12">
<strong>Signature:</strong>setParams:(IISExpressOptions -> IISExpressOptions) -> configFileName:string -> siteId:int -> Process<br />
</div>
</td>
<td class="xmldoc">
<p>This task starts the given site in IISExpress with the given ConfigFile.</p>
<h2>Parameters</h2>
<ul>
<li><code>setParams</code> - Function used to overwrite the default parameters.</li>
<li><code>configFileName</code> - The file name of the IISExpress configfile.</li>
<li><code>siteId</code> - The id (in the config file) of the website to run.</li>
</ul>
<h2>Sample</h2>
<pre><code> HostWebsite (fun p -> { p with ToolPath = "iisexpress.exe" }) "configfile.config" 1
</code></pre>
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/Fake.IIS/IISExpress.fs#L65-65" class="github-link">Go to GitHub source</a>
</td>
</tr>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '13', 13)" onmouseover="showTip(event, '13', 13)">
IISExpressDefaults
</code>
<div class="tip" id="13">
<strong>Signature:</strong>IISExpressOptions<br />
</div>
</td>
<td class="xmldoc">
<p>IISExpress default parameters - tries to locate the iisexpress.exe</p>
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/Fake.IIS/IISExpress.fs#L14-14" class="github-link">Go to GitHub source</a>
</td>
</tr>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '14', 14)" onmouseover="showTip(event, '14', 14)">
OpenUrlInBrowser url
</code>
<div class="tip" id="14">
<strong>Signature:</strong>url:string -> unit<br />
</div>
</td>
<td class="xmldoc">
<p>Opens the given url in the browser</p>
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/Fake.IIS/IISExpress.fs#L81-81" class="github-link">Go to GitHub source</a>
</td>
</tr>
<tr>
<td class="member-name">
<code onmouseout="hideTip(event, '15', 15)" onmouseover="showTip(event, '15', 15)">
OpenWebsiteInBrowser hostName port
</code>
<div class="tip" id="15">
<strong>Signature:</strong>hostName:string -> port:int -> unit<br />
</div>
</td>
<td class="xmldoc">
<p>Opens the given website in the browser</p>
<a href="https://github.com/fsharp/FAKE/blob/master/src/app/Fake.IIS/IISExpress.fs#L84-84" class="github-link">Go to GitHub source</a>
</td>
</tr>
</tbody>
</table>
</div>
<div class="span3">
<img src="http://fsharp.github.io/FAKE/pics/logo.png" alt="FAKE - F# Make" style="width:150px;margin-left: 20px;" />
<ul class="nav nav-list" id="menu" style="margin-top: 20px;">
<li class="nav-header">FAKE - F# Make</li>
<li><a href="http://fsharp.github.io/FAKE/index.html">Home page</a></li>
<li class="divider"></li>
<li><a href="https://nuget.org/packages/Fake">Get FAKE via NuGet</a></li>
<li><a href="http://github.com/fsharp/fake">Source Code on GitHub</a></li>
<li><a href="https://github.com/fsharp/FAKE/blob/develop/License.txt">License (MS-PL)</a></li>
<li><a href="http://fsharp.github.io/FAKE/users.html">Who is using FAKE?</a></li>
<li><a href="http://fsharp.github.io/FAKE/RELEASE_NOTES.html">Release Notes</a></li>
<li><a href="http://fsharp.github.io/FAKE/contributing.html">Contributing to FAKE</a></li>
<li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li>
<li class="nav-header">Articles</li>
<li><a href="http://fsharp.github.io/FAKE/gettingstarted.html">Getting started</a></li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/nuget.html">NuGet package restore</a></li>
<li><a href="http://fsharp.github.io/FAKE/fxcop.html">Using FxCop in a build</a></li>
<li><a href="http://fsharp.github.io/FAKE/assemblyinfo.html">Generating AssemblyInfo</a></li>
<li><a href="http://fsharp.github.io/FAKE/create-nuget-package.html">Create NuGet packages</a></li>
<li><a href="http://fsharp.github.io/FAKE/specifictargets.html">Running specific targets</a></li>
<li><a href="http://fsharp.github.io/FAKE/commandline.html">Running FAKE from command line</a></li>
<li><a href="http://fsharp.github.io/FAKE/customtasks.html">Creating custom tasks</a></li>
<li><a href="http://fsharp.github.io/FAKE/teamcity.html">TeamCity integration</a></li>
<li><a href="http://fsharp.github.io/FAKE/canopy.html">Running canopy tests</a></li>
<li><a href="http://fsharp.github.io/FAKE/octopusdeploy.html">Octopus Deploy</a></li>
<li><a href="http://fsharp.github.io/FAKE/typescript.html">TypeScript support</a></li>
<li class="divider"></li>
<li><a href="http://fsharp.github.io/FAKE/deploy.html">Fake.Deploy</a></li>
<li class="nav-header">Documentation</li>
<li><a href="http://fsharp.github.io/FAKE/apidocs/index.html">API Reference</a></li>
</ul>
</div>
</div>
</div>
<a href="http://github.com/fsharp/fake"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
</body>
</html>
|
Javadoc/org/drip/measure/continuousmarginal/package-frame.html
|
lakshmiDRIP/DRIP
|
<!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:26 EST 2017 -->
<title>org.drip.measure.continuousmarginal</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>
<h1 class="bar"><a href="../../../../org/drip/measure/continuousmarginal/package-summary.html" target="classFrame">org.drip.measure.continuousmarginal</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="R1.html" title="class in org.drip.measure.continuousmarginal" target="classFrame">R1</a></li>
<li><a href="Rd.html" title="class in org.drip.measure.continuousmarginal" target="classFrame">Rd</a></li>
</ul>
</div>
</body>
</html>
|
html/docker/kubernates-handbook/theory/cluster/garbage_collection.html
|
klose911/klose911.github.io
|
<?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" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>垃圾回收</title>
<meta name="generator" content="Org mode" />
<meta name="author" content="Wu, Shanliang" />
<style type="text/css">
<!--/*--><![CDATA[/*><!--*/
.title { text-align: center;
margin-bottom: .2em; }
.subtitle { text-align: center;
font-size: medium;
font-weight: bold;
margin-top:0; }
.todo { font-family: monospace; color: red; }
.done { font-family: monospace; color: green; }
.priority { font-family: monospace; color: orange; }
.tag { background-color: #eee; font-family: monospace;
padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.org-right { margin-left: auto; margin-right: 0px; text-align: right; }
.org-left { margin-left: 0px; margin-right: auto; text-align: left; }
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
border: 1px solid #ccc;
box-shadow: 3px 3px 3px #eee;
padding: 8pt;
font-family: monospace;
overflow: auto;
margin: 1.2em;
}
pre.src {
position: relative;
overflow: auto;
padding-top: 1.2em;
}
pre.src:before {
display: none;
position: absolute;
background-color: white;
top: -10px;
right: 10px;
padding: 3px;
border: 1px solid black;
}
pre.src:hover:before { display: inline; margin-top: 14px;}
/* Languages per Org manual */
pre.src-asymptote:before { content: 'Asymptote'; }
pre.src-awk:before { content: 'Awk'; }
pre.src-C:before { content: 'C'; }
/* pre.src-C++ doesn't work in CSS */
pre.src-clojure:before { content: 'Clojure'; }
pre.src-css:before { content: 'CSS'; }
pre.src-D:before { content: 'D'; }
pre.src-ditaa:before { content: 'ditaa'; }
pre.src-dot:before { content: 'Graphviz'; }
pre.src-calc:before { content: 'Emacs Calc'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-fortran:before { content: 'Fortran'; }
pre.src-gnuplot:before { content: 'gnuplot'; }
pre.src-haskell:before { content: 'Haskell'; }
pre.src-hledger:before { content: 'hledger'; }
pre.src-java:before { content: 'Java'; }
pre.src-js:before { content: 'Javascript'; }
pre.src-latex:before { content: 'LaTeX'; }
pre.src-ledger:before { content: 'Ledger'; }
pre.src-lisp:before { content: 'Lisp'; }
pre.src-lilypond:before { content: 'Lilypond'; }
pre.src-lua:before { content: 'Lua'; }
pre.src-matlab:before { content: 'MATLAB'; }
pre.src-mscgen:before { content: 'Mscgen'; }
pre.src-ocaml:before { content: 'Objective Caml'; }
pre.src-octave:before { content: 'Octave'; }
pre.src-org:before { content: 'Org mode'; }
pre.src-oz:before { content: 'OZ'; }
pre.src-plantuml:before { content: 'Plantuml'; }
pre.src-processing:before { content: 'Processing.js'; }
pre.src-python:before { content: 'Python'; }
pre.src-R:before { content: 'R'; }
pre.src-ruby:before { content: 'Ruby'; }
pre.src-sass:before { content: 'Sass'; }
pre.src-scheme:before { content: 'Scheme'; }
pre.src-screen:before { content: 'Gnu Screen'; }
pre.src-sed:before { content: 'Sed'; }
pre.src-sh:before { content: 'shell'; }
pre.src-sql:before { content: 'SQL'; }
pre.src-sqlite:before { content: 'SQLite'; }
/* additional languages in org.el's org-babel-load-languages alist */
pre.src-forth:before { content: 'Forth'; }
pre.src-io:before { content: 'IO'; }
pre.src-J:before { content: 'J'; }
pre.src-makefile:before { content: 'Makefile'; }
pre.src-maxima:before { content: 'Maxima'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-picolisp:before { content: 'Pico Lisp'; }
pre.src-scala:before { content: 'Scala'; }
pre.src-shell:before { content: 'Shell Script'; }
pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
/* additional language identifiers per "defun org-babel-execute"
in ob-*.el */
pre.src-cpp:before { content: 'C++'; }
pre.src-abc:before { content: 'ABC'; }
pre.src-coq:before { content: 'Coq'; }
pre.src-groovy:before { content: 'Groovy'; }
/* additional language identifiers from org-babel-shell-names in
ob-shell.el: ob-shell is the only babel language using a lambda to put
the execution function name together. */
pre.src-bash:before { content: 'bash'; }
pre.src-csh:before { content: 'csh'; }
pre.src-ash:before { content: 'ash'; }
pre.src-dash:before { content: 'dash'; }
pre.src-ksh:before { content: 'ksh'; }
pre.src-mksh:before { content: 'mksh'; }
pre.src-posh:before { content: 'posh'; }
/* Additional Emacs modes also supported by the LaTeX listings package */
pre.src-ada:before { content: 'Ada'; }
pre.src-asm:before { content: 'Assembler'; }
pre.src-caml:before { content: 'Caml'; }
pre.src-delphi:before { content: 'Delphi'; }
pre.src-html:before { content: 'HTML'; }
pre.src-idl:before { content: 'IDL'; }
pre.src-mercury:before { content: 'Mercury'; }
pre.src-metapost:before { content: 'MetaPost'; }
pre.src-modula-2:before { content: 'Modula-2'; }
pre.src-pascal:before { content: 'Pascal'; }
pre.src-ps:before { content: 'PostScript'; }
pre.src-prolog:before { content: 'Prolog'; }
pre.src-simula:before { content: 'Simula'; }
pre.src-tcl:before { content: 'tcl'; }
pre.src-tex:before { content: 'TeX'; }
pre.src-plain-tex:before { content: 'Plain TeX'; }
pre.src-verilog:before { content: 'Verilog'; }
pre.src-vhdl:before { content: 'VHDL'; }
pre.src-xml:before { content: 'XML'; }
pre.src-nxml:before { content: 'XML'; }
/* add a generic configuration mode; LaTeX export needs an additional
(add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
pre.src-conf:before { content: 'Configuration File'; }
table { border-collapse:collapse; }
caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top; }
th.org-right { text-align: center; }
th.org-left { text-align: center; }
th.org-center { text-align: center; }
td.org-right { text-align: right; }
td.org-left { text-align: left; }
td.org-center { text-align: center; }
dt { font-weight: bold; }
.footpara { display: inline; }
.footdef { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.equation-container {
display: table;
text-align: center;
width: 100%;
}
.equation {
vertical-align: middle;
}
.equation-label {
display: table-cell;
text-align: right;
vertical-align: middle;
}
.inlinetask {
padding: 10px;
border: 2px solid gray;
margin: 10px;
background: #ffffcc;
}
#org-div-home-and-up
{ text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
{ background-color: #ffff00; color: #000000; font-weight: bold; }
.org-svg { width: 90%; }
/*]]>*/-->
</style>
<link rel="stylesheet" type="text/css" href="../../css/main.css" />
<script type="text/javascript">
// @license magnet:?xt=urn:btih:e95b018ef3580986a04669f1b5879592219e2a7a&dn=public-domain.txt Public Domain
<!--/*--><![CDATA[/*><!--*/
function CodeHighlightOn(elem, id)
{
var target = document.getElementById(id);
if(null != target) {
elem.classList.add("code-highlighted");
target.classList.add("code-highlighted");
}
}
function CodeHighlightOff(elem, id)
{
var target = document.getElementById(id);
if(null != target) {
elem.classList.remove("code-highlighted");
target.classList.remove("code-highlighted");
}
}
/*]]>*///-->
// @license-end
</script>
</head>
<body>
<div id="org-div-home-and-up">
<a accesskey="h" href="taint_toleration.html"> UP </a>
|
<a accesskey="H" href="cluster.html"> HOME </a>
</div><div id="content">
<h1 class="title">垃圾回收</h1>
<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#org1bf52b5">Owner 和 Dependent</a></li>
<li><a href="#orga6e3b3f">控制垃圾收集器删除 Dependent</a>
<ul>
<li><a href="#org5311dc2">Background 级联删除</a></li>
<li><a href="#orgeb98a34">Foreground 级联删除</a></li>
<li><a href="#org2cf6980">设置级联删除策略</a></li>
</ul>
</li>
</ul>
</div>
</div>
<p>
Kubernetes 垃圾收集器的角色是删除指定的对象,这些对象曾经有但以后不再拥有 Owner 了
</p>
<pre class="example" id="org7e09e92">
注意:垃圾收集是 beta 特性,在 Kubernetes 1.4 及以上版本默认启用
</pre>
<div id="outline-container-org1bf52b5" class="outline-2">
<h2 id="org1bf52b5">Owner 和 Dependent</h2>
<div class="outline-text-2" id="text-org1bf52b5">
<p>
一些 Kubernetes 对象是其它一些的 Owner,具有 Owner 的对象被称为是 Owner 的 Dependent
</p>
<pre class="example" id="org2d2b0fa">
例如,一个 ReplicaSet 是一组 Pod 的 Owner
</pre>
<p>
每个 Dependent 对象具有一个指向其所属对象的 <span class="underline">metadata.ownerReferences</span> 字段:
</p>
<ul class="org-ul">
<li><p>
有时,Kubernetes 会自动设置 ownerReference 的值
</p>
<pre class="example" id="org3584260">
例如,当创建一个 ReplicaSet 时,Kubernetes 自动设置 ReplicaSet 中每个 Pod 的 ownerReference 字段值
在 1.6 版本,Kubernetes 会自动为一些对象设置 ownerReference 的值,这些对象是由 ReplicationController、ReplicaSet、StatefulSet、DaemonSet 和 Deployment 所创建或管理
</pre></li>
<li>也可以通过手动设置 ownerReference 的值,来指定 Owner 和 Dependent 之间的关系:</li>
</ul>
<pre class="example" id="org71993dd">
apiVersion: extensions/v1beta1
kind: ReplicaSet
metadata:
name: my-repset
spec:
replicas: 3
selector:
matchLabels:
pod-is-for: garbage-collection-example
template:
metadata:
labels:
pod-is-for: garbage-collection-example
spec:
containers:
- name: nginx
image: nginx
</pre>
<p>
如果创建该 ReplicaSet,然后查看 Pod 的 metadata 字段,能够看到 OwnerReferences 字段:
</p>
<div class="org-src-container">
<pre class="src src-sh">$ kubectl create -f https://k8s.io/docs/concepts/abstractions/controllers/my-repset.yaml
$ kubectl get pods --output=yaml
</pre>
</div>
<p>
输出显示了 Pod 的 Owner 是名为 my-repset 的 ReplicaSet:
</p>
<pre class="example" id="orgc705e15">
apiVersion: v1
kind: Pod
metadata:
...
ownerReferences:
- apiVersion: extensions/v1beta1
controller: true
blockOwnerDeletion: true
kind: ReplicaSet
name: my-repset
uid: d9607e19-f88f-11e6-a518-42010a800195
...
</pre>
</div>
</div>
<div id="outline-container-orga6e3b3f" class="outline-2">
<h2 id="orga6e3b3f">控制垃圾收集器删除 Dependent</h2>
<div class="outline-text-2" id="text-orga6e3b3f">
<p>
当删除对象时,可以指定是否该对象的 Dependent 也自动删除掉。自动删除 Dependent 也称为 <span class="underline">级联删除</span> 。Kubernetes 中有两种 级联删除 的模式:
</p>
<ul class="org-ul">
<li>background 模式</li>
<li>foreground 模式</li>
</ul>
<p>
如果删除对象时,不自动删除它的 Dependent,这些 Dependent 被称作是原对象的 <span class="underline">孤儿</span>
</p>
</div>
<div id="outline-container-org5311dc2" class="outline-3">
<h3 id="org5311dc2">Background 级联删除</h3>
<div class="outline-text-3" id="text-org5311dc2">
<p>
在 background 级联删除 模式下,Kubernetes 会立即删除 Owner 对象,然后垃圾收集器会在后台删除这些 Dependent
</p>
</div>
</div>
<div id="outline-container-orgeb98a34" class="outline-3">
<h3 id="orgeb98a34">Foreground 级联删除</h3>
<div class="outline-text-3" id="text-orgeb98a34">
<p>
在 foreground 级联删除 模式下,根对象首先进入 <span class="underline">删除中</span> 状态。在 “删除中” 状态会有如下的情况:
</p>
<ul class="org-ul">
<li>对象仍然可以通过 <b>REST API 可见</b></li>
<li>会设置对象的 <span class="underline">deletionTimestamp</span> 字段</li>
<li>对象的 <span class="underline">metadata.finalizers</span> 字段包含了值 <span class="underline">foregroundDeletion</span></li>
</ul>
<p>
一旦被设置为 “删除中” 状态,垃圾收集器会删除对象的所有 Dependent。垃圾收集器 <b>删除</b> 了所有 <b>Blocking</b> 的 <span class="underline">Dependent_(对象的 _ownerReference.blockOwnerDeletion</span> =true)之后,它会删除 Owner 对象。
</p>
<pre class="example" id="orgeda680b">
注意,在 “foreground 删除” 模式下,Dependent 只有通过 ownerReference.blockOwnerDeletion 才能阻止删除 Owner 对象
在 Kubernetes 1.7 版本中将增加 admission controller,基于 Owner 对象上的删除权限来控制用户去设置 blockOwnerDeletion 的值为 true,所以未授权的 Dependent 不能够延迟 Owner 对象的删除
如果一个对象的ownerReferences 字段被一个 Controller(例如 Deployment 或 ReplicaSet)设置,blockOwnerDeletion 会被自动设置,没必要手动修改这个字段
</pre>
</div>
</div>
<div id="outline-container-org2cf6980" class="outline-3">
<h3 id="org2cf6980">设置级联删除策略</h3>
<div class="outline-text-3" id="text-org2cf6980">
<p>
通过为 <span class="underline">Owner 对象</span> 设置 <span class="underline">deleteOptions.propagationPolicy</span> 字段,可以控制级联删除策略。可能的取值包括: <span class="underline">orphan</span> 、 <span class="underline">Foreground</span> 或 <span class="underline">Background</span>
</p>
<p>
对很多 <span class="underline">Controller</span> 资源,包括 ReplicationController、ReplicaSet、StatefulSet、DaemonSet 和 Deployment, 默认的 <span class="underline">垃圾收集策略</span> 是 <b>orphan</b> 。因此,除非指定其它的垃圾收集策略,否则所有 Dependent 对象使用的都是 orphan 策略
</p>
<pre class="example" id="orgfe40505">
注意:这里所指的默认值是指 REST API 的默认值,并非 kubectl 命令的默认值,kubectl 默认为级联删除
</pre>
<p>
在后台删除 Dependent 对象的例子:
</p>
<div class="org-src-container">
<pre class="src src-sh">$ kubectl proxy --port=8080
$ curl -X DELETE localhost:8080/apis/extensions/v1beta1/namespaces/default/replicasets/my-repset <span style="color: #deb887;">\</span>
-d <span style="color: #deb887;">'{"kind":"DeleteOptions","apiVersion":"v1","propagationPolicy":"Background"}'</span> <span style="color: #deb887;">\</span>
-H <span style="color: #deb887;">"Content-Type: application/json"</span>
</pre>
</div>
<p>
在前台删除 Dependent 对象的例子:
</p>
<div class="org-src-container">
<pre class="src src-sh">$ kubectl proxy --port=8080
$ curl -X DELETE localhost:8080/apis/extensions/v1beta1/namespaces/default/replicasets/my-repset <span style="color: #deb887;">\</span>
-d <span style="color: #deb887;">'{"kind":"DeleteOptions","apiVersion":"v1","propagationPolicy":"Foreground"}'</span> <span style="color: #deb887;">\</span>
-H <span style="color: #deb887;">"Content-Type: application/json"</span>
</pre>
</div>
<p>
一个孤儿 Dependent 的例子:
</p>
<div class="org-src-container">
<pre class="src src-sh">$ kubectl proxy --port=8080
$ curl -X DELETE localhost:8080/apis/extensions/v1beta1/namespaces/default/replicasets/my-repset <span style="color: #deb887;">\</span>
-d <span style="color: #deb887;">'{"kind":"DeleteOptions","apiVersion":"v1","propagationPolicy":"Orphan"}'</span> <span style="color: #deb887;">\</span>
-H <span style="color: #deb887;">"Content-Type: application/json"</span>
</pre>
</div>
<p>
kubectl 也支持级联删除:
</p>
<ul class="org-ul">
<li>设置 <span class="underline">–cascade</span> 为 true,使 kubectl 自动删除 Dependent 对象</li>
<li>设置 –cascade 为 false,会使 Dependent 对象成为孤儿 Dependent 对象</li>
<li>–cascade 的默认值是 true</li>
</ul>
<p>
使一个 ReplicaSet 的 Dependent 对象成为孤儿 Dependent的例子:
</p>
<div class="org-src-container">
<pre class="src src-sh">kubectl delete replicaset my-repset --cascade=false
</pre>
</div>
<p>
<a href="taint_toleration.html">Previous:Taint 和 Toleration</a>
</p>
<p>
<a href="cluster.html">Home:Cluster</a>
</p>
</div>
</div>
</div>
</div>
<div id="postamble" class="status">
<br/>
<div class='ds-thread'></div>
<script>
var duoshuoQuery = {short_name:'klose911'};
(function() {
var dsThread = document.getElementsByClassName('ds-thread')[0];
dsThread.setAttribute('data-thread-key', document.title);
dsThread.setAttribute('data-title', document.title);
dsThread.setAttribute('data-url', window.location.href);
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js';
ds.charset = 'UTF-8';
(document.getElementsByTagName('head')[0]
|| document.getElementsByTagName('body')[0]).appendChild(ds);
})();
</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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-90850421-1', 'auto');
ga('send', 'pageview');
</script>
</div>
</body>
</html>
|
Dependencies/opengl/docs/javadoc/org/lwjgl/opengl/ARBTextureEnvDot3.html
|
VirtualGamer/SnowEngine
|
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (9-ea) on Sun Oct 30 18:56:29 UTC 2016 -->
<title>ARBTextureEnvDot3 (LWJGL 3.1.0 - OpenGL)</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2016-10-30">
<link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
<script type="text/javascript" src="../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../jquery/jquery-1.10.2.js"></script>
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ARBTextureEnvDot3 (LWJGL 3.1.0 - OpenGL)";
}
}
catch(err) {
}
//-->
var pathtoroot = "../../../";loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../org/lwjgl/opengl/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/lwjgl/opengl/ARBTextureEnvCombine.html" title="class in org.lwjgl.opengl"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../org/lwjgl/opengl/ARBTextureFilterMinmax.html" title="class in org.lwjgl.opengl"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/lwjgl/opengl/ARBTextureEnvDot3.html" target="_top">Frames</a></li>
<li><a href="ARBTextureEnvDot3.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>
<ul class="navListSearch">
<li><span>SEARCH: </span>
<input type="text" id="search" value=" " disabled="disabled">
<input type="reset" id="reset" value=" " disabled="disabled">
</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>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field.summary">Field</a> | </li>
<li>Constr | </li>
<li><a href="#methods.inherited.from.class.java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li>Constr | </li>
<li>Method</li>
</ul>
</div>
<a id="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding"> </div>
</nav>
</header>
<!-- ======== START OF CLASS DATA ======== -->
<main role="main">
<div class="header">
<div class="subTitle"><span class="packageLabelInClass">Package</span> <a href="../../../org/lwjgl/opengl/package-summary.html" target="classFrame">org.lwjgl.opengl</a></div>
<h2 title="Class ARBTextureEnvDot3" class="title">Class ARBTextureEnvDot3</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.lwjgl.opengl.ARBTextureEnvDot3</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public final class <span class="typeNameLabel">ARBTextureEnvDot3</span>
extends java.lang.Object</pre>
<div class="block">Native bindings to the <a href="http://www.opengl.org/registry/specs/ARB/texture_env_dot3.txt">ARB_texture_env_dot3</a> extension.
<p>Adds new dot product operation to the texture combiner operations.</p>
<p>Requires <a href="../../../org/lwjgl/opengl/ARBMultitexture.html" title="class in org.lwjgl.opengl"><code>ARB_multitexture</code></a> and <a href="../../../org/lwjgl/opengl/ARBTextureEnvCombine.html" title="class in org.lwjgl.opengl"><code>ARB_texture_env_combine</code></a>. Promoted to core in <a href="../../../org/lwjgl/opengl/GL13.html" title="class in org.lwjgl.opengl"><code>OpenGL 1.3</code></a>.</p></div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary">
<caption><span>Fields</span><span class="tabEnd"> </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 int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/lwjgl/opengl/ARBTextureEnvDot3.html#GL_DOT3_RGB_ARB">GL_DOT3_RGB_ARB</a>
<br><a href="../../../org/lwjgl/opengl/ARBTextureEnvDot3.html#GL_DOT3_RGBA_ARB">GL_DOT3_RGBA_ARB</a></span></code>
<div class="block">Accepted by the <code>params</code> parameter of TexEnvf, TexEnvi, TexEnvfv, and TexEnviv when the <code>pname</code> parameter value is COMBINE_RGB_ARB.</div>
</td>
</tr>
</table>
</li>
</ul>
</section>
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a id="GL_DOT3_RGB_ARB">
<!-- -->
</a>
<a id="GL_DOT3_RGBA_ARB">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4><a href="../../../constant-values.html#org.lwjgl.opengl.ARBTextureEnvDot3.GL_DOT3_RGB_ARB">GL_DOT3_RGB_ARB</a>, <a href="../../../constant-values.html#org.lwjgl.opengl.ARBTextureEnvDot3.GL_DOT3_RGBA_ARB">GL_DOT3_RGBA_ARB</a></h4>
<div class="block">Accepted by the <code>params</code> parameter of TexEnvf, TexEnvi, TexEnvfv, and TexEnviv when the <code>pname</code> parameter value is COMBINE_RGB_ARB.</div>
</li></ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
</div>
</main>
<!-- ========= END OF CLASS DATA ========= -->
<footer role="contentinfo">
<nav role="navigation">
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a id="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../org/lwjgl/opengl/package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/lwjgl/opengl/ARBTextureEnvCombine.html" title="class in org.lwjgl.opengl"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../org/lwjgl/opengl/ARBTextureFilterMinmax.html" title="class in org.lwjgl.opengl"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/lwjgl/opengl/ARBTextureEnvDot3.html" target="_top">Frames</a></li>
<li><a href="ARBTextureEnvDot3.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>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field.summary">Field</a> | </li>
<li>Constr | </li>
<li><a href="#methods.inherited.from.class.java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li>Constr | </li>
<li>Method</li>
</ul>
</div>
<a id="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</nav>
<p class="legalCopy"><small><i>Copyright LWJGL. All Rights Reserved. <a href="https://www.lwjgl.org/license">License terms</a>.</i></small></p>
</footer>
</body>
</html>
|
docs/classes/Ticket.html
|
Eduworks/CASS
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ticket - CASS Javascript Library</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css">
<link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css">
<link rel="stylesheet" href="../assets/css/main.css" id="site_styles">
<link rel="icon" href="../assets/favicon.ico">
<script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script>
</head>
<body class="yui3-skin-sam">
<div id="doc">
<div id="hd" class="yui3-g header">
<div class="yui3-u-3-4">
<h1><img src="http://docs.cassproject.org/img/customLogo-blue.png" title="CASS Javascript Library"></h1>
</div>
<div class="yui3-u-1-4 version">
<em>API Docs for: 0.5.4</em>
</div>
</div>
<div id="bd" class="yui3-g">
<div class="yui3-u-1-4">
<div id="docs-sidebar" class="sidebar apidocs">
<div id="api-list">
<h2 class="off-left">APIs</h2>
<div id="api-tabview" class="tabview">
<ul class="tabs">
<li><a href="#api-classes">Classes</a></li>
<li><a href="#api-modules">Modules</a></li>
</ul>
<div id="api-tabview-filter">
<input type="search" id="api-filter" placeholder="Type to filter APIs">
</div>
<div id="api-tabview-panel">
<ul id="api-classes" class="apis classes">
<li><a href="../classes/3DModel.html">3DModel</a></li>
<li><a href="../classes/AboutPage.html">AboutPage</a></li>
<li><a href="../classes/AcceptAction.html">AcceptAction</a></li>
<li><a href="../classes/Accommodation.html">Accommodation</a></li>
<li><a href="../classes/AccountingService.html">AccountingService</a></li>
<li><a href="../classes/AccreditAction.html">AccreditAction</a></li>
<li><a href="../classes/AchieveAction.html">AchieveAction</a></li>
<li><a href="../classes/Action.html">Action</a></li>
<li><a href="../classes/ActionAccessSpecification.html">ActionAccessSpecification</a></li>
<li><a href="../classes/ActionStatusType.html">ActionStatusType</a></li>
<li><a href="../classes/ActivateAction.html">ActivateAction</a></li>
<li><a href="../classes/AddAction.html">AddAction</a></li>
<li><a href="../classes/AdministrativeArea.html">AdministrativeArea</a></li>
<li><a href="../classes/AdultEntertainment.html">AdultEntertainment</a></li>
<li><a href="../classes/AdvancedStandingAction.html">AdvancedStandingAction</a></li>
<li><a href="../classes/AdvertiserContentArticle.html">AdvertiserContentArticle</a></li>
<li><a href="../classes/Agent.html">Agent</a></li>
<li><a href="../classes/AggregateDataProfile.html">AggregateDataProfile</a></li>
<li><a href="../classes/AggregateOffer.html">AggregateOffer</a></li>
<li><a href="../classes/AggregateRating.html">AggregateRating</a></li>
<li><a href="../classes/AgreeAction.html">AgreeAction</a></li>
<li><a href="../classes/Airline.html">Airline</a></li>
<li><a href="../classes/Airport.html">Airport</a></li>
<li><a href="../classes/AlignmentMap.html">AlignmentMap</a></li>
<li><a href="../classes/AlignmentObject.html">AlignmentObject</a></li>
<li><a href="../classes/AllocateAction.html">AllocateAction</a></li>
<li><a href="../classes/AmpStory.html">AmpStory</a></li>
<li><a href="../classes/AMRadioChannel.html">AMRadioChannel</a></li>
<li><a href="../classes/AmusementPark.html">AmusementPark</a></li>
<li><a href="../classes/AnalysisNewsArticle.html">AnalysisNewsArticle</a></li>
<li><a href="../classes/AnatomicalStructure.html">AnatomicalStructure</a></li>
<li><a href="../classes/AnatomicalSystem.html">AnatomicalSystem</a></li>
<li><a href="../classes/AnimalShelter.html">AnimalShelter</a></li>
<li><a href="../classes/Answer.html">Answer</a></li>
<li><a href="../classes/Apartment.html">Apartment</a></li>
<li><a href="../classes/ApartmentComplex.html">ApartmentComplex</a></li>
<li><a href="../classes/APIReference.html">APIReference</a></li>
<li><a href="../classes/AppendAction.html">AppendAction</a></li>
<li><a href="../classes/ApplyAction.html">ApplyAction</a></li>
<li><a href="../classes/ApprenticeshipCertificate.html">ApprenticeshipCertificate</a></li>
<li><a href="../classes/ApproveAction.html">ApproveAction</a></li>
<li><a href="../classes/ApprovedIndication.html">ApprovedIndication</a></li>
<li><a href="../classes/Aquarium.html">Aquarium</a></li>
<li><a href="../classes/ArchiveComponent.html">ArchiveComponent</a></li>
<li><a href="../classes/ArchiveOrganization.html">ArchiveOrganization</a></li>
<li><a href="../classes/ArriveAction.html">ArriveAction</a></li>
<li><a href="../classes/Artery.html">Artery</a></li>
<li><a href="../classes/ArtGallery.html">ArtGallery</a></li>
<li><a href="../classes/Article.html">Article</a></li>
<li><a href="../classes/AskAction.html">AskAction</a></li>
<li><a href="../classes/AskPublicNewsArticle.html">AskPublicNewsArticle</a></li>
<li><a href="../classes/ASNImport.html">ASNImport</a></li>
<li><a href="../classes/Assertion.html">Assertion</a></li>
<li><a href="../classes/AssertionEnvelope.html">AssertionEnvelope</a></li>
<li><a href="../classes/AssessAction.html">AssessAction</a></li>
<li><a href="../classes/Assessment.html">Assessment</a></li>
<li><a href="../classes/AssessmentComponent.html">AssessmentComponent</a></li>
<li><a href="../classes/AssessmentProfile.html">AssessmentProfile</a></li>
<li><a href="../classes/AssignAction.html">AssignAction</a></li>
<li><a href="../classes/AssociateDegree.html">AssociateDegree</a></li>
<li><a href="../classes/Atlas.html">Atlas</a></li>
<li><a href="../classes/Attitude.html">Attitude</a></li>
<li><a href="../classes/Attorney.html">Attorney</a></li>
<li><a href="../classes/Audience.html">Audience</a></li>
<li><a href="../classes/Audiobook.html">Audiobook</a></li>
<li><a href="../classes/AudioObject.html">AudioObject</a></li>
<li><a href="../classes/AuthorizeAction.html">AuthorizeAction</a></li>
<li><a href="../classes/AutoBodyShop.html">AutoBodyShop</a></li>
<li><a href="../classes/AutoDealer.html">AutoDealer</a></li>
<li><a href="../classes/AutomatedTeller.html">AutomatedTeller</a></li>
<li><a href="../classes/AutomotiveBusiness.html">AutomotiveBusiness</a></li>
<li><a href="../classes/AutoPartsStore.html">AutoPartsStore</a></li>
<li><a href="../classes/AutoRental.html">AutoRental</a></li>
<li><a href="../classes/AutoRepair.html">AutoRepair</a></li>
<li><a href="../classes/AutoWash.html">AutoWash</a></li>
<li><a href="../classes/BachelorDegree.html">BachelorDegree</a></li>
<li><a href="../classes/BackgroundNewsArticle.html">BackgroundNewsArticle</a></li>
<li><a href="../classes/Badge.html">Badge</a></li>
<li><a href="../classes/Bakery.html">Bakery</a></li>
<li><a href="../classes/BankAccount.html">BankAccount</a></li>
<li><a href="../classes/BankOrCreditUnion.html">BankOrCreditUnion</a></li>
<li><a href="../classes/Barcode.html">Barcode</a></li>
<li><a href="../classes/BarOrPub.html">BarOrPub</a></li>
<li><a href="../classes/BasicComponent.html">BasicComponent</a></li>
<li><a href="../classes/Beach.html">Beach</a></li>
<li><a href="../classes/BeautySalon.html">BeautySalon</a></li>
<li><a href="../classes/BedAndBreakfast.html">BedAndBreakfast</a></li>
<li><a href="../classes/BedDetails.html">BedDetails</a></li>
<li><a href="../classes/BedType.html">BedType</a></li>
<li><a href="../classes/BefriendAction.html">BefriendAction</a></li>
<li><a href="../classes/Belief.html">Belief</a></li>
<li><a href="../classes/BikeStore.html">BikeStore</a></li>
<li><a href="../classes/Blog.html">Blog</a></li>
<li><a href="../classes/BlogPosting.html">BlogPosting</a></li>
<li><a href="../classes/BloodTest.html">BloodTest</a></li>
<li><a href="../classes/BoardingPolicyType.html">BoardingPolicyType</a></li>
<li><a href="../classes/BoatReservation.html">BoatReservation</a></li>
<li><a href="../classes/BoatTerminal.html">BoatTerminal</a></li>
<li><a href="../classes/BoatTrip.html">BoatTrip</a></li>
<li><a href="../classes/BodyMeasurementTypeEnumeration.html">BodyMeasurementTypeEnumeration</a></li>
<li><a href="../classes/BodyOfWater.html">BodyOfWater</a></li>
<li><a href="../classes/Bone.html">Bone</a></li>
<li><a href="../classes/Book.html">Book</a></li>
<li><a href="../classes/BookFormatType.html">BookFormatType</a></li>
<li><a href="../classes/BookmarkAction.html">BookmarkAction</a></li>
<li><a href="../classes/BookSeries.html">BookSeries</a></li>
<li><a href="../classes/BookStore.html">BookStore</a></li>
<li><a href="../classes/BorrowAction.html">BorrowAction</a></li>
<li><a href="../classes/BowlingAlley.html">BowlingAlley</a></li>
<li><a href="../classes/BrainStructure.html">BrainStructure</a></li>
<li><a href="../classes/Brand.html">Brand</a></li>
<li><a href="../classes/BreadcrumbList.html">BreadcrumbList</a></li>
<li><a href="../classes/Brewery.html">Brewery</a></li>
<li><a href="../classes/Bridge.html">Bridge</a></li>
<li><a href="../classes/BroadcastChannel.html">BroadcastChannel</a></li>
<li><a href="../classes/BroadcastEvent.html">BroadcastEvent</a></li>
<li><a href="../classes/BroadcastFrequencySpecification.html">BroadcastFrequencySpecification</a></li>
<li><a href="../classes/BroadcastService.html">BroadcastService</a></li>
<li><a href="../classes/BrokerageAccount.html">BrokerageAccount</a></li>
<li><a href="../classes/BuddhistTemple.html">BuddhistTemple</a></li>
<li><a href="../classes/BusinessAudience.html">BusinessAudience</a></li>
<li><a href="../classes/BusinessEntityType.html">BusinessEntityType</a></li>
<li><a href="../classes/BusinessEvent.html">BusinessEvent</a></li>
<li><a href="../classes/BusinessFunction.html">BusinessFunction</a></li>
<li><a href="../classes/BusOrCoach.html">BusOrCoach</a></li>
<li><a href="../classes/BusReservation.html">BusReservation</a></li>
<li><a href="../classes/BusStation.html">BusStation</a></li>
<li><a href="../classes/BusStop.html">BusStop</a></li>
<li><a href="../classes/BusTrip.html">BusTrip</a></li>
<li><a href="../classes/BuyAction.html">BuyAction</a></li>
<li><a href="../classes/CableOrSatelliteService.html">CableOrSatelliteService</a></li>
<li><a href="../classes/CafeOrCoffeeShop.html">CafeOrCoffeeShop</a></li>
<li><a href="../classes/Campground.html">Campground</a></li>
<li><a href="../classes/CampingPitch.html">CampingPitch</a></li>
<li><a href="../classes/Canal.html">Canal</a></li>
<li><a href="../classes/CancelAction.html">CancelAction</a></li>
<li><a href="../classes/Car.html">Car</a></li>
<li><a href="../classes/CarUsageType.html">CarUsageType</a></li>
<li><a href="../classes/Casino.html">Casino</a></li>
<li><a href="../classes/Cass.html">Cass</a></li>
<li><a href="../classes/CategoryCode.html">CategoryCode</a></li>
<li><a href="../classes/CategoryCodeSet.html">CategoryCodeSet</a></li>
<li><a href="../classes/CatholicChurch.html">CatholicChurch</a></li>
<li><a href="../classes/CDCPMDRecord.html">CDCPMDRecord</a></li>
<li><a href="../classes/Cemetery.html">Cemetery</a></li>
<li><a href="../classes/Certificate.html">Certificate</a></li>
<li><a href="../classes/CertificateOfCompletion.html">CertificateOfCompletion</a></li>
<li><a href="../classes/Certification.html">Certification</a></li>
<li><a href="../classes/CfdAssessment.html">CfdAssessment</a></li>
<li><a href="../classes/CfdReference.html">CfdReference</a></li>
<li><a href="../classes/Chapter.html">Chapter</a></li>
<li><a href="../classes/CheckAction.html">CheckAction</a></li>
<li><a href="../classes/CheckInAction.html">CheckInAction</a></li>
<li><a href="../classes/CheckOutAction.html">CheckOutAction</a></li>
<li><a href="../classes/CheckoutPage.html">CheckoutPage</a></li>
<li><a href="../classes/ChildCare.html">ChildCare</a></li>
<li><a href="../classes/ChildrensEvent.html">ChildrensEvent</a></li>
<li><a href="../classes/ChooseAction.html">ChooseAction</a></li>
<li><a href="../classes/Church.html">Church</a></li>
<li><a href="../classes/City.html">City</a></li>
<li><a href="../classes/CityHall.html">CityHall</a></li>
<li><a href="../classes/CivicStructure.html">CivicStructure</a></li>
<li><a href="../classes/Claim.html">Claim</a></li>
<li><a href="../classes/ClaimReview.html">ClaimReview</a></li>
<li><a href="../classes/Class.html">Class</a></li>
<li><a href="../classes/Clip.html">Clip</a></li>
<li><a href="../classes/ClothingStore.html">ClothingStore</a></li>
<li><a href="../classes/CocurricularComponent.html">CocurricularComponent</a></li>
<li><a href="../classes/Code.html">Code</a></li>
<li><a href="../classes/Collection.html">Collection</a></li>
<li><a href="../classes/CollectionPage.html">CollectionPage</a></li>
<li><a href="../classes/CollegeOrUniversity.html">CollegeOrUniversity</a></li>
<li><a href="../classes/ComedyClub.html">ComedyClub</a></li>
<li><a href="../classes/ComedyEvent.html">ComedyEvent</a></li>
<li><a href="../classes/ComicCoverArt.html">ComicCoverArt</a></li>
<li><a href="../classes/ComicIssue.html">ComicIssue</a></li>
<li><a href="../classes/ComicSeries.html">ComicSeries</a></li>
<li><a href="../classes/ComicStory.html">ComicStory</a></li>
<li><a href="../classes/Comment.html">Comment</a></li>
<li><a href="../classes/CommentAction.html">CommentAction</a></li>
<li><a href="../classes/CommunicateAction.html">CommunicateAction</a></li>
<li><a href="../classes/Competency.html">Competency</a></li>
<li><a href="../classes/CompetencyComponent.html">CompetencyComponent</a></li>
<li><a href="../classes/CompetencyFramework.html">CompetencyFramework</a></li>
<li><a href="../classes/CompleteDataFeed.html">CompleteDataFeed</a></li>
<li><a href="../classes/ComponentCondition.html">ComponentCondition</a></li>
<li><a href="../classes/CompoundPriceSpecification.html">CompoundPriceSpecification</a></li>
<li><a href="../classes/ComputerLanguage.html">ComputerLanguage</a></li>
<li><a href="../classes/ComputerStore.html">ComputerStore</a></li>
<li><a href="../classes/Concept.html">Concept</a></li>
<li><a href="../classes/ConceptScheme.html">ConceptScheme</a></li>
<li><a href="../classes/ConditionManifest.html">ConditionManifest</a></li>
<li><a href="../classes/ConditionProfile.html">ConditionProfile</a></li>
<li><a href="../classes/ConfirmAction.html">ConfirmAction</a></li>
<li><a href="../classes/Consortium.html">Consortium</a></li>
<li><a href="../classes/ConsumeAction.html">ConsumeAction</a></li>
<li><a href="../classes/ContactPage.html">ContactPage</a></li>
<li><a href="../classes/ContactPoint.html">ContactPoint</a></li>
<li><a href="../classes/ContactPointOption.html">ContactPointOption</a></li>
<li><a href="../classes/Continent.html">Continent</a></li>
<li><a href="../classes/ControlAction.html">ControlAction</a></li>
<li><a href="../classes/ConvenienceStore.html">ConvenienceStore</a></li>
<li><a href="../classes/Conversation.html">Conversation</a></li>
<li><a href="../classes/CookAction.html">CookAction</a></li>
<li><a href="../classes/Corporation.html">Corporation</a></li>
<li><a href="../classes/CorrectionComment.html">CorrectionComment</a></li>
<li><a href="../classes/CostManifest.html">CostManifest</a></li>
<li><a href="../classes/CostProfile.html">CostProfile</a></li>
<li><a href="../classes/Country.html">Country</a></li>
<li><a href="../classes/Course.html">Course</a></li>
<li><a href="../classes/CourseComponent.html">CourseComponent</a></li>
<li><a href="../classes/CourseInstance.html">CourseInstance</a></li>
<li><a href="../classes/Courthouse.html">Courthouse</a></li>
<li><a href="../classes/CoverArt.html">CoverArt</a></li>
<li><a href="../classes/CovidTestingFacility.html">CovidTestingFacility</a></li>
<li><a href="../classes/CreateAction.html">CreateAction</a></li>
<li><a href="../classes/CreativeWork.html">CreativeWork</a></li>
<li><a href="../classes/CreativeWorkSeason.html">CreativeWorkSeason</a></li>
<li><a href="../classes/CreativeWorkSeries.html">CreativeWorkSeries</a></li>
<li><a href="../classes/Credential.html">Credential</a></li>
<li><a href="../classes/CredentialAlignmentObject.html">CredentialAlignmentObject</a></li>
<li><a href="../classes/CredentialAssertion.html">CredentialAssertion</a></li>
<li><a href="../classes/CredentialComponent.html">CredentialComponent</a></li>
<li><a href="../classes/CredentialFramework.html">CredentialFramework</a></li>
<li><a href="../classes/CredentialingAction.html">CredentialingAction</a></li>
<li><a href="../classes/CredentialOrganization.html">CredentialOrganization</a></li>
<li><a href="../classes/CredentialPerson.html">CredentialPerson</a></li>
<li><a href="../classes/CreditCard.html">CreditCard</a></li>
<li><a href="../classes/Crematorium.html">Crematorium</a></li>
<li><a href="../classes/CriticReview.html">CriticReview</a></li>
<li><a href="../classes/CssSelectorType.html">CssSelectorType</a></li>
<li><a href="../classes/CSVExport.html">CSVExport</a></li>
<li><a href="../classes/CSVImport.html">CSVImport</a></li>
<li><a href="../classes/CurrencyConversionService.html">CurrencyConversionService</a></li>
<li><a href="../classes/DanceEvent.html">DanceEvent</a></li>
<li><a href="../classes/DanceGroup.html">DanceGroup</a></li>
<li><a href="../classes/DataCatalog.html">DataCatalog</a></li>
<li><a href="../classes/DataDownload.html">DataDownload</a></li>
<li><a href="../classes/DataFeed.html">DataFeed</a></li>
<li><a href="../classes/DataFeedItem.html">DataFeedItem</a></li>
<li><a href="../classes/Dataset.html">Dataset</a></li>
<li><a href="../classes/DatedMoneySpecification.html">DatedMoneySpecification</a></li>
<li><a href="../classes/DayOfWeek.html">DayOfWeek</a></li>
<li><a href="../classes/DaySpa.html">DaySpa</a></li>
<li><a href="../classes/DDxElement.html">DDxElement</a></li>
<li><a href="../classes/DeactivateAction.html">DeactivateAction</a></li>
<li><a href="../classes/DefenceEstablishment.html">DefenceEstablishment</a></li>
<li><a href="../classes/DefinedRegion.html">DefinedRegion</a></li>
<li><a href="../classes/DefinedTerm.html">DefinedTerm</a></li>
<li><a href="../classes/DefinedTermSet.html">DefinedTermSet</a></li>
<li><a href="../classes/Degree.html">Degree</a></li>
<li><a href="../classes/DeleteAction.html">DeleteAction</a></li>
<li><a href="../classes/DeliveryChargeSpecification.html">DeliveryChargeSpecification</a></li>
<li><a href="../classes/DeliveryEvent.html">DeliveryEvent</a></li>
<li><a href="../classes/DeliveryMethod.html">DeliveryMethod</a></li>
<li><a href="../classes/DeliveryTimeSettings.html">DeliveryTimeSettings</a></li>
<li><a href="../classes/Demand.html">Demand</a></li>
<li><a href="../classes/Dentist.html">Dentist</a></li>
<li><a href="../classes/DepartAction.html">DepartAction</a></li>
<li><a href="../classes/DepartmentStore.html">DepartmentStore</a></li>
<li><a href="../classes/DepositAccount.html">DepositAccount</a></li>
<li><a href="../classes/DiagnosticLab.html">DiagnosticLab</a></li>
<li><a href="../classes/DiagnosticProcedure.html">DiagnosticProcedure</a></li>
<li><a href="../classes/Diet.html">Diet</a></li>
<li><a href="../classes/DietarySupplement.html">DietarySupplement</a></li>
<li><a href="../classes/DigitalBadge.html">DigitalBadge</a></li>
<li><a href="../classes/DigitalDocument.html">DigitalDocument</a></li>
<li><a href="../classes/DigitalDocumentPermission.html">DigitalDocumentPermission</a></li>
<li><a href="../classes/DigitalDocumentPermissionType.html">DigitalDocumentPermissionType</a></li>
<li><a href="../classes/Diploma.html">Diploma</a></li>
<li><a href="../classes/Directory.html">Directory</a></li>
<li><a href="../classes/DisagreeAction.html">DisagreeAction</a></li>
<li><a href="../classes/DiscoverAction.html">DiscoverAction</a></li>
<li><a href="../classes/DiscussionForumPosting.html">DiscussionForumPosting</a></li>
<li><a href="../classes/DislikeAction.html">DislikeAction</a></li>
<li><a href="../classes/Distance.html">Distance</a></li>
<li><a href="../classes/Distillery.html">Distillery</a></li>
<li><a href="../classes/DoctoralDegree.html">DoctoralDegree</a></li>
<li><a href="../classes/DonateAction.html">DonateAction</a></li>
<li><a href="../classes/DoseSchedule.html">DoseSchedule</a></li>
<li><a href="../classes/DownloadAction.html">DownloadAction</a></li>
<li><a href="../classes/DrawAction.html">DrawAction</a></li>
<li><a href="../classes/Drawing.html">Drawing</a></li>
<li><a href="../classes/DrinkAction.html">DrinkAction</a></li>
<li><a href="../classes/DriveWheelConfigurationValue.html">DriveWheelConfigurationValue</a></li>
<li><a href="../classes/Drug.html">Drug</a></li>
<li><a href="../classes/DrugClass.html">DrugClass</a></li>
<li><a href="../classes/DrugCost.html">DrugCost</a></li>
<li><a href="../classes/DrugCostCategory.html">DrugCostCategory</a></li>
<li><a href="../classes/DrugLegalStatus.html">DrugLegalStatus</a></li>
<li><a href="../classes/DrugPregnancyCategory.html">DrugPregnancyCategory</a></li>
<li><a href="../classes/DrugPrescriptionStatus.html">DrugPrescriptionStatus</a></li>
<li><a href="../classes/DrugStrength.html">DrugStrength</a></li>
<li><a href="../classes/DryCleaningOrLaundry.html">DryCleaningOrLaundry</a></li>
<li><a href="../classes/Duration.html">Duration</a></li>
<li><a href="../classes/DurationProfile.html">DurationProfile</a></li>
<li><a href="../classes/EarningsProfile.html">EarningsProfile</a></li>
<li><a href="../classes/EatAction.html">EatAction</a></li>
<li><a href="../classes/Ebac.html">Ebac</a></li>
<li><a href="../classes/EbacContact.html">EbacContact</a></li>
<li><a href="../classes/EbacContactGrant.html">EbacContactGrant</a></li>
<li><a href="../classes/EbacCredential.html">EbacCredential</a></li>
<li><a href="../classes/EbacCredentialCommit.html">EbacCredentialCommit</a></li>
<li><a href="../classes/EbacCredentialRequest.html">EbacCredentialRequest</a></li>
<li><a href="../classes/EbacCredentials.html">EbacCredentials</a></li>
<li><a href="../classes/EbacEncryptedSecret.html">EbacEncryptedSecret</a></li>
<li><a href="../classes/EbacEncryptedValue.html">EbacEncryptedValue</a></li>
<li><a href="../classes/EbacSignature.html">EbacSignature</a></li>
<li><a href="../classes/EcAes.html">EcAes</a></li>
<li><a href="../classes/EcAesCtr.html">EcAesCtr</a></li>
<li><a href="../classes/EcAesCtrAsync.html">EcAesCtrAsync</a></li>
<li><a href="../classes/EcAesCtrAsyncWorker.html">EcAesCtrAsyncWorker</a></li>
<li><a href="../classes/EcAlignment.html">EcAlignment</a></li>
<li><a href="../classes/EcArray.html">EcArray</a></li>
<li><a href="../classes/EcAsyncHelper.html">EcAsyncHelper</a></li>
<li><a href="../classes/EcCompetency.html">EcCompetency</a></li>
<li><a href="../classes/EcContact.html">EcContact</a></li>
<li><a href="../classes/EcCrypto.html">EcCrypto</a></li>
<li><a href="../classes/EcDirectedGraph.html">EcDirectedGraph</a></li>
<li><a href="../classes/EcDirectory.html">EcDirectory</a></li>
<li><a href="../classes/EcEncryptedValue.html">EcEncryptedValue</a></li>
<li><a href="../classes/EcFile.html">EcFile</a></li>
<li><a href="../classes/EcFramework.html">EcFramework</a></li>
<li><a href="../classes/EcFrameworkGraph.html">EcFrameworkGraph</a></li>
<li><a href="../classes/EcIdentity.html">EcIdentity</a></li>
<li><a href="../classes/EcIdentityManager.html">EcIdentityManager</a></li>
<li><a href="../classes/EcLevel.html">EcLevel</a></li>
<li><a href="../classes/EcLinkedData
/ module.exports = class EcLinkedData {
constructor(context, type) {
this.setContextAndType(context, type);
}
static atProperties = ["id", "type", "schema", "context", "graph"];
/**
JSON-LD @type field..html">EcLinkedData
/ module.exports = class EcLinkedData {
constructor(context, type) {
this.setContextAndType(context, type);
}
static atProperties = ["id", "type", "schema", "context", "graph"];
/**
JSON-LD @type field.</a></li>
<li><a href="../classes/EcObject.html">EcObject</a></li>
<li><a href="../classes/EcPk.html">EcPk</a></li>
<li><a href="../classes/EcPpk.html">EcPpk</a></li>
<li><a href="../classes/EcRemote.html">EcRemote</a></li>
<li><a href="../classes/EcRemoteIdentityManager.html">EcRemoteIdentityManager</a></li>
<li><a href="../classes/EcRemoteLinkedData.html">EcRemoteLinkedData</a></li>
<li><a href="../classes/EcRepository.html">EcRepository</a></li>
<li><a href="../classes/EcRollupRule.html">EcRollupRule</a></li>
<li><a href="../classes/EcRsaOaep.html">EcRsaOaep</a></li>
<li><a href="../classes/EcRsaOaepAsync.html">EcRsaOaepAsync</a></li>
<li><a href="../classes/EducationalAudience.html">EducationalAudience</a></li>
<li><a href="../classes/EducationalOccupationalCredential.html">EducationalOccupationalCredential</a></li>
<li><a href="../classes/EducationalOccupationalProgram.html">EducationalOccupationalProgram</a></li>
<li><a href="../classes/EducationalOrganization.html">EducationalOrganization</a></li>
<li><a href="../classes/EducationEvent.html">EducationEvent</a></li>
<li><a href="../classes/Electrician.html">Electrician</a></li>
<li><a href="../classes/ElectronicsStore.html">ElectronicsStore</a></li>
<li><a href="../classes/ElementarySchool.html">ElementarySchool</a></li>
<li><a href="../classes/EmailMessage.html">EmailMessage</a></li>
<li><a href="../classes/Embassy.html">Embassy</a></li>
<li><a href="../classes/EmergencyService.html">EmergencyService</a></li>
<li><a href="../classes/EmployeeRole.html">EmployeeRole</a></li>
<li><a href="../classes/EmployerAggregateRating.html">EmployerAggregateRating</a></li>
<li><a href="../classes/EmployerReview.html">EmployerReview</a></li>
<li><a href="../classes/EmploymentAgency.html">EmploymentAgency</a></li>
<li><a href="../classes/EmploymentOutcomeProfile.html">EmploymentOutcomeProfile</a></li>
<li><a href="../classes/EndorseAction.html">EndorseAction</a></li>
<li><a href="../classes/EndorsementRating.html">EndorsementRating</a></li>
<li><a href="../classes/Energy.html">Energy</a></li>
<li><a href="../classes/EnergyConsumptionDetails.html">EnergyConsumptionDetails</a></li>
<li><a href="../classes/EnergyEfficiencyEnumeration.html">EnergyEfficiencyEnumeration</a></li>
<li><a href="../classes/EnergyStarEnergyEfficiencyEnumeration.html">EnergyStarEnergyEfficiencyEnumeration</a></li>
<li><a href="../classes/EngineSpecification.html">EngineSpecification</a></li>
<li><a href="../classes/EntertainmentBusiness.html">EntertainmentBusiness</a></li>
<li><a href="../classes/EntryPoint.html">EntryPoint</a></li>
<li><a href="../classes/Enumeration.html">Enumeration</a></li>
<li><a href="../classes/Episode.html">Episode</a></li>
<li><a href="../classes/EUEnergyEfficiencyEnumeration.html">EUEnergyEfficiencyEnumeration</a></li>
<li><a href="../classes/Event.html">Event</a></li>
<li><a href="../classes/EventAttendanceModeEnumeration.html">EventAttendanceModeEnumeration</a></li>
<li><a href="../classes/EventReservation.html">EventReservation</a></li>
<li><a href="../classes/EventSeries.html">EventSeries</a></li>
<li><a href="../classes/EventStatusType.html">EventStatusType</a></li>
<li><a href="../classes/EventVenue.html">EventVenue</a></li>
<li><a href="../classes/ExchangeRateSpecification.html">ExchangeRateSpecification</a></li>
<li><a href="../classes/ExerciseAction.html">ExerciseAction</a></li>
<li><a href="../classes/ExerciseGym.html">ExerciseGym</a></li>
<li><a href="../classes/ExercisePlan.html">ExercisePlan</a></li>
<li><a href="../classes/ExhibitionEvent.html">ExhibitionEvent</a></li>
<li><a href="../classes/Exporter.html">Exporter</a></li>
<li><a href="../classes/ExtracurricularComponent.html">ExtracurricularComponent</a></li>
<li><a href="../classes/FAQPage.html">FAQPage</a></li>
<li><a href="../classes/FastFoodRestaurant.html">FastFoodRestaurant</a></li>
<li><a href="../classes/Festival.html">Festival</a></li>
<li><a href="../classes/FilmAction.html">FilmAction</a></li>
<li><a href="../classes/FinancialAssistanceProfile.html">FinancialAssistanceProfile</a></li>
<li><a href="../classes/FinancialProduct.html">FinancialProduct</a></li>
<li><a href="../classes/FinancialService.html">FinancialService</a></li>
<li><a href="../classes/FindAction.html">FindAction</a></li>
<li><a href="../classes/FireStation.html">FireStation</a></li>
<li><a href="../classes/Flight.html">Flight</a></li>
<li><a href="../classes/FlightReservation.html">FlightReservation</a></li>
<li><a href="../classes/FloorPlan.html">FloorPlan</a></li>
<li><a href="../classes/Florist.html">Florist</a></li>
<li><a href="../classes/FMRadioChannel.html">FMRadioChannel</a></li>
<li><a href="../classes/FollowAction.html">FollowAction</a></li>
<li><a href="../classes/FoodEstablishment.html">FoodEstablishment</a></li>
<li><a href="../classes/FoodEstablishmentReservation.html">FoodEstablishmentReservation</a></li>
<li><a href="../classes/FoodEvent.html">FoodEvent</a></li>
<li><a href="../classes/FoodService.html">FoodService</a></li>
<li><a href="../classes/Framework.html">Framework</a></li>
<li><a href="../classes/FrameworkImport.html">FrameworkImport</a></li>
<li><a href="../classes/FundingAgency.html">FundingAgency</a></li>
<li><a href="../classes/FundingScheme.html">FundingScheme</a></li>
<li><a href="../classes/FurnitureStore.html">FurnitureStore</a></li>
<li><a href="../classes/Game.html">Game</a></li>
<li><a href="../classes/GamePlayMode.html">GamePlayMode</a></li>
<li><a href="../classes/GameServer.html">GameServer</a></li>
<li><a href="../classes/GameServerStatus.html">GameServerStatus</a></li>
<li><a href="../classes/GardenStore.html">GardenStore</a></li>
<li><a href="../classes/GasStation.html">GasStation</a></li>
<li><a href="../classes/GatedResidenceCommunity.html">GatedResidenceCommunity</a></li>
<li><a href="../classes/GenderType.html">GenderType</a></li>
<li><a href="../classes/General.html">General</a></li>
<li><a href="../classes/GeneralContractor.html">GeneralContractor</a></li>
<li><a href="../classes/GeneralEducationDevelopment.html">GeneralEducationDevelopment</a></li>
<li><a href="../classes/GeneralFile.html">GeneralFile</a></li>
<li><a href="../classes/GeoCircle.html">GeoCircle</a></li>
<li><a href="../classes/GeoCoordinates.html">GeoCoordinates</a></li>
<li><a href="../classes/GeoShape.html">GeoShape</a></li>
<li><a href="../classes/GeospatialGeometry.html">GeospatialGeometry</a></li>
<li><a href="../classes/GiveAction.html">GiveAction</a></li>
<li><a href="../classes/GolfCourse.html">GolfCourse</a></li>
<li><a href="../classes/GovernmentBenefitsType.html">GovernmentBenefitsType</a></li>
<li><a href="../classes/GovernmentBuilding.html">GovernmentBuilding</a></li>
<li><a href="../classes/GovernmentOffice.html">GovernmentOffice</a></li>
<li><a href="../classes/GovernmentOrganization.html">GovernmentOrganization</a></li>
<li><a href="../classes/GovernmentPermit.html">GovernmentPermit</a></li>
<li><a href="../classes/GovernmentService.html">GovernmentService</a></li>
<li><a href="../classes/Grant.html">Grant</a></li>
<li><a href="../classes/Graph.html">Graph</a></li>
<li><a href="../classes/GroceryStore.html">GroceryStore</a></li>
<li><a href="../classes/Guide.html">Guide</a></li>
<li><a href="../classes/Hackathon.html">Hackathon</a></li>
<li><a href="../classes/HairSalon.html">HairSalon</a></li>
<li><a href="../classes/HardwareStore.html">HardwareStore</a></li>
<li><a href="../classes/HealthAndBeautyBusiness.html">HealthAndBeautyBusiness</a></li>
<li><a href="../classes/HealthAspectEnumeration.html">HealthAspectEnumeration</a></li>
<li><a href="../classes/HealthClub.html">HealthClub</a></li>
<li><a href="../classes/HealthInsurancePlan.html">HealthInsurancePlan</a></li>
<li><a href="../classes/HealthPlanCostSharingSpecification.html">HealthPlanCostSharingSpecification</a></li>
<li><a href="../classes/HealthPlanFormulary.html">HealthPlanFormulary</a></li>
<li><a href="../classes/HealthPlanNetwork.html">HealthPlanNetwork</a></li>
<li><a href="../classes/HealthTopicContent.html">HealthTopicContent</a></li>
<li><a href="../classes/HighSchool.html">HighSchool</a></li>
<li><a href="../classes/HinduTemple.html">HinduTemple</a></li>
<li><a href="../classes/HobbyShop.html">HobbyShop</a></li>
<li><a href="../classes/HoldersProfile.html">HoldersProfile</a></li>
<li><a href="../classes/HomeAndConstructionBusiness.html">HomeAndConstructionBusiness</a></li>
<li><a href="../classes/HomeGoodsStore.html">HomeGoodsStore</a></li>
<li><a href="../classes/Hospital.html">Hospital</a></li>
<li><a href="../classes/Hostel.html">Hostel</a></li>
<li><a href="../classes/Hotel.html">Hotel</a></li>
<li><a href="../classes/HotelRoom.html">HotelRoom</a></li>
<li><a href="../classes/House.html">House</a></li>
<li><a href="../classes/HousePainter.html">HousePainter</a></li>
<li><a href="../classes/HowTo.html">HowTo</a></li>
<li><a href="../classes/HowToDirection.html">HowToDirection</a></li>
<li><a href="../classes/HowToItem.html">HowToItem</a></li>
<li><a href="../classes/HowToSection.html">HowToSection</a></li>
<li><a href="../classes/HowToStep.html">HowToStep</a></li>
<li><a href="../classes/HowToSupply.html">HowToSupply</a></li>
<li><a href="../classes/HowToTip.html">HowToTip</a></li>
<li><a href="../classes/HowToTool.html">HowToTool</a></li>
<li><a href="../classes/HVACBusiness.html">HVACBusiness</a></li>
<li><a href="../classes/Hypergraph.html">Hypergraph</a></li>
<li><a href="../classes/HyperToc.html">HyperToc</a></li>
<li><a href="../classes/HyperTocEntry.html">HyperTocEntry</a></li>
<li><a href="../classes/IceCreamShop.html">IceCreamShop</a></li>
<li><a href="../classes/IdentifierValue.html">IdentifierValue</a></li>
<li><a href="../classes/IgnoreAction.html">IgnoreAction</a></li>
<li><a href="../classes/ImageGallery.html">ImageGallery</a></li>
<li><a href="../classes/ImageObject.html">ImageObject</a></li>
<li><a href="../classes/ImagingTest.html">ImagingTest</a></li>
<li><a href="../classes/Importer.html">Importer</a></li>
<li><a href="../classes/IndividualProduct.html">IndividualProduct</a></li>
<li><a href="../classes/IndustryClassification.html">IndustryClassification</a></li>
<li><a href="../classes/InfectiousAgentClass.html">InfectiousAgentClass</a></li>
<li><a href="../classes/InfectiousDisease.html">InfectiousDisease</a></li>
<li><a href="../classes/InformAction.html">InformAction</a></li>
<li><a href="../classes/InsertAction.html">InsertAction</a></li>
<li><a href="../classes/InstallAction.html">InstallAction</a></li>
<li><a href="../classes/InstructionalProgramClassification.html">InstructionalProgramClassification</a></li>
<li><a href="../classes/InsuranceAgency.html">InsuranceAgency</a></li>
<li><a href="../classes/Intangible.html">Intangible</a></li>
<li><a href="../classes/InteractAction.html">InteractAction</a></li>
<li><a href="../classes/InteractionCounter.html">InteractionCounter</a></li>
<li><a href="../classes/InternetCafe.html">InternetCafe</a></li>
<li><a href="../classes/InvestmentFund.html">InvestmentFund</a></li>
<li><a href="../classes/InvestmentOrDeposit.html">InvestmentOrDeposit</a></li>
<li><a href="../classes/InviteAction.html">InviteAction</a></li>
<li><a href="../classes/Invoice.html">Invoice</a></li>
<li><a href="../classes/ItemAvailability.html">ItemAvailability</a></li>
<li><a href="../classes/ItemList.html">ItemList</a></li>
<li><a href="../classes/ItemListOrderType.html">ItemListOrderType</a></li>
<li><a href="../classes/ItemPage.html">ItemPage</a></li>
<li><a href="../classes/JewelryStore.html">JewelryStore</a></li>
<li><a href="../classes/Job.html">Job</a></li>
<li><a href="../classes/JobComponent.html">JobComponent</a></li>
<li><a href="../classes/JobPosting.html">JobPosting</a></li>
<li><a href="../classes/JoinAction.html">JoinAction</a></li>
<li><a href="../classes/Joint.html">Joint</a></li>
<li><a href="../classes/JourneymanCertificate.html">JourneymanCertificate</a></li>
<li><a href="../classes/JurisdictionProfile.html">JurisdictionProfile</a></li>
<li><a href="../classes/Knowledge.html">Knowledge</a></li>
<li><a href="../classes/LakeBodyOfWater.html">LakeBodyOfWater</a></li>
<li><a href="../classes/Landform.html">Landform</a></li>
<li><a href="../classes/LandmarksOrHistoricalBuildings.html">LandmarksOrHistoricalBuildings</a></li>
<li><a href="../classes/Language.html">Language</a></li>
<li><a href="../classes/LearningOpportunity.html">LearningOpportunity</a></li>
<li><a href="../classes/LearningOpportunityProfile.html">LearningOpportunityProfile</a></li>
<li><a href="../classes/LearningResource.html">LearningResource</a></li>
<li><a href="../classes/LeaveAction.html">LeaveAction</a></li>
<li><a href="../classes/LegalForceStatus.html">LegalForceStatus</a></li>
<li><a href="../classes/LegalService.html">LegalService</a></li>
<li><a href="../classes/LegalValueLevel.html">LegalValueLevel</a></li>
<li><a href="../classes/Legislation.html">Legislation</a></li>
<li><a href="../classes/LegislationObject.html">LegislationObject</a></li>
<li><a href="../classes/LegislativeBuilding.html">LegislativeBuilding</a></li>
<li><a href="../classes/LendAction.html">LendAction</a></li>
<li><a href="../classes/Level.html">Level</a></li>
<li><a href="../classes/Library.html">Library</a></li>
<li><a href="../classes/LibrarySystem.html">LibrarySystem</a></li>
<li><a href="../classes/License.html">License</a></li>
<li><a href="../classes/LifestyleModification.html">LifestyleModification</a></li>
<li><a href="../classes/Ligament.html">Ligament</a></li>
<li><a href="../classes/LikeAction.html">LikeAction</a></li>
<li><a href="../classes/LinkRole.html">LinkRole</a></li>
<li><a href="../classes/LiquorStore.html">LiquorStore</a></li>
<li><a href="../classes/ListenAction.html">ListenAction</a></li>
<li><a href="../classes/ListItem.html">ListItem</a></li>
<li><a href="../classes/LiteraryEvent.html">LiteraryEvent</a></li>
<li><a href="../classes/LiveBlogPosting.html">LiveBlogPosting</a></li>
<li><a href="../classes/LoanOrCredit.html">LoanOrCredit</a></li>
<li><a href="../classes/LocalBusiness.html">LocalBusiness</a></li>
<li><a href="../classes/LocationFeatureSpecification.html">LocationFeatureSpecification</a></li>
<li><a href="../classes/Locksmith.html">Locksmith</a></li>
<li><a href="../classes/LodgingBusiness.html">LodgingBusiness</a></li>
<li><a href="../classes/LodgingReservation.html">LodgingReservation</a></li>
<li><a href="../classes/LoseAction.html">LoseAction</a></li>
<li><a href="../classes/LymphaticVessel.html">LymphaticVessel</a></li>
<li><a href="../classes/Manuscript.html">Manuscript</a></li>
<li><a href="../classes/Map.html">Map</a></li>
<li><a href="../classes/MapCategoryType.html">MapCategoryType</a></li>
<li><a href="../classes/MarryAction.html">MarryAction</a></li>
<li><a href="../classes/Mass.html">Mass</a></li>
<li><a href="../classes/MasterCertificate.html">MasterCertificate</a></li>
<li><a href="../classes/MasterDegree.html">MasterDegree</a></li>
<li><a href="../classes/MathSolver.html">MathSolver</a></li>
<li><a href="../classes/MaximumDoseSchedule.html">MaximumDoseSchedule</a></li>
<li><a href="../classes/MeasurementTypeEnumeration.html">MeasurementTypeEnumeration</a></li>
<li><a href="../classes/MedbiqImport.html">MedbiqImport</a></li>
<li><a href="../classes/MediaGallery.html">MediaGallery</a></li>
<li><a href="../classes/MediaManipulationRatingEnumeration.html">MediaManipulationRatingEnumeration</a></li>
<li><a href="../classes/MediaObject.html">MediaObject</a></li>
<li><a href="../classes/MediaReview.html">MediaReview</a></li>
<li><a href="../classes/MediaSubscription.html">MediaSubscription</a></li>
<li><a href="../classes/MedicalAudience.html">MedicalAudience</a></li>
<li><a href="../classes/MedicalAudienceType.html">MedicalAudienceType</a></li>
<li><a href="../classes/MedicalBusiness.html">MedicalBusiness</a></li>
<li><a href="../classes/MedicalCause.html">MedicalCause</a></li>
<li><a href="../classes/MedicalClinic.html">MedicalClinic</a></li>
<li><a href="../classes/MedicalCode.html">MedicalCode</a></li>
<li><a href="../classes/MedicalCondition.html">MedicalCondition</a></li>
<li><a href="../classes/MedicalConditionStage.html">MedicalConditionStage</a></li>
<li><a href="../classes/MedicalContraindication.html">MedicalContraindication</a></li>
<li><a href="../classes/MedicalDevice.html">MedicalDevice</a></li>
<li><a href="../classes/MedicalDevicePurpose.html">MedicalDevicePurpose</a></li>
<li><a href="../classes/MedicalEntity.html">MedicalEntity</a></li>
<li><a href="../classes/MedicalEnumeration.html">MedicalEnumeration</a></li>
<li><a href="../classes/MedicalEvidenceLevel.html">MedicalEvidenceLevel</a></li>
<li><a href="../classes/MedicalGuideline.html">MedicalGuideline</a></li>
<li><a href="../classes/MedicalGuidelineContraindication.html">MedicalGuidelineContraindication</a></li>
<li><a href="../classes/MedicalGuidelineRecommendation.html">MedicalGuidelineRecommendation</a></li>
<li><a href="../classes/MedicalImagingTechnique.html">MedicalImagingTechnique</a></li>
<li><a href="../classes/MedicalIndication.html">MedicalIndication</a></li>
<li><a href="../classes/MedicalIntangible.html">MedicalIntangible</a></li>
<li><a href="../classes/MedicalObservationalStudy.html">MedicalObservationalStudy</a></li>
<li><a href="../classes/MedicalObservationalStudyDesign.html">MedicalObservationalStudyDesign</a></li>
<li><a href="../classes/MedicalOrganization.html">MedicalOrganization</a></li>
<li><a href="../classes/MedicalProcedure.html">MedicalProcedure</a></li>
<li><a href="../classes/MedicalProcedureType.html">MedicalProcedureType</a></li>
<li><a href="../classes/MedicalRiskCalculator.html">MedicalRiskCalculator</a></li>
<li><a href="../classes/MedicalRiskEstimator.html">MedicalRiskEstimator</a></li>
<li><a href="../classes/MedicalRiskFactor.html">MedicalRiskFactor</a></li>
<li><a href="../classes/MedicalRiskScore.html">MedicalRiskScore</a></li>
<li><a href="../classes/MedicalScholarlyArticle.html">MedicalScholarlyArticle</a></li>
<li><a href="../classes/MedicalSign.html">MedicalSign</a></li>
<li><a href="../classes/MedicalSignOrSymptom.html">MedicalSignOrSymptom</a></li>
<li><a href="../classes/MedicalSpecialty.html">MedicalSpecialty</a></li>
<li><a href="../classes/MedicalStudy.html">MedicalStudy</a></li>
<li><a href="../classes/MedicalStudyStatus.html">MedicalStudyStatus</a></li>
<li><a href="../classes/MedicalSymptom.html">MedicalSymptom</a></li>
<li><a href="../classes/MedicalTest.html">MedicalTest</a></li>
<li><a href="../classes/MedicalTestPanel.html">MedicalTestPanel</a></li>
<li><a href="../classes/MedicalTherapy.html">MedicalTherapy</a></li>
<li><a href="../classes/MedicalTrial.html">MedicalTrial</a></li>
<li><a href="../classes/MedicalTrialDesign.html">MedicalTrialDesign</a></li>
<li><a href="../classes/MedicalWebPage.html">MedicalWebPage</a></li>
<li><a href="../classes/MedicineSystem.html">MedicineSystem</a></li>
<li><a href="../classes/MeetingRoom.html">MeetingRoom</a></li>
<li><a href="../classes/MensClothingStore.html">MensClothingStore</a></li>
<li><a href="../classes/Menu.html">Menu</a></li>
<li><a href="../classes/MenuItem.html">MenuItem</a></li>
<li><a href="../classes/MenuSection.html">MenuSection</a></li>
<li><a href="../classes/MerchantReturnEnumeration.html">MerchantReturnEnumeration</a></li>
<li><a href="../classes/MerchantReturnPolicy.html">MerchantReturnPolicy</a></li>
<li><a href="../classes/Message.html">Message</a></li>
<li><a href="../classes/MicroCredential.html">MicroCredential</a></li>
<li><a href="../classes/MiddleSchool.html">MiddleSchool</a></li>
<li><a href="../classes/MobileApplication.html">MobileApplication</a></li>
<li><a href="../classes/MobilePhoneStore.html">MobilePhoneStore</a></li>
<li><a href="../classes/MonetaryAmount.html">MonetaryAmount</a></li>
<li><a href="../classes/MonetaryAmountDistribution.html">MonetaryAmountDistribution</a></li>
<li><a href="../classes/MonetaryGrant.html">MonetaryGrant</a></li>
<li><a href="../classes/MoneyTransfer.html">MoneyTransfer</a></li>
<li><a href="../classes/MortgageLoan.html">MortgageLoan</a></li>
<li><a href="../classes/Mosque.html">Mosque</a></li>
<li><a href="../classes/Motel.html">Motel</a></li>
<li><a href="../classes/Motorcycle.html">Motorcycle</a></li>
<li><a href="../classes/MotorcycleDealer.html">MotorcycleDealer</a></li>
<li><a href="../classes/MotorcycleRepair.html">MotorcycleRepair</a></li>
<li><a href="../classes/MotorizedBicycle.html">MotorizedBicycle</a></li>
<li><a href="../classes/Mountain.html">Mountain</a></li>
<li><a href="../classes/MoveAction.html">MoveAction</a></li>
<li><a href="../classes/Movie.html">Movie</a></li>
<li><a href="../classes/MovieClip.html">MovieClip</a></li>
<li><a href="../classes/MovieRentalStore.html">MovieRentalStore</a></li>
<li><a href="../classes/MovieSeries.html">MovieSeries</a></li>
<li><a href="../classes/MovieTheater.html">MovieTheater</a></li>
<li><a href="../classes/MovingCompany.html">MovingCompany</a></li>
<li><a href="../classes/Muscle.html">Muscle</a></li>
<li><a href="../classes/Museum.html">Museum</a></li>
<li><a href="../classes/MusicAlbum.html">MusicAlbum</a></li>
<li><a href="../classes/MusicAlbumProductionType.html">MusicAlbumProductionType</a></li>
<li><a href="../classes/MusicAlbumReleaseType.html">MusicAlbumReleaseType</a></li>
<li><a href="../classes/MusicComposition.html">MusicComposition</a></li>
<li><a href="../classes/MusicEvent.html">MusicEvent</a></li>
<li><a href="../classes/MusicGroup.html">MusicGroup</a></li>
<li><a href="../classes/MusicPlaylist.html">MusicPlaylist</a></li>
<li><a href="../classes/MusicRecording.html">MusicRecording</a></li>
<li><a href="../classes/MusicRelease.html">MusicRelease</a></li>
<li><a href="../classes/MusicReleaseFormatType.html">MusicReleaseFormatType</a></li>
<li><a href="../classes/MusicStore.html">MusicStore</a></li>
<li><a href="../classes/MusicVenue.html">MusicVenue</a></li>
<li><a href="../classes/MusicVideoObject.html">MusicVideoObject</a></li>
<li><a href="../classes/NailSalon.html">NailSalon</a></li>
<li><a href="../classes/Nerve.html">Nerve</a></li>
<li><a href="../classes/NewsArticle.html">NewsArticle</a></li>
<li><a href="../classes/NewsMediaOrganization.html">NewsMediaOrganization</a></li>
<li><a href="../classes/Newspaper.html">Newspaper</a></li>
<li><a href="../classes/NGO.html">NGO</a></li>
<li><a href="../classes/NightClub.html">NightClub</a></li>
<li><a href="../classes/NLNonprofitType.html">NLNonprofitType</a></li>
<li><a href="../classes/NonprofitType.html">NonprofitType</a></li>
<li><a href="../classes/Notary.html">Notary</a></li>
<li><a href="../classes/NoteDigitalDocument.html">NoteDigitalDocument</a></li>
<li><a href="../classes/NutritionInformation.html">NutritionInformation</a></li>
<li><a href="../classes/Observation.html">Observation</a></li>
<li><a href="../classes/Occupation.html">Occupation</a></li>
<li><a href="../classes/OccupationalExperienceRequirements.html">OccupationalExperienceRequirements</a></li>
<li><a href="../classes/OccupationalTherapy.html">OccupationalTherapy</a></li>
<li><a href="../classes/OccupationClassification.html">OccupationClassification</a></li>
<li><a href="../classes/OceanBodyOfWater.html">OceanBodyOfWater</a></li>
<li><a href="../classes/Offer.html">Offer</a></li>
<li><a href="../classes/OfferAction.html">OfferAction</a></li>
<li><a href="../classes/OfferCatalog.html">OfferCatalog</a></li>
<li><a href="../classes/OfferForLease.html">OfferForLease</a></li>
<li><a href="../classes/OfferForPurchase.html">OfferForPurchase</a></li>
<li><a href="../classes/OfferItemCondition.html">OfferItemCondition</a></li>
<li><a href="../classes/OfferShippingDetails.html">OfferShippingDetails</a></li>
<li><a href="../classes/OfficeEquipmentStore.html">OfficeEquipmentStore</a></li>
<li><a href="../classes/OnDemandEvent.html">OnDemandEvent</a></li>
<li><a href="../classes/OpenBadge.html">OpenBadge</a></li>
<li><a href="../classes/OpeningHoursSpecification.html">OpeningHoursSpecification</a></li>
<li><a href="../classes/OpinionNewsArticle.html">OpinionNewsArticle</a></li>
<li><a href="../classes/Optician.html">Optician</a></li>
<li><a href="../classes/Order.html">Order</a></li>
<li><a href="../classes/OrderAction.html">OrderAction</a></li>
<li><a href="../classes/OrderedCollection.html">OrderedCollection</a></li>
<li><a href="../classes/OrderItem.html">OrderItem</a></li>
<li><a href="../classes/OrderStatus.html">OrderStatus</a></li>
<li><a href="../classes/Organization.html">Organization</a></li>
<li><a href="../classes/OrganizationRole.html">OrganizationRole</a></li>
<li><a href="../classes/OrganizeAction.html">OrganizeAction</a></li>
<li><a href="../classes/OutletStore.html">OutletStore</a></li>
<li><a href="../classes/OwnershipInfo.html">OwnershipInfo</a></li>
<li><a href="../classes/PaintAction.html">PaintAction</a></li>
<li><a href="../classes/Painting.html">Painting</a></li>
<li><a href="../classes/PalliativeProcedure.html">PalliativeProcedure</a></li>
<li><a href="../classes/ParcelDelivery.html">ParcelDelivery</a></li>
<li><a href="../classes/ParentAudience.html">ParentAudience</a></li>
<li><a href="../classes/Park.html">Park</a></li>
<li><a href="../classes/ParkingFacility.html">ParkingFacility</a></li>
<li><a href="../classes/PathologyTest.html">PathologyTest</a></li>
<li><a href="../classes/Pathway.html">Pathway</a></li>
<li><a href="../classes/PathwayComponent.html">PathwayComponent</a></li>
<li><a href="../classes/PathwaySet.html">PathwaySet</a></li>
<li><a href="../classes/Patient.html">Patient</a></li>
<li><a href="../classes/PawnShop.html">PawnShop</a></li>
<li><a href="../classes/PayAction.html">PayAction</a></li>
<li><a href="../classes/PaymentCard.html">PaymentCard</a></li>
<li><a href="../classes/PaymentChargeSpecification.html">PaymentChargeSpecification</a></li>
<li><a href="../classes/PaymentMethod.html">PaymentMethod</a></li>
<li><a href="../classes/PaymentService.html">PaymentService</a></li>
<li><a href="../classes/PaymentStatusType.html">PaymentStatusType</a></li>
<li><a href="../classes/PeopleAudience.html">PeopleAudience</a></li>
<li><a href="../classes/PerformAction.html">PerformAction</a></li>
<li><a href="../classes/PerformanceRole.html">PerformanceRole</a></li>
<li><a href="../classes/PerformingArtsTheater.html">PerformingArtsTheater</a></li>
<li><a href="../classes/PerformingGroup.html">PerformingGroup</a></li>
<li><a href="../classes/Periodical.html">Periodical</a></li>
<li><a href="../classes/Permit.html">Permit</a></li>
<li><a href="../classes/Person.html">Person</a></li>
<li><a href="../classes/PetStore.html">PetStore</a></li>
<li><a href="../classes/Pharmacy.html">Pharmacy</a></li>
<li><a href="../classes/Photograph.html">Photograph</a></li>
<li><a href="../classes/PhotographAction.html">PhotographAction</a></li>
<li><a href="../classes/PhysicalActivity.html">PhysicalActivity</a></li>
<li><a href="../classes/PhysicalActivityCategory.html">PhysicalActivityCategory</a></li>
<li><a href="../classes/PhysicalExam.html">PhysicalExam</a></li>
<li><a href="../classes/PhysicalTherapy.html">PhysicalTherapy</a></li>
<li><a href="../classes/Physician.html">Physician</a></li>
<li><a href="../classes/Place.html">Place</a></li>
<li><a href="../classes/PlaceOfWorship.html">PlaceOfWorship</a></li>
<li><a href="../classes/PlanAction.html">PlanAction</a></li>
<li><a href="../classes/Play.html">Play</a></li>
<li><a href="../classes/PlayAction.html">PlayAction</a></li>
<li><a href="../classes/Playground.html">Playground</a></li>
<li><a href="../classes/Plumber.html">Plumber</a></li>
<li><a href="../classes/PodcastEpisode.html">PodcastEpisode</a></li>
<li><a href="../classes/PodcastSeason.html">PodcastSeason</a></li>
<li><a href="../classes/PodcastSeries.html">PodcastSeries</a></li>
<li><a href="../classes/PoliceStation.html">PoliceStation</a></li>
<li><a href="../classes/Pond.html">Pond</a></li>
<li><a href="../classes/PostalAddress.html">PostalAddress</a></li>
<li><a href="../classes/PostalCodeRangeSpecification.html">PostalCodeRangeSpecification</a></li>
<li><a href="../classes/Poster.html">Poster</a></li>
<li><a href="../classes/PostOffice.html">PostOffice</a></li>
<li><a href="../classes/PreOrderAction.html">PreOrderAction</a></li>
<li><a href="../classes/PrependAction.html">PrependAction</a></li>
<li><a href="../classes/Preschool.html">Preschool</a></li>
<li><a href="../classes/PresentationDigitalDocument.html">PresentationDigitalDocument</a></li>
<li><a href="../classes/PreventionIndication.html">PreventionIndication</a></li>
<li><a href="../classes/PriceComponentTypeEnumeration.html">PriceComponentTypeEnumeration</a></li>
<li><a href="../classes/PriceSpecification.html">PriceSpecification</a></li>
<li><a href="../classes/PriceTypeEnumeration.html">PriceTypeEnumeration</a></li>
<li><a href="../classes/ProcessProfile.html">ProcessProfile</a></li>
<li><a href="../classes/Product.html">Product</a></li>
<li><a href="../classes/ProductCollection.html">ProductCollection</a></li>
<li><a href="../classes/ProductGroup.html">ProductGroup</a></li>
<li><a href="../classes/ProductModel.html">ProductModel</a></li>
<li><a href="../classes/ProductReturnEnumeration.html">ProductReturnEnumeration</a></li>
<li><a href="../classes/ProductReturnPolicy.html">ProductReturnPolicy</a></li>
<li><a href="../classes/ProfessionalDoctorate.html">ProfessionalDoctorate</a></li>
<li><a href="../classes/ProfessionalService.html">ProfessionalService</a></li>
<li><a href="../classes/ProficiencyScale.html">ProficiencyScale</a></li>
<li><a href="../classes/ProfilePage.html">ProfilePage</a></li>
<li><a href="../classes/ProgramMembership.html">ProgramMembership</a></li>
<li><a href="../classes/ProgressionLevel.html">ProgressionLevel</a></li>
<li><a href="../classes/ProgressionModel.html">ProgressionModel</a></li>
<li><a href="../classes/Project.html">Project</a></li>
<li><a href="../classes/PronounceableText.html">PronounceableText</a></li>
<li><a href="../classes/Property.html">Property</a></li>
<li><a href="../classes/PropertyValue.html">PropertyValue</a></li>
<li><a href="../classes/PropertyValueSpecification.html">PropertyValueSpecification</a></li>
<li><a href="../classes/PsychologicalTreatment.html">PsychologicalTreatment</a></li>
<li><a href="../classes/PublicationEvent.html">PublicationEvent</a></li>
<li><a href="../classes/PublicationIssue.html">PublicationIssue</a></li>
<li><a href="../classes/PublicationVolume.html">PublicationVolume</a></li>
<li><a href="../classes/PublicSwimmingPool.html">PublicSwimmingPool</a></li>
<li><a href="../classes/PublicToilet.html">PublicToilet</a></li>
<li><a href="../classes/QACredentialOrganization.html">QACredentialOrganization</a></li>
<li><a href="../classes/QAPage.html">QAPage</a></li>
<li><a href="../classes/QualitativeValue.html">QualitativeValue</a></li>
<li><a href="../classes/QualityAssuranceCredential.html">QualityAssuranceCredential</a></li>
<li><a href="../classes/QuantitativeValue.html">QuantitativeValue</a></li>
<li><a href="../classes/QuantitativeValueDistribution.html">QuantitativeValueDistribution</a></li>
<li><a href="../classes/Quantity.html">Quantity</a></li>
<li><a href="../classes/Question.html">Question</a></li>
<li><a href="../classes/Quiz.html">Quiz</a></li>
<li><a href="../classes/Quotation.html">Quotation</a></li>
<li><a href="../classes/QuoteAction.html">QuoteAction</a></li>
<li><a href="../classes/RadiationTherapy.html">RadiationTherapy</a></li>
<li><a href="../classes/RadioBroadcastService.html">RadioBroadcastService</a></li>
<li><a href="../classes/RadioChannel.html">RadioChannel</a></li>
<li><a href="../classes/RadioClip.html">RadioClip</a></li>
<li><a href="../classes/RadioEpisode.html">RadioEpisode</a></li>
<li><a href="../classes/RadioSeason.html">RadioSeason</a></li>
<li><a href="../classes/RadioSeries.html">RadioSeries</a></li>
<li><a href="../classes/RadioStation.html">RadioStation</a></li>
<li><a href="../classes/Rating.html">Rating</a></li>
<li><a href="../classes/ReactAction.html">ReactAction</a></li>
<li><a href="../classes/ReadAction.html">ReadAction</a></li>
<li><a href="../classes/RealEstateAgent.html">RealEstateAgent</a></li>
<li><a href="../classes/RealEstateListing.html">RealEstateListing</a></li>
<li><a href="../classes/ReceiveAction.html">ReceiveAction</a></li>
<li><a href="../classes/Recipe.html">Recipe</a></li>
<li><a href="../classes/RecognizeAction.html">RecognizeAction</a></li>
<li><a href="../classes/Recommendation.html">Recommendation</a></li>
<li><a href="../classes/RecommendedDoseSchedule.html">RecommendedDoseSchedule</a></li>
<li><a href="../classes/RecyclingCenter.html">RecyclingCenter</a></li>
<li><a href="../classes/RefundTypeEnumeration.html">RefundTypeEnumeration</a></li>
<li><a href="../classes/RegisterAction.html">RegisterAction</a></li>
<li><a href="../classes/RegulateAction.html">RegulateAction</a></li>
<li><a href="../classes/RejectAction.html">RejectAction</a></li>
<li><a href="../classes/Relation.html">Relation</a></li>
<li><a href="../classes/RenewAction.html">RenewAction</a></li>
<li><a href="../classes/RentAction.html">RentAction</a></li>
<li><a href="../classes/RentalCarReservation.html">RentalCarReservation</a></li>
<li><a href="../classes/RepaymentSpecification.html">RepaymentSpecification</a></li>
<li><a href="../classes/ReplaceAction.html">ReplaceAction</a></li>
<li><a href="../classes/ReplyAction.html">ReplyAction</a></li>
<li><a href="../classes/Report.html">Report</a></li>
<li><a href="../classes/ReportageNewsArticle.html">ReportageNewsArticle</a></li>
<li><a href="../classes/ReportedDoseSchedule.html">ReportedDoseSchedule</a></li>
<li><a href="../classes/ResearchDoctorate.html">ResearchDoctorate</a></li>
<li><a href="../classes/Researcher.html">Researcher</a></li>
<li><a href="../classes/ResearchProject.html">ResearchProject</a></li>
<li><a href="../classes/Reservation.html">Reservation</a></li>
<li><a href="../classes/ReservationPackage.html">ReservationPackage</a></li>
<li><a href="../classes/ReservationStatusType.html">ReservationStatusType</a></li>
<li><a href="../classes/ReserveAction.html">ReserveAction</a></li>
<li><a href="../classes/Reservoir.html">Reservoir</a></li>
<li><a href="../classes/Residence.html">Residence</a></li>
<li><a href="../classes/Resort.html">Resort</a></li>
<li><a href="../classes/Restaurant.html">Restaurant</a></li>
<li><a href="../classes/RestrictedDiet.html">RestrictedDiet</a></li>
<li><a href="../classes/ResumeAction.html">ResumeAction</a></li>
<li><a href="../classes/ReturnAction.html">ReturnAction</a></li>
<li><a href="../classes/ReturnFeesEnumeration.html">ReturnFeesEnumeration</a></li>
<li><a href="../classes/Review.html">Review</a></li>
<li><a href="../classes/ReviewAction.html">ReviewAction</a></li>
<li><a href="../classes/ReviewNewsArticle.html">ReviewNewsArticle</a></li>
<li><a href="../classes/RevocationProfile.html">RevocationProfile</a></li>
<li><a href="../classes/RevokeAction.html">RevokeAction</a></li>
<li><a href="../classes/RightsAction.html">RightsAction</a></li>
<li><a href="../classes/RiverBodyOfWater.html">RiverBodyOfWater</a></li>
<li><a href="../classes/Role.html">Role</a></li>
<li><a href="../classes/Rollup.html">Rollup</a></li>
<li><a href="../classes/RollupRule.html">RollupRule</a></li>
<li><a href="../classes/RoofingContractor.html">RoofingContractor</a></li>
<li><a href="../classes/Room.html">Room</a></li>
<li><a href="../classes/RsvpAction.html">RsvpAction</a></li>
<li><a href="../classes/RsvpResponseType.html">RsvpResponseType</a></li>
<li><a href="../classes/RuleSet.html">RuleSet</a></li>
<li><a href="../classes/RuleSetProfile.html">RuleSetProfile</a></li>
<li><a href="../classes/RVPark.html">RVPark</a></li>
<li><a href="../classes/SaleEvent.html">SaleEvent</a></li>
<li><a href="../classes/SatiricalArticle.html">SatiricalArticle</a></li>
<li><a href="../classes/Schedule.html">Schedule</a></li>
<li><a href="../classes/ScheduleAction.html">ScheduleAction</a></li>
<li><a href="../classes/ScholarlyArticle.html">ScholarlyArticle</a></li>
<li><a href="../classes/School.html">School</a></li>
<li><a href="../classes/SchoolDistrict.html">SchoolDistrict</a></li>
<li><a href="../classes/ScreeningEvent.html">ScreeningEvent</a></li>
<li><a href="../classes/Sculpture.html">Sculpture</a></li>
<li><a href="../classes/SeaBodyOfWater.html">SeaBodyOfWater</a></li>
<li><a href="../classes/SearchAction.html">SearchAction</a></li>
<li><a href="../classes/SearchResultsPage.html">SearchResultsPage</a></li>
<li><a href="../classes/Season.html">Season</a></li>
<li><a href="../classes/Seat.html">Seat</a></li>
<li><a href="../classes/SecondarySchoolDiploma.html">SecondarySchoolDiploma</a></li>
<li><a href="../classes/SeekToAction.html">SeekToAction</a></li>
<li><a href="../classes/SelectionComponent.html">SelectionComponent</a></li>
<li><a href="../classes/SelfStorage.html">SelfStorage</a></li>
<li><a href="../classes/SellAction.html">SellAction</a></li>
<li><a href="../classes/SendAction.html">SendAction</a></li>
<li><a href="../classes/Series.html">Series</a></li>
<li><a href="../classes/Service.html">Service</a></li>
<li><a href="../classes/ServiceChannel.html">ServiceChannel</a></li>
<li><a href="../classes/ShareAction.html">ShareAction</a></li>
<li><a href="../classes/SheetMusic.html">SheetMusic</a></li>
<li><a href="../classes/ShippingDeliveryTime.html">ShippingDeliveryTime</a></li>
<li><a href="../classes/ShippingRateSettings.html">ShippingRateSettings</a></li>
<li><a href="../classes/ShoeStore.html">ShoeStore</a></li>
<li><a href="../classes/ShoppingCenter.html">ShoppingCenter</a></li>
<li><a href="../classes/ShortStory.html">ShortStory</a></li>
<li><a href="../classes/SingleFamilyResidence.html">SingleFamilyResidence</a></li>
<li><a href="../classes/SiteNavigationElement.html">SiteNavigationElement</a></li>
<li><a href="../classes/SizeGroupEnumeration.html">SizeGroupEnumeration</a></li>
<li><a href="../classes/SizeSpecification.html">SizeSpecification</a></li>
<li><a href="../classes/SizeSystemEnumeration.html">SizeSystemEnumeration</a></li>
<li><a href="../classes/Skill.html">Skill</a></li>
<li><a href="../classes/SkiResort.html">SkiResort</a></li>
<li><a href="../classes/SocialEvent.html">SocialEvent</a></li>
<li><a href="../classes/SocialMediaPosting.html">SocialMediaPosting</a></li>
<li><a href="../classes/SoftwareApplication.html">SoftwareApplication</a></li>
<li><a href="../classes/SoftwareSourceCode.html">SoftwareSourceCode</a></li>
<li><a href="../classes/SolveMathAction.html">SolveMathAction</a></li>
<li><a href="../classes/SomeProducts.html">SomeProducts</a></li>
<li><a href="../classes/SpeakableSpecification.html">SpeakableSpecification</a></li>
<li><a href="../classes/SpecialAnnouncement.html">SpecialAnnouncement</a></li>
<li><a href="../classes/Specialty.html">Specialty</a></li>
<li><a href="../classes/SportingGoodsStore.html">SportingGoodsStore</a></li>
<li><a href="../classes/SportsActivityLocation.html">SportsActivityLocation</a></li>
<li><a href="../classes/SportsClub.html">SportsClub</a></li>
<li><a href="../classes/SportsEvent.html">SportsEvent</a></li>
<li><a href="../classes/SportsOrganization.html">SportsOrganization</a></li>
<li><a href="../classes/SportsTeam.html">SportsTeam</a></li>
<li><a href="../classes/SpreadsheetDigitalDocument.html">SpreadsheetDigitalDocument</a></li>
<li><a href="../classes/StadiumOrArena.html">StadiumOrArena</a></li>
<li><a href="../classes/State.html">State</a></li>
<li><a href="../classes/StatisticalPopulation.html">StatisticalPopulation</a></li>
<li><a href="../classes/StatusEnumeration.html">StatusEnumeration</a></li>
<li><a href="../classes/SteeringPositionValue.html">SteeringPositionValue</a></li>
<li><a href="../classes/Store.html">Store</a></li>
<li><a href="../classes/StructuredValue.html">StructuredValue</a></li>
<li><a href="../classes/StupidType.html">StupidType</a></li>
<li><a href="../classes/SubscribeAction.html">SubscribeAction</a></li>
<li><a href="../classes/Substance.html">Substance</a></li>
<li><a href="../classes/SubwayStation.html">SubwayStation</a></li>
<li><a href="../classes/Suite.html">Suite</a></li>
<li><a href="../classes/SuperficialAnatomy.html">SuperficialAnatomy</a></li>
<li><a href="../classes/SurgicalProcedure.html">SurgicalProcedure</a></li>
<li><a href="../classes/SuspendAction.html">SuspendAction</a></li>
<li><a href="../classes/Synagogue.html">Synagogue</a></li>
<li><a href="../classes/Table.html">Table</a></li>
<li><a href="../classes/TakeAction.html">TakeAction</a></li>
<li><a href="../classes/Task.html">Task</a></li>
<li><a href="../classes/TattooParlor.html">TattooParlor</a></li>
<li><a href="../classes/Taxi.html">Taxi</a></li>
<li><a href="../classes/TaxiReservation.html">TaxiReservation</a></li>
<li><a href="../classes/TaxiService.html">TaxiService</a></li>
<li><a href="../classes/TaxiStand.html">TaxiStand</a></li>
<li><a href="../classes/TechArticle.html">TechArticle</a></li>
<li><a href="../classes/TelevisionChannel.html">TelevisionChannel</a></li>
<li><a href="../classes/TelevisionStation.html">TelevisionStation</a></li>
<li><a href="../classes/TennisComplex.html">TennisComplex</a></li>
<li><a href="../classes/TextDigitalDocument.html">TextDigitalDocument</a></li>
<li><a href="../classes/TheaterEvent.html">TheaterEvent</a></li>
<li><a href="../classes/TheaterGroup.html">TheaterGroup</a></li>
<li><a href="../classes/TherapeuticProcedure.html">TherapeuticProcedure</a></li>
<li><a href="../classes/Thesis.html">Thesis</a></li>
<li><a href="../classes/Thing.html">Thing</a></li>
<li><a href="../classes/this.html">this</a></li>
<li><a href="../classes/Ticket.html">Ticket</a></li>
<li><a href="../classes/TieAction.html">TieAction</a></li>
<li><a href="../classes/TipAction.html">TipAction</a></li>
<li><a href="../classes/TireShop.html">TireShop</a></li>
<li><a href="../classes/TouristAttraction.html">TouristAttraction</a></li>
<li><a href="../classes/TouristDestination.html">TouristDestination</a></li>
<li><a href="../classes/TouristInformationCenter.html">TouristInformationCenter</a></li>
<li><a href="../classes/TouristTrip.html">TouristTrip</a></li>
<li><a href="../classes/ToyStore.html">ToyStore</a></li>
<li><a href="../classes/TrackAction.html">TrackAction</a></li>
<li><a href="../classes/TradeAction.html">TradeAction</a></li>
<li><a href="../classes/TrainReservation.html">TrainReservation</a></li>
<li><a href="../classes/TrainStation.html">TrainStation</a></li>
<li><a href="../classes/TrainTrip.html">TrainTrip</a></li>
<li><a href="../classes/TransferAction.html">TransferAction</a></li>
<li><a href="../classes/TransferValueProfile.html">TransferValueProfile</a></li>
<li><a href="../classes/TravelAction.html">TravelAction</a></li>
<li><a href="../classes/TravelAgency.html">TravelAgency</a></li>
<li><a href="../classes/TreatmentIndication.html">TreatmentIndication</a></li>
<li><a href="../classes/Trip.html">Trip</a></li>
<li><a href="../classes/Triple.html">Triple</a></li>
<li><a href="../classes/TVClip.html">TVClip</a></li>
<li><a href="../classes/TVEpisode.html">TVEpisode</a></li>
<li><a href="../classes/TVSeason.html">TVSeason</a></li>
<li><a href="../classes/TVSeries.html">TVSeries</a></li>
<li><a href="../classes/TypeAndQuantityNode.html">TypeAndQuantityNode</a></li>
<li><a href="../classes/UKNonprofitType.html">UKNonprofitType</a></li>
<li><a href="../classes/UnitPriceSpecification.html">UnitPriceSpecification</a></li>
<li><a href="../classes/UnRegisterAction.html">UnRegisterAction</a></li>
<li><a href="../classes/UpdateAction.html">UpdateAction</a></li>
<li><a href="../classes/UseAction.html">UseAction</a></li>
<li><a href="../classes/UserBlocks.html">UserBlocks</a></li>
<li><a href="../classes/UserCheckins.html">UserCheckins</a></li>
<li><a href="../classes/UserComments.html">UserComments</a></li>
<li><a href="../classes/UserDownloads.html">UserDownloads</a></li>
<li><a href="../classes/UserInteraction.html">UserInteraction</a></li>
<li><a href="../classes/UserLikes.html">UserLikes</a></li>
<li><a href="../classes/UserPageVisits.html">UserPageVisits</a></li>
<li><a href="../classes/UserPlays.html">UserPlays</a></li>
<li><a href="../classes/UserPlusOnes.html">UserPlusOnes</a></li>
<li><a href="../classes/UserReview.html">UserReview</a></li>
<li><a href="../classes/UserTweets.html">UserTweets</a></li>
<li><a href="../classes/USNonprofitType.html">USNonprofitType</a></li>
<li><a href="../classes/ValueProfile.html">ValueProfile</a></li>
<li><a href="../classes/Vehicle.html">Vehicle</a></li>
<li><a href="../classes/Vein.html">Vein</a></li>
<li><a href="../classes/VerificationServiceProfile.html">VerificationServiceProfile</a></li>
<li><a href="../classes/Vessel.html">Vessel</a></li>
<li><a href="../classes/VeterinaryCare.html">VeterinaryCare</a></li>
<li><a href="../classes/VideoGallery.html">VideoGallery</a></li>
<li><a href="../classes/VideoGame.html">VideoGame</a></li>
<li><a href="../classes/VideoGameClip.html">VideoGameClip</a></li>
<li><a href="../classes/VideoGameSeries.html">VideoGameSeries</a></li>
<li><a href="../classes/VideoObject.html">VideoObject</a></li>
<li><a href="../classes/ViewAction.html">ViewAction</a></li>
<li><a href="../classes/VirtualLocation.html">VirtualLocation</a></li>
<li><a href="../classes/VisualArtsEvent.html">VisualArtsEvent</a></li>
<li><a href="../classes/VisualArtwork.html">VisualArtwork</a></li>
<li><a href="../classes/VitalSign.html">VitalSign</a></li>
<li><a href="../classes/Volcano.html">Volcano</a></li>
<li><a href="../classes/VoteAction.html">VoteAction</a></li>
<li><a href="../classes/WantAction.html">WantAction</a></li>
<li><a href="../classes/WarrantyPromise.html">WarrantyPromise</a></li>
<li><a href="../classes/WarrantyScope.html">WarrantyScope</a></li>
<li><a href="../classes/WatchAction.html">WatchAction</a></li>
<li><a href="../classes/Waterfall.html">Waterfall</a></li>
<li><a href="../classes/WearableMeasurementTypeEnumeration.html">WearableMeasurementTypeEnumeration</a></li>
<li><a href="../classes/WearableSizeGroupEnumeration.html">WearableSizeGroupEnumeration</a></li>
<li><a href="../classes/WearableSizeSystemEnumeration.html">WearableSizeSystemEnumeration</a></li>
<li><a href="../classes/WearAction.html">WearAction</a></li>
<li><a href="../classes/WebAPI.html">WebAPI</a></li>
<li><a href="../classes/WebApplication.html">WebApplication</a></li>
<li><a href="../classes/WebContent.html">WebContent</a></li>
<li><a href="../classes/WebPage.html">WebPage</a></li>
<li><a href="../classes/WebPageElement.html">WebPageElement</a></li>
<li><a href="../classes/WebSite.html">WebSite</a></li>
<li><a href="../classes/WholesaleStore.html">WholesaleStore</a></li>
<li><a href="../classes/WinAction.html">WinAction</a></li>
<li><a href="../classes/Winery.html">Winery</a></li>
<li><a href="../classes/WorkBasedProgram.html">WorkBasedProgram</a></li>
<li><a href="../classes/WorkersUnion.html">WorkersUnion</a></li>
<li><a href="../classes/WorkExperienceComponent.html">WorkExperienceComponent</a></li>
<li><a href="../classes/WorkRole.html">WorkRole</a></li>
<li><a href="../classes/WPAdBlock.html">WPAdBlock</a></li>
<li><a href="../classes/WPFooter.html">WPFooter</a></li>
<li><a href="../classes/WPHeader.html">WPHeader</a></li>
<li><a href="../classes/WPSideBar.html">WPSideBar</a></li>
<li><a href="../classes/WriteAction.html">WriteAction</a></li>
<li><a href="../classes/XPathType.html">XPathType</a></li>
<li><a href="../classes/Zoo.html">Zoo</a></li>
</ul>
<ul id="api-modules" class="apis modules">
<li><a href="../modules/com.eduworks.html">com.eduworks</a></li>
<li><a href="../modules/com.eduworks.ec.html">com.eduworks.ec</a></li>
<li><a href="../modules/org.cassproject.html">org.cassproject</a></li>
<li><a href="../modules/org.credentialengine.html">org.credentialengine</a></li>
<li><a href="../modules/org.json.ld.html">org.json.ld</a></li>
<li><a href="../modules/org.schema.html">org.schema</a></li>
<li><a href="../modules/org.w3.skos.html">org.w3.skos</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="yui3-u-3-4">
<div id="api-options">
Show:
<label for="api-show-inherited">
<input type="checkbox" id="api-show-inherited" checked>
Inherited
</label>
<label for="api-show-protected">
<input type="checkbox" id="api-show-protected">
Protected
</label>
<label for="api-show-private">
<input type="checkbox" id="api-show-private">
Private
</label>
<label for="api-show-deprecated">
<input type="checkbox" id="api-show-deprecated">
Deprecated
</label>
</div>
<div class="apidocs">
<div id="docs-main">
<div class="content">
<h1>Ticket Class</h1>
<div class="box meta">
<div class="extends">
Extends <a href="../classes/Intangible.html" class="crosslink">Intangible</a>
</div>
<div class="foundat">
Defined in: <a href="../files/node_modules_cassproject_src_org_schema_Ticket.js.html#l3"><code>node_modules\cassproject\src\org\schema\Ticket.js:3</code></a>
</div>
Module: <a href="../modules/org.schema.html">org.schema</a>
</div>
<div class="box intro">
<p><a href="http://Schema.org/Ticket">Schema.org/Ticket</a>
Used to describe a ticket to an event, a flight, a bus ride, etc.</p>
</div>
<div id="classdocs" class="tabview">
<ul class="api-class-tabs">
<li class="api-class-tab index"><a href="#index">Index</a></li>
<li class="api-class-tab properties"><a href="#properties">Properties</a></li>
</ul>
<div>
<div id="index" class="api-class-tabpanel index">
<h2 class="off-left">Item Index</h2>
<div class="index-section properties">
<h3>Properties</h3>
<ul class="index-list properties extends">
<li class="index-item property inherited">
<a href="#property_additionalType">additionalType</a>
</li>
<li class="index-item property inherited">
<a href="#property_alternateName">alternateName</a>
</li>
<li class="index-item property">
<a href="#property_dateIssued">dateIssued</a>
</li>
<li class="index-item property inherited">
<a href="#property_description">description</a>
</li>
<li class="index-item property inherited">
<a href="#property_disambiguatingDescription">disambiguatingDescription</a>
</li>
<li class="index-item property inherited">
<a href="#property_identifier">identifier</a>
</li>
<li class="index-item property inherited">
<a href="#property_image">image</a>
</li>
<li class="index-item property">
<a href="#property_issuedBy">issuedBy</a>
</li>
<li class="index-item property inherited">
<a href="#property_mainEntityOfPage">mainEntityOfPage</a>
</li>
<li class="index-item property inherited">
<a href="#property_name">name</a>
</li>
<li class="index-item property inherited">
<a href="#property_potentialAction">potentialAction</a>
</li>
<li class="index-item property">
<a href="#property_priceCurrency">priceCurrency</a>
</li>
<li class="index-item property inherited">
<a href="#property_sameAs">sameAs</a>
</li>
<li class="index-item property inherited">
<a href="#property_subjectOf">subjectOf</a>
</li>
<li class="index-item property">
<a href="#property_ticketedSeat">ticketedSeat</a>
</li>
<li class="index-item property">
<a href="#property_ticketNumber">ticketNumber</a>
</li>
<li class="index-item property">
<a href="#property_ticketToken">ticketToken</a>
</li>
<li class="index-item property">
<a href="#property_totalPrice">totalPrice</a>
</li>
<li class="index-item property">
<a href="#property_underName">underName</a>
</li>
<li class="index-item property inherited">
<a href="#property_url">url</a>
</li>
</ul>
</div>
</div>
<div id="properties" class="api-class-tabpanel">
<h2 class="off-left">Properties</h2>
<div id="property_additionalType" class="property item inherited">
<h3 class="name"><code>additionalType</code></h3>
<span class="type">URL</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Thing.html#property_additionalType">Thing</a>:
<a href="../files/node_modules_cassproject_src_org_schema_Thing.js.html#l66"><code>node_modules\cassproject\src\org\schema\Thing.js:66</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/additionalType">Schema.org/additionalType</a>
An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. <a href="http://Schema.org">Schema.org</a> tools may have only weaker understanding of extra types, in particular those defined externally.</p>
</div>
</div>
<div id="property_alternateName" class="property item inherited">
<h3 class="name"><code>alternateName</code></h3>
<span class="type">Text</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Thing.html#property_alternateName">Thing</a>:
<a href="../files/node_modules_cassproject_src_org_schema_Thing.js.html#l85"><code>node_modules\cassproject\src\org\schema\Thing.js:85</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/alternateName">Schema.org/alternateName</a>
An alias for the item.</p>
</div>
</div>
<div id="property_dateIssued" class="property item">
<h3 class="name"><code>dateIssued</code></h3>
<span class="type">DateTime</span>
<div class="meta">
<p>
Defined in
<a href="../files/node_modules_cassproject_src_org_schema_Ticket.js.html#l86"><code>node_modules\cassproject\src\org\schema\Ticket.js:86</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/dateIssued">Schema.org/dateIssued</a>
The date the ticket was issued.</p>
</div>
</div>
<div id="property_description" class="property item inherited">
<h3 class="name"><code>description</code></h3>
<span class="type">Text</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Thing.html#property_description">Thing</a>:
<a href="../files/node_modules_cassproject_src_org_schema_Thing.js.html#l30"><code>node_modules\cassproject\src\org\schema\Thing.js:30</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/description">Schema.org/description</a>
A description of the item.</p>
</div>
</div>
<div id="property_disambiguatingDescription" class="property item inherited">
<h3 class="name"><code>disambiguatingDescription</code></h3>
<span class="type">Text</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Thing.html#property_disambiguatingDescription">Thing</a>:
<a href="../files/node_modules_cassproject_src_org_schema_Thing.js.html#l121"><code>node_modules\cassproject\src\org\schema\Thing.js:121</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/disambiguatingDescription">Schema.org/disambiguatingDescription</a>
A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.</p>
</div>
</div>
<div id="property_identifier" class="property item inherited">
<h3 class="name"><code>identifier</code></h3>
<span class="type">Text</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Thing.html#property_identifier">Thing</a>:
<a href="../files/node_modules_cassproject_src_org_schema_Thing.js.html#l75"><code>node_modules\cassproject\src\org\schema\Thing.js:75</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/identifier">Schema.org/identifier</a>
The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. <a href="http://Schema.org">Schema.org</a> provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See <a href="/docs/datamodel.html#identifierBg">background notes</a> for more details.</p>
</div>
</div>
<div id="property_image" class="property item inherited">
<h3 class="name"><code>image</code></h3>
<span class="type"><a href="../classes/ImageObject.html" class="crosslink">ImageObject</a></span>
<div class="meta">
<p>Inherited from
<a href="../classes/Thing.html#property_image">Thing</a>:
<a href="../files/node_modules_cassproject_src_org_schema_Thing.js.html#l112"><code>node_modules\cassproject\src\org\schema\Thing.js:112</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/image">Schema.org/image</a>
An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].</p>
</div>
</div>
<div id="property_issuedBy" class="property item">
<h3 class="name"><code>issuedBy</code></h3>
<span class="type"><a href="../classes/Organization.html" class="crosslink">Organization</a></span>
<div class="meta">
<p>
Defined in
<a href="../files/node_modules_cassproject_src_org_schema_Ticket.js.html#l59"><code>node_modules\cassproject\src\org\schema\Ticket.js:59</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/issuedBy">Schema.org/issuedBy</a>
The organization issuing the ticket or permit.</p>
</div>
</div>
<div id="property_mainEntityOfPage" class="property item inherited">
<h3 class="name"><code>mainEntityOfPage</code></h3>
<span class="type">URL</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Thing.html#property_mainEntityOfPage">Thing</a>:
<a href="../files/node_modules_cassproject_src_org_schema_Thing.js.html#l57"><code>node_modules\cassproject\src\org\schema\Thing.js:57</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/mainEntityOfPage">Schema.org/mainEntityOfPage</a>
Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See <a href="/docs/datamodel.html#mainEntityBackground">background notes</a> for details.</p>
</div>
</div>
<div id="property_name" class="property item inherited">
<h3 class="name"><code>name</code></h3>
<span class="type">Text</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Thing.html#property_name">Thing</a>:
<a href="../files/node_modules_cassproject_src_org_schema_Thing.js.html#l94"><code>node_modules\cassproject\src\org\schema\Thing.js:94</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/name">Schema.org/name</a>
The name of the item.</p>
</div>
</div>
<div id="property_potentialAction" class="property item inherited">
<h3 class="name"><code>potentialAction</code></h3>
<span class="type"><a href="../classes/Action.html" class="crosslink">Action</a></span>
<div class="meta">
<p>Inherited from
<a href="../classes/Thing.html#property_potentialAction">Thing</a>:
<a href="../files/node_modules_cassproject_src_org_schema_Thing.js.html#l48"><code>node_modules\cassproject\src\org\schema\Thing.js:48</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/potentialAction">Schema.org/potentialAction</a>
Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.</p>
</div>
</div>
<div id="property_priceCurrency" class="property item">
<h3 class="name"><code>priceCurrency</code></h3>
<span class="type">Text</span>
<div class="meta">
<p>
Defined in
<a href="../files/node_modules_cassproject_src_org_schema_Ticket.js.html#l32"><code>node_modules\cassproject\src\org\schema\Ticket.js:32</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/priceCurrency">Schema.org/priceCurrency</a>
The currency of the price, or a price component when attached to [[PriceSpecification]] and its subtypes.\n\nUse standard formats: <a href="http://en.wikipedia.org/wiki/ISO_4217">ISO 4217 currency format</a> e.g. "USD"; <a href="https://en.wikipedia.org/wiki/List_of_cryptocurrencies">Ticker symbol</a> for cryptocurrencies e.g. "BTC"; well known names for <a href="https://en.wikipedia.org/wiki/Local_exchange_trading_system">Local Exchange Tradings Systems</a> (LETS) and other currency types e.g. "Ithaca HOUR".</p>
</div>
</div>
<div id="property_sameAs" class="property item inherited">
<h3 class="name"><code>sameAs</code></h3>
<span class="type">URL</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Thing.html#property_sameAs">Thing</a>:
<a href="../files/node_modules_cassproject_src_org_schema_Thing.js.html#l21"><code>node_modules\cassproject\src\org\schema\Thing.js:21</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/sameAs">Schema.org/sameAs</a>
URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.</p>
</div>
</div>
<div id="property_subjectOf" class="property item inherited">
<h3 class="name"><code>subjectOf</code></h3>
<span class="type"><a href="../classes/Event.html" class="crosslink">Event</a></span>
<div class="meta">
<p>Inherited from
<a href="../classes/Thing.html#property_subjectOf">Thing</a>:
<a href="../files/node_modules_cassproject_src_org_schema_Thing.js.html#l39"><code>node_modules\cassproject\src\org\schema\Thing.js:39</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/subjectOf">Schema.org/subjectOf</a>
A CreativeWork or Event about this Thing.</p>
</div>
</div>
<div id="property_ticketedSeat" class="property item">
<h3 class="name"><code>ticketedSeat</code></h3>
<span class="type"><a href="../classes/Seat.html" class="crosslink">Seat</a></span>
<div class="meta">
<p>
Defined in
<a href="../files/node_modules_cassproject_src_org_schema_Ticket.js.html#l77"><code>node_modules\cassproject\src\org\schema\Ticket.js:77</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/ticketedSeat">Schema.org/ticketedSeat</a>
The seat associated with the ticket.</p>
</div>
</div>
<div id="property_ticketNumber" class="property item">
<h3 class="name"><code>ticketNumber</code></h3>
<span class="type">Text</span>
<div class="meta">
<p>
Defined in
<a href="../files/node_modules_cassproject_src_org_schema_Ticket.js.html#l41"><code>node_modules\cassproject\src\org\schema\Ticket.js:41</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/ticketNumber">Schema.org/ticketNumber</a>
The unique identifier for the ticket.</p>
</div>
</div>
<div id="property_ticketToken" class="property item">
<h3 class="name"><code>ticketToken</code></h3>
<span class="type">Text</span>
<div class="meta">
<p>
Defined in
<a href="../files/node_modules_cassproject_src_org_schema_Ticket.js.html#l68"><code>node_modules\cassproject\src\org\schema\Ticket.js:68</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/ticketToken">Schema.org/ticketToken</a>
Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.</p>
</div>
</div>
<div id="property_totalPrice" class="property item">
<h3 class="name"><code>totalPrice</code></h3>
<span class="type">Number</span>
<div class="meta">
<p>
Defined in
<a href="../files/node_modules_cassproject_src_org_schema_Ticket.js.html#l50"><code>node_modules\cassproject\src\org\schema\Ticket.js:50</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/totalPrice">Schema.org/totalPrice</a>
The total price for the reservation or ticket, including applicable taxes, shipping, etc.\n\nUsage guidelines:\n\n* Use values from 0123456789 (Unicode 'DIGIT ZERO' (U+0030) to 'DIGIT NINE' (U+0039)) rather than superficially similiar Unicode symbols.\n* Use '.' (Unicode 'FULL STOP' (U+002E)) rather than ',' to indicate a decimal point. Avoid using these symbols as a readability separator.</p>
</div>
</div>
<div id="property_underName" class="property item">
<h3 class="name"><code>underName</code></h3>
<span class="type"><a href="../classes/Organization.html" class="crosslink">Organization</a></span>
<div class="meta">
<p>
Defined in
<a href="../files/node_modules_cassproject_src_org_schema_Ticket.js.html#l23"><code>node_modules\cassproject\src\org\schema\Ticket.js:23</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/underName">Schema.org/underName</a>
The person or organization the reservation or ticket is for.</p>
</div>
</div>
<div id="property_url" class="property item inherited">
<h3 class="name"><code>url</code></h3>
<span class="type">URL</span>
<div class="meta">
<p>Inherited from
<a href="../classes/Thing.html#property_url">Thing</a>:
<a href="../files/node_modules_cassproject_src_org_schema_Thing.js.html#l103"><code>node_modules\cassproject\src\org\schema\Thing.js:103</code></a>
</p>
</div>
<div class="description">
<p><a href="http://Schema.org/url">Schema.org/url</a>
URL of the item.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="../assets/vendor/prettify/prettify-min.js"></script>
<script>prettyPrint();</script>
<script src="../assets/js/yui-prettify.js"></script>
<script src="../assets/../api.js"></script>
<script src="../assets/js/api-filter.js"></script>
<script src="../assets/js/api-list.js"></script>
<script src="../assets/js/api-search.js"></script>
<script src="../assets/js/apidocs.js"></script>
</body>
</html>
|
src/site/resources/javadoc/taverna-language/org/apache/taverna/scufl2/api/common/class-use/Visitor.VisitorAdapter.html
|
stain/incubator-taverna-site
|
<!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_65) on Thu Jan 22 19:02:37 GMT 2015 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Uses of Class org.apache.taverna.scufl2.api.common.Visitor.VisitorAdapter (Apache Taverna Language APIs (Scufl2, Databundle) 0.16.1-incubating-SNAPSHOT API)</title>
<meta name="date" content="2015-01-22">
<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.taverna.scufl2.api.common.Visitor.VisitorAdapter (Apache Taverna Language APIs (Scufl2, Databundle) 0.16.1-incubating-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="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/apache/taverna/scufl2/api/common/Visitor.VisitorAdapter.html" title="class in org.apache.taverna.scufl2.api.common">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/taverna/scufl2/api/common/class-use/Visitor.VisitorAdapter.html" target="_top">Frames</a></li>
<li><a href="Visitor.VisitorAdapter.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.taverna.scufl2.api.common.Visitor.VisitorAdapter" class="title">Uses of Class<br>org.apache.taverna.scufl2.api.common.Visitor.VisitorAdapter</h2>
</div>
<div class="classUseContainer">No usage of org.apache.taverna.scufl2.api.common.Visitor.VisitorAdapter</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/taverna/scufl2/api/common/Visitor.VisitorAdapter.html" title="class in org.apache.taverna.scufl2.api.common">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/taverna/scufl2/api/common/class-use/Visitor.VisitorAdapter.html" target="_top">Frames</a></li>
<li><a href="Visitor.VisitorAdapter.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 © 2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
|
2018.3.3/apidocs/org/wildfly/swarm/config/elytron/class-use/SslSessionSupplier.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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 Mar 08 14:17:42 MST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildfly.swarm.config.elytron.SslSessionSupplier (BOM: * : All 2018.3.3 API)</title>
<meta name="date" content="2018-03-08">
<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.SslSessionSupplier (BOM: * : All 2018.3.3 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/SslSessionSupplier.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">WildFly Swarm API, 2018.3.3</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/SslSessionSupplier.html" target="_top">Frames</a></li>
<li><a href="SslSessionSupplier.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 Interface org.wildfly.swarm.config.elytron.SslSessionSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.elytron.SslSessionSupplier</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/SslSessionSupplier.html" title="interface in org.wildfly.swarm.config.elytron">SslSessionSupplier</a></span><span class="tabEnd"> </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.elytron">org.wildfly.swarm.config.elytron</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config.elytron">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/elytron/SslSessionSupplier.html" title="interface in org.wildfly.swarm.config.elytron">SslSessionSupplier</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 methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/elytron/SslSessionSupplier.html" title="interface in org.wildfly.swarm.config.elytron">SslSessionSupplier</a></span><span class="tabEnd"> </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/ClientSslContext.html" title="type parameter in ClientSslContext">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">ClientSslContext.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html#sslSession-org.wildfly.swarm.config.elytron.SslSessionSupplier-">sslSession</a></span>(<a href="../../../../../../org/wildfly/swarm/config/elytron/SslSessionSupplier.html" title="interface in org.wildfly.swarm.config.elytron">SslSessionSupplier</a> supplier)</code>
<div class="block">Install a supplied SslSession object to the list of subresources</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/elytron/ServerSslContext.html" title="type parameter in ServerSslContext">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">ServerSslContext.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ServerSslContext.html#sslSession-org.wildfly.swarm.config.elytron.SslSessionSupplier-">sslSession</a></span>(<a href="../../../../../../org/wildfly/swarm/config/elytron/SslSessionSupplier.html" title="interface in org.wildfly.swarm.config.elytron">SslSessionSupplier</a> supplier)</code>
<div class="block">Install a supplied SslSession 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/SslSessionSupplier.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">WildFly Swarm API, 2018.3.3</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/SslSessionSupplier.html" target="_top">Frames</a></li>
<li><a href="SslSessionSupplier.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 © 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
CS200s/CS217b/OriginalFiles/doc/lejos/nxt/addon/TouchMUX.html
|
AndrewZurn/sju-compsci-archive
|
<!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_24) on Mon May 16 13:35:20 BST 2011 -->
<TITLE>
TouchMUX (leJOS NXJ PC API documentation)
</TITLE>
<META NAME="date" CONTENT="2011-05-16">
<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="TouchMUX (leJOS NXJ PC API documentation)";
}
}
</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../lejos/nxt/addon/SensorSelectorException.html" title="class in lejos.nxt.addon"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?lejos/nxt/addon/TouchMUX.html" target="_top"><B>FRAMES</B></A>
<A HREF="TouchMUX.html" target="_top"><B>NO FRAMES</B></A>
<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: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <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">
lejos.nxt.addon</FONT>
<BR>
Class TouchMUX</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>lejos.nxt.addon.TouchMUX</B>
</PRE>
<HR>
<DL>
<DT><PRE>public class <B>TouchMUX</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
Interface for the Mindsensors Touch Multiplexer.
This device allows up to three touch sensors to be attached to a single NXT
sensor port.
<P>
<P>
<DL>
<DT><B>Author:</B></DT>
<DD>Andy</DD>
</DL>
<HR>
<P>
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_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>Field Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/addon/TouchMUX.html#ID_T1">ID_T1</A></B></CODE>
<BR>
Bit ID returned by readSensors when sensor T1 is pressed</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/addon/TouchMUX.html#ID_T2">ID_T2</A></B></CODE>
<BR>
Bit ID returned by readSensors when sensor T1 is pressed</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/addon/TouchMUX.html#ID_T3">ID_T3</A></B></CODE>
<BR>
Bit ID returned by readSensors when sensor T1 is pressed</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/addon/TouchMUX.html#NUMBER_OF_SENSORS">NUMBER_OF_SENSORS</A></B></CODE>
<BR>
number of touch sensors supported by this device</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../lejos/robotics/Touch.html" title="interface in lejos.robotics">Touch</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/addon/TouchMUX.html#T1">T1</A></B></CODE>
<BR>
Instance for the touch sensor connected to port T1</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../lejos/robotics/Touch.html" title="interface in lejos.robotics">Touch</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/addon/TouchMUX.html#T2">T2</A></B></CODE>
<BR>
Instance for the touch sensor connected to port T2</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../lejos/robotics/Touch.html" title="interface in lejos.robotics">Touch</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/addon/TouchMUX.html#T3">T3</A></B></CODE>
<BR>
Instance for the touch sensor connected to port T3</TD>
</TR>
</TABLE>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_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>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../lejos/nxt/addon/TouchMUX.html#TouchMUX(lejos.nxt.ADSensorPort)">TouchMUX</A></B>(<A HREF="../../../lejos/nxt/ADSensorPort.html" title="interface in lejos.nxt">ADSensorPort</A> port)</CODE>
<BR>
Create a object to provide access to a touch sensor multiplexer</TD>
</TR>
</TABLE>
<!-- ========== 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> <A HREF="../../../lejos/robotics/Touch.html" title="interface in lejos.robotics">Touch</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/addon/TouchMUX.html#getInstance(int)">getInstance</A></B>(int id)</CODE>
<BR>
Return a Touch interface providing access to the sensor specified by the
given id.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/addon/TouchMUX.html#readSensors()">readSensors</A></B>()</CODE>
<BR>
Read the touch multiplexer and return a bit mask showing which sensors
are currently pressed.</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_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>Field Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="NUMBER_OF_SENSORS"><!-- --></A><H3>
NUMBER_OF_SENSORS</H3>
<PRE>
public static final int <B>NUMBER_OF_SENSORS</B></PRE>
<DL>
<DD>number of touch sensors supported by this device
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#lejos.nxt.addon.TouchMUX.NUMBER_OF_SENSORS">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="ID_T1"><!-- --></A><H3>
ID_T1</H3>
<PRE>
public static final int <B>ID_T1</B></PRE>
<DL>
<DD>Bit ID returned by readSensors when sensor T1 is pressed
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#lejos.nxt.addon.TouchMUX.ID_T1">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="ID_T2"><!-- --></A><H3>
ID_T2</H3>
<PRE>
public static final int <B>ID_T2</B></PRE>
<DL>
<DD>Bit ID returned by readSensors when sensor T1 is pressed
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#lejos.nxt.addon.TouchMUX.ID_T2">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="ID_T3"><!-- --></A><H3>
ID_T3</H3>
<PRE>
public static final int <B>ID_T3</B></PRE>
<DL>
<DD>Bit ID returned by readSensors when sensor T1 is pressed
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#lejos.nxt.addon.TouchMUX.ID_T3">Constant Field Values</A></DL>
</DL>
<HR>
<A NAME="T1"><!-- --></A><H3>
T1</H3>
<PRE>
public final <A HREF="../../../lejos/robotics/Touch.html" title="interface in lejos.robotics">Touch</A> <B>T1</B></PRE>
<DL>
<DD>Instance for the touch sensor connected to port T1
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="T2"><!-- --></A><H3>
T2</H3>
<PRE>
public final <A HREF="../../../lejos/robotics/Touch.html" title="interface in lejos.robotics">Touch</A> <B>T2</B></PRE>
<DL>
<DD>Instance for the touch sensor connected to port T2
<P>
<DL>
</DL>
</DL>
<HR>
<A NAME="T3"><!-- --></A><H3>
T3</H3>
<PRE>
public final <A HREF="../../../lejos/robotics/Touch.html" title="interface in lejos.robotics">Touch</A> <B>T3</B></PRE>
<DL>
<DD>Instance for the touch sensor connected to port T3
<P>
<DL>
</DL>
</DL>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_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>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="TouchMUX(lejos.nxt.ADSensorPort)"><!-- --></A><H3>
TouchMUX</H3>
<PRE>
public <B>TouchMUX</B>(<A HREF="../../../lejos/nxt/ADSensorPort.html" title="interface in lejos.nxt">ADSensorPort</A> port)</PRE>
<DL>
<DD>Create a object to provide access to a touch sensor multiplexer
<P>
<DL>
<DT><B>Parameters:</B><DD><CODE>port</CODE> - The NXT sensor port to which the multiplexer is attached</DL>
</DL>
<!-- ============ 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="getInstance(int)"><!-- --></A><H3>
getInstance</H3>
<PRE>
public <A HREF="../../../lejos/robotics/Touch.html" title="interface in lejos.robotics">Touch</A> <B>getInstance</B>(int id)</PRE>
<DL>
<DD>Return a Touch interface providing access to the sensor specified by the
given id.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>id</CODE> - a number between 0..<A HREF="../../../lejos/nxt/addon/TouchMUX.html#NUMBER_OF_SENSORS"><CODE>NUMBER_OF_SENSORS</CODE></A>-1
<DT><B>Returns:</B><DD>the requested Touch interface</DL>
</DD>
</DL>
<HR>
<A NAME="readSensors()"><!-- --></A><H3>
readSensors</H3>
<PRE>
public int <B>readSensors</B>()</PRE>
<DL>
<DD>Read the touch multiplexer and return a bit mask showing which sensors
are currently pressed. Returns ID_T1 if T1 is pressed, ID_T2 if T2 is
pressed and ID_T3 id T3 is pressed. If more then one sensor is pressed
the return will be an or of the values.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>bit mask showing which sensor buttons are pressed.</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../lejos/nxt/addon/SensorSelectorException.html" title="class in lejos.nxt.addon"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?lejos/nxt/addon/TouchMUX.html" target="_top"><B>FRAMES</B></A>
<A HREF="TouchMUX.html" target="_top"><B>NO FRAMES</B></A>
<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: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
2.6.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/security/security_domain/authentication/LoginModuleSupplier.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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:03 MST 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>LoginModuleSupplier (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="LoginModuleSupplier (BOM: * : All 2.6.1.Final-SNAPSHOT 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/LoginModuleSupplier.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.6.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../../org/wildfly/swarm/config/security/security_domain/authentication/LoginModuleStackSupplier.html" title="interface in org.wildfly.swarm.config.security.security_domain.authentication"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/wildfly/swarm/config/security/security_domain/authentication/LoginModuleSupplier.html" target="_top">Frames</a></li>
<li><a href="LoginModuleSupplier.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </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.security.security_domain.authentication</div>
<h2 title="Interface LoginModuleSupplier" class="title">Interface LoginModuleSupplier<T extends <a href="../../../../../../../org/wildfly/swarm/config/security/security_domain/authentication/LoginModule.html" title="class in org.wildfly.swarm.config.security.security_domain.authentication">LoginModule</a>></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">LoginModuleSupplier<T extends <a href="../../../../../../../org/wildfly/swarm/config/security/security_domain/authentication/LoginModule.html" title="class in org.wildfly.swarm.config.security.security_domain.authentication">LoginModule</a>></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"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </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/security/security_domain/authentication/LoginModule.html" title="class in org.wildfly.swarm.config.security.security_domain.authentication">LoginModule</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/security/security_domain/authentication/LoginModuleSupplier.html#get--">get</a></span>()</code>
<div class="block">Constructed instance of LoginModule 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/security/security_domain/authentication/LoginModule.html" title="class in org.wildfly.swarm.config.security.security_domain.authentication">LoginModule</a> get()</pre>
<div class="block">Constructed instance of LoginModule 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/LoginModuleSupplier.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.6.1.Final-SNAPSHOT</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../../org/wildfly/swarm/config/security/security_domain/authentication/LoginModuleStackSupplier.html" title="interface in org.wildfly.swarm.config.security.security_domain.authentication"><span class="typeNameLink">Prev Class</span></a></li>
<li>Next Class</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/wildfly/swarm/config/security/security_domain/authentication/LoginModuleSupplier.html" target="_top">Frames</a></li>
<li><a href="LoginModuleSupplier.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </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 © 2020 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
2017.9.5/apidocs/org/wildfly/swarm/config/management/security_realm/class-use/PropertiesAuthenticationSupplier.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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:26 MST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildfly.swarm.config.management.security_realm.PropertiesAuthenticationSupplier (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 Interface org.wildfly.swarm.config.management.security_realm.PropertiesAuthenticationSupplier (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><a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/PropertiesAuthenticationSupplier.html" title="interface in org.wildfly.swarm.config.management.security_realm">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.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/config/management/security_realm/class-use/PropertiesAuthenticationSupplier.html" target="_top">Frames</a></li>
<li><a href="PropertiesAuthenticationSupplier.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 Interface org.wildfly.swarm.config.management.security_realm.PropertiesAuthenticationSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.management.security_realm.PropertiesAuthenticationSupplier</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/management/security_realm/PropertiesAuthenticationSupplier.html" title="interface in org.wildfly.swarm.config.management.security_realm">PropertiesAuthenticationSupplier</a></span><span class="tabEnd"> </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.management">org.wildfly.swarm.config.management</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config.management">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/PropertiesAuthenticationSupplier.html" title="interface in org.wildfly.swarm.config.management.security_realm">PropertiesAuthenticationSupplier</a> in <a href="../../../../../../../org/wildfly/swarm/config/management/package-summary.html">org.wildfly.swarm.config.management</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/management/package-summary.html">org.wildfly.swarm.config.management</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/PropertiesAuthenticationSupplier.html" title="interface in org.wildfly.swarm.config.management.security_realm">PropertiesAuthenticationSupplier</a></span><span class="tabEnd"> </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/management/SecurityRealm.html" title="type parameter in SecurityRealm">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">SecurityRealm.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/management/SecurityRealm.html#propertiesAuthentication-org.wildfly.swarm.config.management.security_realm.PropertiesAuthenticationSupplier-">propertiesAuthentication</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/PropertiesAuthenticationSupplier.html" title="interface in org.wildfly.swarm.config.management.security_realm">PropertiesAuthenticationSupplier</a> supplier)</code>
<div class="block">Configuration to use a list users stored within a properties file as the
user repository.</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/management/security_realm/PropertiesAuthenticationSupplier.html" title="interface in org.wildfly.swarm.config.management.security_realm">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.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/config/management/security_realm/class-use/PropertiesAuthenticationSupplier.html" target="_top">Frames</a></li>
<li><a href="PropertiesAuthenticationSupplier.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 © 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
apache-cassandra-2.0.16/javadoc/org/apache/cassandra/cql3/CQL3Type.Custom.html
|
anuragkapur/cassandra-2.1.2-ak-skynet
|
<!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_80) on Thu Jun 18 14:08:32 EDT 2015 -->
<title>CQL3Type.Custom (apache-cassandra API)</title>
<meta name="date" content="2015-06-18">
<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="CQL3Type.Custom (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/CQL3Type.Custom.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/cql3/CQL3Type.Collection.html" title="class in org.apache.cassandra.cql3"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../org/apache/cassandra/cql3/CQL3Type.Native.html" title="enum in org.apache.cassandra.cql3"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/cassandra/cql3/CQL3Type.Custom.html" target="_top">Frames</a></li>
<li><a href="CQL3Type.Custom.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </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.cql3</div>
<h2 title="Class CQL3Type.Custom" class="title">Class CQL3Type.Custom</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.apache.cassandra.cql3.CQL3Type.Custom</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/cql3/CQL3Type.html" title="interface in org.apache.cassandra.cql3">CQL3Type</a></dd>
</dl>
<dl>
<dt>Enclosing interface:</dt>
<dd><a href="../../../../org/apache/cassandra/cql3/CQL3Type.html" title="interface in org.apache.cassandra.cql3">CQL3Type</a></dd>
</dl>
<hr>
<br>
<pre>public static class <span class="strong">CQL3Type.Custom</span>
extends java.lang.Object
implements <a href="../../../../org/apache/cassandra/cql3/CQL3Type.html" title="interface in org.apache.cassandra.cql3">CQL3Type</a></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.cassandra.cql3.CQL3Type">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from interface org.apache.cassandra.cql3.<a href="../../../../org/apache/cassandra/cql3/CQL3Type.html" title="interface in org.apache.cassandra.cql3">CQL3Type</a></h3>
<code><a href="../../../../org/apache/cassandra/cql3/CQL3Type.Collection.html" title="class in org.apache.cassandra.cql3">CQL3Type.Collection</a>, <a href="../../../../org/apache/cassandra/cql3/CQL3Type.Custom.html" title="class in org.apache.cassandra.cql3">CQL3Type.Custom</a>, <a href="../../../../org/apache/cassandra/cql3/CQL3Type.Native.html" title="enum in org.apache.cassandra.cql3">CQL3Type.Native</a></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"> </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/cql3/CQL3Type.Custom.html#CQL3Type.Custom(org.apache.cassandra.db.marshal.AbstractType)">CQL3Type.Custom</a></strong>(<a href="../../../../org/apache/cassandra/db/marshal/AbstractType.html" title="class in org.apache.cassandra.db.marshal">AbstractType</a><?> type)</code> </td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><strong><a href="../../../../org/apache/cassandra/cql3/CQL3Type.Custom.html#CQL3Type.Custom(java.lang.String)">CQL3Type.Custom</a></strong>(java.lang.String className)</code> </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"> </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>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/cql3/CQL3Type.Custom.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object o)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../org/apache/cassandra/db/marshal/AbstractType.html" title="class in org.apache.cassandra.db.marshal">AbstractType</a><?></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/cql3/CQL3Type.Custom.html#getType()">getType</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/cql3/CQL3Type.Custom.html#hashCode()">hashCode</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/cql3/CQL3Type.Custom.html#isCollection()">isCollection</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/cql3/CQL3Type.Custom.html#isCounter()">isCounter</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/cql3/CQL3Type.Custom.html#toString()">toString</a></strong>()</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, finalize, getClass, 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="CQL3Type.Custom(org.apache.cassandra.db.marshal.AbstractType)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CQL3Type.Custom</h4>
<pre>public CQL3Type.Custom(<a href="../../../../org/apache/cassandra/db/marshal/AbstractType.html" title="class in org.apache.cassandra.db.marshal">AbstractType</a><?> type)</pre>
</li>
</ul>
<a name="CQL3Type.Custom(java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>CQL3Type.Custom</h4>
<pre>public CQL3Type.Custom(java.lang.String className)
throws <a href="../../../../org/apache/cassandra/exceptions/SyntaxException.html" title="class in org.apache.cassandra.exceptions">SyntaxException</a>,
<a href="../../../../org/apache/cassandra/exceptions/ConfigurationException.html" title="class in org.apache.cassandra.exceptions">ConfigurationException</a></pre>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code><a href="../../../../org/apache/cassandra/exceptions/SyntaxException.html" title="class in org.apache.cassandra.exceptions">SyntaxException</a></code></dd>
<dd><code><a href="../../../../org/apache/cassandra/exceptions/ConfigurationException.html" title="class in org.apache.cassandra.exceptions">ConfigurationException</a></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="isCollection()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isCollection</h4>
<pre>public boolean isCollection()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../org/apache/cassandra/cql3/CQL3Type.html#isCollection()">isCollection</a></code> in interface <code><a href="../../../../org/apache/cassandra/cql3/CQL3Type.html" title="interface in org.apache.cassandra.cql3">CQL3Type</a></code></dd>
</dl>
</li>
</ul>
<a name="getType()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getType</h4>
<pre>public <a href="../../../../org/apache/cassandra/db/marshal/AbstractType.html" title="class in org.apache.cassandra.db.marshal">AbstractType</a><?> getType()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../org/apache/cassandra/cql3/CQL3Type.html#getType()">getType</a></code> in interface <code><a href="../../../../org/apache/cassandra/cql3/CQL3Type.html" title="interface in org.apache.cassandra.cql3">CQL3Type</a></code></dd>
</dl>
</li>
</ul>
<a name="isCounter()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isCounter</h4>
<pre>public boolean isCounter()</pre>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../org/apache/cassandra/cql3/CQL3Type.html#isCounter()">isCounter</a></code> in interface <code><a href="../../../../org/apache/cassandra/cql3/CQL3Type.html" title="interface in org.apache.cassandra.cql3">CQL3Type</a></code></dd>
</dl>
</li>
</ul>
<a name="equals(java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>equals</h4>
<pre>public final boolean equals(java.lang.Object o)</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>equals</code> in class <code>java.lang.Object</code></dd>
</dl>
</li>
</ul>
<a name="hashCode()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hashCode</h4>
<pre>public final int hashCode()</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>hashCode</code> in class <code>java.lang.Object</code></dd>
</dl>
</li>
</ul>
<a name="toString()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>toString</h4>
<pre>public java.lang.String toString()</pre>
<dl>
<dt><strong>Overrides:</strong></dt>
<dd><code>toString</code> in class <code>java.lang.Object</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/CQL3Type.Custom.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/cql3/CQL3Type.Collection.html" title="class in org.apache.cassandra.cql3"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../org/apache/cassandra/cql3/CQL3Type.Native.html" title="enum in org.apache.cassandra.cql3"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/cassandra/cql3/CQL3Type.Custom.html" target="_top">Frames</a></li>
<li><a href="CQL3Type.Custom.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </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 © 2015 The Apache Software Foundation</small></p>
</body>
</html>
|
Java_Spring_HelloSpring/hello-spring/hello-spring/src/main/resources/static/hello-static.html
|
c86j224s/snippet
|
<!DOCTYPE html>
<html>
<head>
<title>static content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
Hello
정적 컨텐츠입니다.
</body>
</html>
|
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_15_testAbaNumberCheck_32626_bad_h2f.html
|
dcarda/aba.route.validator
|
<!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"> 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_15.html">Class Test_AbaRouteValidator_15</a></li>
</ol></div>
<h1 class="aui-h2-clover">
Test testAbaNumberCheck_32626_bad
</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_15.html?line=3025#src-3025" >testAbaNumberCheck_32626_bad</a>
</td>
<td>
<span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span>
</td>
<td>
7 Aug 12:44:44
</td>
<td>
0.0 </td>
<td>
<div></div>
<div class="errorMessage"></div>
</td>
</tr>
</tbody>
</table>
<div> </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_32626_bad</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/exceptions/AbaRouteValidationException.html?id=22119#AbaRouteValidationException" title="AbaRouteValidationException" name="sl-43">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/ErrorCodes.html?id=22119#ErrorCodes" title="ErrorCodes" name="sl-42">com.cardatechnologies.utils.validators.abaroutevalidator.ErrorCodes</a>
</td>
<td>
<span class="sortValue">0.5714286</span>57.1%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="57.1% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:57.1%"></div></div></div> </td>
</tr>
<tr>
<td>
<span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span>
  <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=22119#AbaRouteValidator" title="AbaRouteValidator" name="sl-47">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</a>
</td>
<td>
<span class="sortValue">0.29411766</span>29.4%
</td>
<td class="align-middle" style="width: 100%" colspan="3">
<div>
<div title="29.4% Covered" style="min-width:40px;" class="barNegative contribBarNegative contribBarNegative"><div class="barPositive contribBarPositive contribBarPositive" style="width:29.4%"></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>
|
CS200s/CS217b/OriginalFiles/doc/lejos/nxt/rcxcomm/PacketHandler.html
|
AndrewZurn/sju-compsci-archive
|
<!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_24) on Mon May 16 13:35:14 BST 2011 -->
<TITLE>
PacketHandler (leJOS NXJ PC API documentation)
</TITLE>
<META NAME="date" CONTENT="2011-05-16">
<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="PacketHandler (leJOS NXJ PC API documentation)";
}
}
</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../lejos/nxt/rcxcomm/Opcode.html" title="interface in lejos.nxt.rcxcomm"><B>PREV CLASS</B></A>
<A HREF="../../../lejos/nxt/rcxcomm/RCXAbstractPort.html" title="class in lejos.nxt.rcxcomm"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?lejos/nxt/rcxcomm/PacketHandler.html" target="_top"><B>FRAMES</B></A>
<A HREF="PacketHandler.html" target="_top"><B>NO FRAMES</B></A>
<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: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <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">
lejos.nxt.rcxcomm</FONT>
<BR>
Class PacketHandler</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>lejos.nxt.rcxcomm.PacketHandler</B>
</PRE>
<DL>
<DT><B>Direct Known Subclasses:</B> <DD><A HREF="../../../lejos/nxt/rcxcomm/LLCHandler.html" title="class in lejos.nxt.rcxcomm">LLCHandler</A>, <A HREF="../../../lejos/nxt/rcxcomm/LLCReliableHandler.html" title="class in lejos.nxt.rcxcomm">LLCReliableHandler</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public abstract class <B>PacketHandler</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
Abstract packet handler.
Implementations must include sendPacket, receivePacket and
isPacketAvailable(). The other methods are optional.
<P>
<P>
<HR>
<P>
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_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>Field Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected <A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html" title="class in lejos.nxt.rcxcomm">PacketHandler</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#lowerHandler">lowerHandler</A></B></CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_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>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#PacketHandler()">PacketHandler</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#PacketHandler(lejos.nxt.rcxcomm.PacketHandler)">PacketHandler</A></B>(<A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html" title="class in lejos.nxt.rcxcomm">PacketHandler</A> handler)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== 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> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#close()">close</A></B>()</CODE>
<BR>
Close this packet handler and all lower layers.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#getError()">getError</A></B>()</CODE>
<BR>
Get the last error.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#isAckAvailable()">isAckAvailable</A></B>()</CODE>
<BR>
Check if an ack is available</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>abstract boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#isPacketAvailable()">isPacketAvailable</A></B>()</CODE>
<BR>
Check if a packet is available</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#open(byte, byte)">open</A></B>(byte source,
byte destination)</CODE>
<BR>
Set the source and destination for this connection.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#receiveAck(byte[])">receiveAck</A></B>(byte[] buffer)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>abstract int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#receivePacket(byte[])">receivePacket</A></B>(byte[] buffer)</CODE>
<BR>
Receive a packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#reset()">reset</A></B>()</CODE>
<BR>
Reset sequence numbers for this handler</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>abstract boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#sendPacket(byte[], int)">sendPacket</A></B>(byte[] packet,
int len)</CODE>
<BR>
Send a packet.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html#setListen(boolean)">setListen</A></B>(boolean listen)</CODE>
<BR>
Set or unset the listen flag to keep a PC serial tower alive</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_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>Field Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="lowerHandler"><!-- --></A><H3>
lowerHandler</H3>
<PRE>
protected <A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html" title="class in lejos.nxt.rcxcomm">PacketHandler</A> <B>lowerHandler</B></PRE>
<DL>
<DL>
</DL>
</DL>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_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>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="PacketHandler()"><!-- --></A><H3>
PacketHandler</H3>
<PRE>
public <B>PacketHandler</B>()</PRE>
<DL>
</DL>
<HR>
<A NAME="PacketHandler(lejos.nxt.rcxcomm.PacketHandler)"><!-- --></A><H3>
PacketHandler</H3>
<PRE>
public <B>PacketHandler</B>(<A HREF="../../../lejos/nxt/rcxcomm/PacketHandler.html" title="class in lejos.nxt.rcxcomm">PacketHandler</A> handler)</PRE>
<DL>
</DL>
<!-- ============ 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="open(byte, byte)"><!-- --></A><H3>
open</H3>
<PRE>
public void <B>open</B>(byte source,
byte destination)</PRE>
<DL>
<DD>Set the source and destination for this connection.
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="reset()"><!-- --></A><H3>
reset</H3>
<PRE>
public void <B>reset</B>()</PRE>
<DL>
<DD>Reset sequence numbers for this handler
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setListen(boolean)"><!-- --></A><H3>
setListen</H3>
<PRE>
public void <B>setListen</B>(boolean listen)</PRE>
<DL>
<DD>Set or unset the listen flag to keep a PC serial tower alive
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>listen</CODE> - true to set listen mode, else false</DL>
</DD>
</DL>
<HR>
<A NAME="sendPacket(byte[], int)"><!-- --></A><H3>
sendPacket</H3>
<PRE>
public abstract boolean <B>sendPacket</B>(byte[] packet,
int len)</PRE>
<DL>
<DD>Send a packet.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>packet</CODE> - the bytes to send<DD><CODE>len</CODE> - the number of bytes to send
<DT><B>Returns:</B><DD>true if the send was successful, else false</DL>
</DD>
</DL>
<HR>
<A NAME="receivePacket(byte[])"><!-- --></A><H3>
receivePacket</H3>
<PRE>
public abstract int <B>receivePacket</B>(byte[] buffer)</PRE>
<DL>
<DD>Receive a packet.
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>buffer</CODE> - the buffer to receive the packet into
<DT><B>Returns:</B><DD>the number of bytes received</DL>
</DD>
</DL>
<HR>
<A NAME="receiveAck(byte[])"><!-- --></A><H3>
receiveAck</H3>
<PRE>
public int <B>receiveAck</B>(byte[] buffer)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="isPacketAvailable()"><!-- --></A><H3>
isPacketAvailable</H3>
<PRE>
public abstract boolean <B>isPacketAvailable</B>()</PRE>
<DL>
<DD>Check if a packet is available
<P>
<DD><DL>
<DT><B>Returns:</B><DD>true if a Packet is available, else false</DL>
</DD>
</DL>
<HR>
<A NAME="isAckAvailable()"><!-- --></A><H3>
isAckAvailable</H3>
<PRE>
public boolean <B>isAckAvailable</B>()</PRE>
<DL>
<DD>Check if an ack is available
<P>
<DD><DL>
<DT><B>Returns:</B><DD>true if a ack is available, else false</DL>
</DD>
</DL>
<HR>
<A NAME="close()"><!-- --></A><H3>
close</H3>
<PRE>
public void <B>close</B>()</PRE>
<DL>
<DD>Close this packet handler and all lower layers.
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getError()"><!-- --></A><H3>
getError</H3>
<PRE>
public int <B>getError</B>()</PRE>
<DL>
<DD>Get the last error.
<P>
<DD><DL>
<DT><B>Returns:</B><DD>the error number, or zero for success</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../lejos/nxt/rcxcomm/Opcode.html" title="interface in lejos.nxt.rcxcomm"><B>PREV CLASS</B></A>
<A HREF="../../../lejos/nxt/rcxcomm/RCXAbstractPort.html" title="class in lejos.nxt.rcxcomm"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?lejos/nxt/rcxcomm/PacketHandler.html" target="_top"><B>FRAMES</B></A>
<A HREF="PacketHandler.html" target="_top"><B>NO FRAMES</B></A>
<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: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
app/index-original.html
|
charliekuldip/web-starter-kit
|
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="A front-end template that helps you build fast, modern mobile web apps.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Billy Hayes Mega BadAss</title>
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<link rel="icon" sizes="192x192" href="images/touch/chrome-touch-icon-192x192.png">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Web Starter Kit">
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png">
<!-- Tile icon for Win8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png">
<meta name="msapplication-TileColor" content="#3372DF">
<!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones -->
<!--
<link rel="canonical" href="http://www.example.com/">
-->
<!-- Page styles -->
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<header class="app-bar promote-layer">
<div class="app-bar-container">
<button class="menu"><img src="images/hamburger.svg" alt="Menu"></button>
<h1 class="logo">Billy Hayes <strong>Mega BadAss Starter Kit</strong></h1>
<section class="app-bar-actions">
<!-- Put App Bar Buttons Here -->
<!-- e.g <button><i class="icon icon-star"></i></button> -->
</section>
</div>
</header>
<nav class="navdrawer-container promote-layer">
<h4>Navigation</h4>
<ul>
<li><a href="#hello">Hello</a></li>
<li><a href="#get-started">Get Started</a></li>
<li><a href="styleguide.html">Style Guide</a></li>
</ul>
</nav>
<main>
<h1 id="hello">Ain't nobody care but gahd</h1>
<p>My main goto bro JC.</p>
<h2 id="get-started">Get Bored and BREAK YO-SELF fool.</h2>
<p>Don't tell me how to code mahn.</p>
</main>
<!-- build:js scripts/main.min.js -->
<script src="scripts/main.js"></script>
<!-- endbuild -->
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID -->
<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-XXXXX-X', 'auto');
ga('send', 'pageview');
</script>
<!-- Built with love using Web Starter Kit -->
</body>
</html>
|
gui/admin-gui/src/main/java/com/evolveum/midpoint/gui/impl/page/admin/configuration/component/SystemConfigPanel.html
|
bshp/midPoint
|
<!--
~ Copyright (c) 2010-2013 Evolveum
~
~ 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
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ 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.
-->
<!DOCTYPE html>
<html xmlns:wicket="http://wicket.apache.org">
<wicket:panel>
<div class="row">
<div class="col-md-12">
<div wicket:id="basicSystemConfiguration" />
</div>
</div>
</wicket:panel>
</html>
|
common/templates/common/news_index_page.html
|
baylee-d/cos.io
|
{% extends "base.html" %}
{% load wagtailcore_tags %}
{% load wagtailcore_tags snippets %}
{% load wagtailimages_tags %}
{% load static %}
{% block body_class %}newsindexpage{% endblock %}
{% block content %}
<div class="banner-container">
<div class="banner-element">
Help support open science today.
<a href="/donate/" class="btn banner-button" onClick="ga('send', 'event', 'marketing', 'click', 'COS Donate Banner')">Donate Now</a>
</div>
</div>
<div class="page-container">
<!-- BEGIN CONTAINER -->
<div class="container">
<h1><strong>{{ page.title }}</strong></h1>
<p class="lead">{{ page.statement }}</p>
<div class="loading-msg text-center">
<div id="loader"></div>
<p>Loading news</p>
</div>
<div class="margin-bottom-20 grid" style="display: none">
{% include page_template %}
</div>
</div>
</div>
<div class="footer">
<div class="container">
<div class="row">
{# Have to specify content or it will just display the name of the footer #}
{{ page.footer.content }}
</div>
</div>
</div>
{% endblock %}
{% block extra_js %}
<!-- END CORE PLUGINS -->
<script type="text/javascript">
$(window).load(function() {
$('.loading-msg').hide();
var grid = $('.grid').show().masonry({
itemSelector: '.service-box-v1',
columnWidth: '.service-box-v1',
percentPosition: true,
});
grid.masonry();
$('.service-box-v1').removeClass('hidden-box');
grid.on('layoutComplete', function() {
$('.service-box-v1').removeClass('hidden-box');
});
});
var paginate_scroll_margin = 400;
if ($(window).width() < 500) {
paginate_scroll_margin = 1000;
} else if ($(window).width() < 900) {
paginate_scroll_margin = 800;
}
$.endlessPaginate({
paginateOnScroll: true,
paginateOnScrollMargin: paginate_scroll_margin,
onCompleted: function(){
var masonry = $('.grid').data('masonry');
setTimeout(function() {
masonry.reloadItems();
masonry.layout();
}, 200);
}
})
</script>
{% endblock %}
{% block extra_css %}
<style>
.endless_container{
display: none;
position: absolute;
bottom: 0;
}
.hidden-box {
opacity: 0;
}
</style>
{% endblock %}
|
javadoc/com/ohtu/wearable/wearabledataservice/list/package-summary.html
|
OhtuWearable/WearableDataServer
|
<!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_25) on Tue Apr 28 18:49:25 EEST 2015 -->
<title>com.ohtu.wearable.wearabledataservice.list</title>
<meta name="date" content="2015-04-28">
<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="com.ohtu.wearable.wearabledataservice.list";
}
}
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-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="../../../../../com/ohtu/wearable/wearabledataservice/fragments/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../com/ohtu/wearable/wearabledataservice/sensors/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/ohtu/wearable/wearabledataservice/list/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 com.ohtu.wearable.wearabledataservice.list</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"> </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="../../../../../com/ohtu/wearable/wearabledataservice/list/WearableListAdapter.html" title="class in com.ohtu.wearable.wearabledataservice.list">WearableListAdapter</a></td>
<td class="colLast">
<div class="block">Adapter class to pass selections of the sensors to the view.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../com/ohtu/wearable/wearabledataservice/list/WearableListAdapter.ItemViewHolder.html" title="class in com.ohtu.wearable.wearabledataservice.list">WearableListAdapter.ItemViewHolder</a></td>
<td class="colLast">
<div class="block">A wrapper for the items displayed in the listView.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../com/ohtu/wearable/wearabledataservice/list/WearableListItemLayout.html" title="class in com.ohtu.wearable.wearabledataservice.list">WearableListItemLayout</a></td>
<td class="colLast">
<div class="block">Contains layout for the List Items.</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 class="navBarCell1Rev">Package</li>
<li>Class</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="../../../../../com/ohtu/wearable/wearabledataservice/fragments/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../com/ohtu/wearable/wearabledataservice/sensors/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/ohtu/wearable/wearabledataservice/list/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 ======= -->
</body>
</html>
|
2017.10.2/apidocs/org/wildfly/swarm/config/management/security_realm/class-use/PlugInAuthentication.PlugInAuthenticationResources.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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.management.security_realm.PlugInAuthentication.PlugInAuthenticationResources (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.management.security_realm.PlugInAuthentication.PlugInAuthenticationResources (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/management/security_realm/PlugInAuthentication.PlugInAuthenticationResources.html" title="class in org.wildfly.swarm.config.management.security_realm">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/management/security_realm/class-use/PlugInAuthentication.PlugInAuthenticationResources.html" target="_top">Frames</a></li>
<li><a href="PlugInAuthentication.PlugInAuthenticationResources.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.wildfly.swarm.config.management.security_realm.PlugInAuthentication.PlugInAuthenticationResources" class="title">Uses of Class<br>org.wildfly.swarm.config.management.security_realm.PlugInAuthentication.PlugInAuthenticationResources</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/management/security_realm/PlugInAuthentication.PlugInAuthenticationResources.html" title="class in org.wildfly.swarm.config.management.security_realm">PlugInAuthentication.PlugInAuthenticationResources</a></span><span class="tabEnd"> </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.management.security_realm">org.wildfly.swarm.config.management.security_realm</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config.management.security_realm">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/PlugInAuthentication.PlugInAuthenticationResources.html" title="class in org.wildfly.swarm.config.management.security_realm">PlugInAuthentication.PlugInAuthenticationResources</a> in <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/package-summary.html">org.wildfly.swarm.config.management.security_realm</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/management/security_realm/package-summary.html">org.wildfly.swarm.config.management.security_realm</a> that return <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/PlugInAuthentication.PlugInAuthenticationResources.html" title="class in org.wildfly.swarm.config.management.security_realm">PlugInAuthentication.PlugInAuthenticationResources</a></span><span class="tabEnd"> </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/management/security_realm/PlugInAuthentication.PlugInAuthenticationResources.html" title="class in org.wildfly.swarm.config.management.security_realm">PlugInAuthentication.PlugInAuthenticationResources</a></code></td>
<td class="colLast"><span class="typeNameLabel">PlugInAuthentication.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/PlugInAuthentication.html#subresources--">subresources</a></span>()</code> </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/management/security_realm/PlugInAuthentication.PlugInAuthenticationResources.html" title="class in org.wildfly.swarm.config.management.security_realm">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/management/security_realm/class-use/PlugInAuthentication.PlugInAuthenticationResources.html" target="_top">Frames</a></li>
<li><a href="PlugInAuthentication.PlugInAuthenticationResources.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 © 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
javadoc/hibernate_Doc/org/hibernate/mapping/class-use/SingleTableSubclass.html
|
serious6/HibernateSimpleProject
|
<!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_45) on Mon Mar 03 10:44:38 EST 2014 -->
<title>Uses of Class org.hibernate.mapping.SingleTableSubclass (Hibernate JavaDocs)</title>
<meta name="date" content="2014-03-03">
<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.hibernate.mapping.SingleTableSubclass (Hibernate JavaDocs)";
}
//-->
</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/hibernate/mapping/SingleTableSubclass.html" title="class in org.hibernate.mapping">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/hibernate/mapping/class-use/SingleTableSubclass.html" target="_top">Frames</a></li>
<li><a href="SingleTableSubclass.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.hibernate.mapping.SingleTableSubclass" class="title">Uses of Class<br>org.hibernate.mapping.SingleTableSubclass</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/hibernate/mapping/SingleTableSubclass.html" title="class in org.hibernate.mapping">SingleTableSubclass</a></span><span class="tabEnd"> </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.hibernate.mapping">org.hibernate.mapping</a></td>
<td class="colLast">
<div class="block"><div class="paragraph"></div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.hibernate.mapping">
<!-- -->
</a>
<h3>Uses of <a href="../../../../org/hibernate/mapping/SingleTableSubclass.html" title="class in org.hibernate.mapping">SingleTableSubclass</a> in <a href="../../../../org/hibernate/mapping/package-summary.html">org.hibernate.mapping</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../org/hibernate/mapping/package-summary.html">org.hibernate.mapping</a> with parameters of type <a href="../../../../org/hibernate/mapping/SingleTableSubclass.html" title="class in org.hibernate.mapping">SingleTableSubclass</a></span><span class="tabEnd"> </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://download.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td>
<td class="colLast"><span class="strong">PersistentClassVisitor.</span><code><strong><a href="../../../../org/hibernate/mapping/PersistentClassVisitor.html#accept(org.hibernate.mapping.SingleTableSubclass)">accept</a></strong>(<a href="../../../../org/hibernate/mapping/SingleTableSubclass.html" title="class in org.hibernate.mapping">SingleTableSubclass</a> subclass)</code> </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/hibernate/mapping/SingleTableSubclass.html" title="class in org.hibernate.mapping">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/hibernate/mapping/class-use/SingleTableSubclass.html" target="_top">Frames</a></li>
<li><a href="SingleTableSubclass.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 © 2001-2014 <a href="http://redhat.com">Red Hat, Inc.</a> All Rights Reserved.</small></p>
</body>
</html>
|
2.2.0.Final/apidocs/org/wildfly/swarm/jaxrs/multipart/detect/package-frame.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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 Sep 05 03:08:44 MST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>org.wildfly.swarm.jaxrs.multipart.detect (BOM: * : All 2.2.0.Final API)</title>
<meta name="date" content="2018-09-05">
<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/wildfly/swarm/jaxrs/multipart/detect/package-summary.html" target="classFrame">org.wildfly.swarm.jaxrs.multipart.detect</a></h1>
<div class="indexContainer">
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="JAXRSMultipartPackageDetector.html" title="class in org.wildfly.swarm.jaxrs.multipart.detect" target="classFrame">JAXRSMultipartPackageDetector</a></li>
</ul>
</div>
</body>
</html>
|
10/doc/nfs.html
|
uphillian/puppetcookbook
|
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<title>module nfs - RDoc Documentation</title>
<link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
<script type="text/javascript">
var rdoc_rel_prefix = "./";
</script>
<script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
<script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
<script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
<script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
<script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
<body id="top" class="module">
<nav id="metadata">
<nav id="home-section" class="section">
<h3 class="section-header">
<a href="./index.html">Home</a>
<a href="./table_of_contents.html#classes">Classes</a>
<a href="./table_of_contents.html#methods">Methods</a>
</h3>
</nav>
<nav id="search-section" class="section project-section" class="initially-hidden">
<form action="#" method="get" accept-charset="utf-8">
<h3 class="section-header">
<input type="text" name="search" placeholder="Search" id="search-field"
title="Type to search, Up and Down to navigate, Enter to load">
</h3>
</form>
<ul id="search-results" class="initially-hidden"></ul>
</nav>
<div id="file-metadata">
<nav id="file-list-section" class="section">
<h3 class="section-header">Defined In</h3>
<ul>
<li>modules/nfs/manifests/export.pp
<li>modules/nfs/manifests/exports.pp
<li>modules/nfs/manifests/server.pp
<li>modules/nfs/manifests/server/debian.pp
<li>modules/nfs/manifests/server/redhat.pp
<li>modules/nfs/manifests/test.pp
</ul>
</nav>
</div>
<div id="class-metadata">
<!-- Method Quickref -->
<nav id="method-list-section" class="section">
<h3 class="section-header">Methods</h3>
<ul class="link-list">
<li ><a href="#method-i-export">#export</a>
<li ><a href="#method-i-planfile">#planfile</a>
</ul>
</nav>
</div>
<div id="project-metadata">
<nav id="fileindex-section" class="section project-section">
<h3 class="section-header">Pages</h3>
<ul>
<li class="file"><a href="./modules/apache/CHANGELOG_md.html">CHANGELOG</a>
<li class="file"><a href="./modules/apache/CONTRIBUTING_md.html">CONTRIBUTING</a>
<li class="file"><a href="./modules/apache/Gemfile.html">Gemfile</a>
<li class="file"><a href="./modules/apache/LICENSE.html">LICENSE</a>
<li class="file"><a href="./modules/apache/README_md.html">README</a>
<li class="file"><a href="./modules/apache/README_passenger_md.html">README.passenger</a>
<li class="file"><a href="./modules/apache/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/apache/checksums_json.html">checksums.json</a>
<li class="file"><a href="./modules/apache/metadata_json.html">metadata.json</a>
<li class="file"><a href="./modules/apt/CHANGELOG_md.html">CHANGELOG</a>
<li class="file"><a href="./modules/apt/CONTRIBUTING_md.html">CONTRIBUTING</a>
<li class="file"><a href="./modules/apt/Gemfile.html">Gemfile</a>
<li class="file"><a href="./modules/apt/LICENSE.html">LICENSE</a>
<li class="file"><a href="./modules/apt/README_md.html">README</a>
<li class="file"><a href="./modules/apt/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/apt/checksums_json.html">checksums.json</a>
<li class="file"><a href="./modules/apt/metadata_json.html">metadata.json</a>
<li class="file"><a href="./modules/base/Modulefile.html">Modulefile</a>
<li class="file"><a href="./modules/base/README.html">README</a>
<li class="file"><a href="./modules/concat/CHANGELOG_md.html">CHANGELOG</a>
<li class="file"><a href="./modules/concat/CONTRIBUTING_md.html">CONTRIBUTING</a>
<li class="file"><a href="./modules/concat/Gemfile.html">Gemfile</a>
<li class="file"><a href="./modules/concat/LICENSE.html">LICENSE</a>
<li class="file"><a href="./modules/concat/README_md.html">README</a>
<li class="file"><a href="./modules/concat/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/concat/checksums_json.html">checksums.json</a>
<li class="file"><a href="./modules/concat/metadata_json.html">metadata.json</a>
<li class="file"><a href="./modules/firewall/CHANGELOG_md.html">CHANGELOG</a>
<li class="file"><a href="./modules/firewall/CONTRIBUTING_md.html">CONTRIBUTING</a>
<li class="file"><a href="./modules/firewall/Gemfile.html">Gemfile</a>
<li class="file"><a href="./modules/firewall/LICENSE.html">LICENSE</a>
<li class="file"><a href="./modules/firewall/README_markdown.html">README.markdown</a>
<li class="file"><a href="./modules/firewall/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/firewall/checksums_json.html">checksums.json</a>
<li class="file"><a href="./modules/firewall/metadata_json.html">metadata.json</a>
<li class="file"><a href="./modules/heartbeat/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/module_data/Modulefile.html">Modulefile</a>
<li class="file"><a href="./modules/module_data/README_md.html">README</a>
<li class="file"><a href="./modules/module_data/metadata_json.html">metadata.json</a>
<li class="file"><a href="./modules/mysql/CHANGELOG_md.html">CHANGELOG</a>
<li class="file"><a href="./modules/mysql/Gemfile.html">Gemfile</a>
<li class="file"><a href="./modules/mysql/Gemfile_lock.html">Gemfile.lock</a>
<li class="file"><a href="./modules/mysql/LICENSE.html">LICENSE</a>
<li class="file"><a href="./modules/mysql/README_md.html">README</a>
<li class="file"><a href="./modules/mysql/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/mysql/TODO.html">TODO</a>
<li class="file"><a href="./modules/mysql/checksums_json.html">checksums.json</a>
<li class="file"><a href="./modules/mysql/metadata_json.html">metadata.json</a>
<li class="file"><a href="./modules/nginx/CONTRIBUTING_md.html">CONTRIBUTING</a>
<li class="file"><a href="./modules/nginx/Gemfile.html">Gemfile</a>
<li class="file"><a href="./modules/nginx/Gemfile_lock.html">Gemfile.lock</a>
<li class="file"><a href="./modules/nginx/LICENSE_md.html">LICENSE</a>
<li class="file"><a href="./modules/nginx/README_markdown.html">README.markdown</a>
<li class="file"><a href="./modules/nginx/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/nginx/checksums_json.html">checksums.json</a>
<li class="file"><a href="./modules/nginx/composer_json.html">composer.json</a>
<li class="file"><a href="./modules/nginx/data/common_yaml.html">common.yaml</a>
<li class="file"><a href="./modules/nginx/data/hiera_yaml.html">hiera.yaml</a>
<li class="file"><a href="./modules/nginx/data/operatingsystem/SmartOS_yaml.html">SmartOS.yaml</a>
<li class="file"><a href="./modules/nginx/data/osfamily/Archlinux_yaml.html">Archlinux.yaml</a>
<li class="file"><a href="./modules/nginx/data/osfamily/Debian_yaml.html">Debian.yaml</a>
<li class="file"><a href="./modules/nginx/data/osfamily/FreeBSD_yaml.html">FreeBSD.yaml</a>
<li class="file"><a href="./modules/nginx/data/osfamily/Solaris_yaml.html">Solaris.yaml</a>
<li class="file"><a href="./modules/nginx/docs/hiera_md.html">hiera</a>
<li class="file"><a href="./modules/nginx/metadata_json.html">metadata.json</a>
<li class="file"><a href="./modules/profiles/Gemfile.html">Gemfile</a>
<li class="file"><a href="./modules/profiles/README_md.html">README</a>
<li class="file"><a href="./modules/profiles/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/profiles/metadata_json.html">metadata.json</a>
<li class="file"><a href="./modules/roles/Gemfile.html">Gemfile</a>
<li class="file"><a href="./modules/roles/README_md.html">README</a>
<li class="file"><a href="./modules/roles/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/roles/metadata_json.html">metadata.json</a>
<li class="file"><a href="./modules/stdlib/CHANGELOG_md.html">CHANGELOG</a>
<li class="file"><a href="./modules/stdlib/CONTRIBUTING_md.html">CONTRIBUTING</a>
<li class="file"><a href="./modules/stdlib/Gemfile.html">Gemfile</a>
<li class="file"><a href="./modules/stdlib/LICENSE.html">LICENSE</a>
<li class="file"><a href="./modules/stdlib/README_markdown.html">README.markdown</a>
<li class="file"><a href="./modules/stdlib/README_DEVELOPER_markdown.html">README_DEVELOPER.markdown</a>
<li class="file"><a href="./modules/stdlib/README_SPECS_markdown.html">README_SPECS.markdown</a>
<li class="file"><a href="./modules/stdlib/RELEASE_PROCESS_markdown.html">RELEASE_PROCESS.markdown</a>
<li class="file"><a href="./modules/stdlib/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/stdlib/checksums_json.html">checksums.json</a>
<li class="file"><a href="./modules/stdlib/metadata_json.html">metadata.json</a>
<li class="file"><a href="./modules/thing/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/thomas-base/Modulefile.html">Modulefile</a>
<li class="file"><a href="./modules/thomas-base/README.html">README</a>
<li class="file"><a href="./modules/thomas-profiles/Gemfile.html">Gemfile</a>
<li class="file"><a href="./modules/thomas-profiles/README_md.html">README</a>
<li class="file"><a href="./modules/thomas-profiles/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/thomas-profiles/metadata_json.html">metadata.json</a>
<li class="file"><a href="./modules/thomas-roles/Gemfile.html">Gemfile</a>
<li class="file"><a href="./modules/thomas-roles/README_md.html">README</a>
<li class="file"><a href="./modules/thomas-roles/Rakefile.html">Rakefile</a>
<li class="file"><a href="./modules/thomas-roles/metadata_json.html">metadata.json</a>
</ul>
</nav>
<nav id="classindex-section" class="section project-section">
<h3 class="section-header">Class and Module Index</h3>
<ul class="link-list">
<li><a href="./__site__.html">__site__</a>
<li><a href="./admin.html">admin</a>
<li><a href="./admin/__functions__.html">admin::__functions__</a>
<li><a href="./admin/percona_repo.html">admin::percona_repo</a>
<li><a href="./admin/stages.html">admin::stages</a>
<li><a href="./admin/stages/me_first.html">admin::stages::me_first</a>
<li><a href="./admin/stages/me_last.html">admin::stages::me_last</a>
<li><a href="./admin_user.html">admin_user</a>
<li><a href="./apache.html">apache</a>
<li><a href="./apache.cookbook.html">apache.cookbook</a>
<li><a href="./apache.cookbook/apache.html">apache.cookbook::apache</a>
<li><a href="./apache/__types__.html">apache::__types__</a>
<li><a href="./apache/confd.html">apache::confd</a>
<li><a href="./apache/confd/no_accf.html">apache::confd::no_accf</a>
<li><a href="./apache/default_confd_files.html">apache::default_confd_files</a>
<li><a href="./apache/default_mods.html">apache::default_mods</a>
<li><a href="./apache/dev.html">apache::dev</a>
<li><a href="./apache/mod.html">apache::mod</a>
<li><a href="./apache/mod/actions.html">apache::mod::actions</a>
<li><a href="./apache/mod/alias.html">apache::mod::alias</a>
<li><a href="./apache/mod/auth_basic.html">apache::mod::auth_basic</a>
<li><a href="./apache/mod/auth_kerb.html">apache::mod::auth_kerb</a>
<li><a href="./apache/mod/authnz_ldap.html">apache::mod::authnz_ldap</a>
<li><a href="./apache/mod/autoindex.html">apache::mod::autoindex</a>
<li><a href="./apache/mod/cache.html">apache::mod::cache</a>
<li><a href="./apache/mod/cgi.html">apache::mod::cgi</a>
<li><a href="./apache/mod/cgid.html">apache::mod::cgid</a>
<li><a href="./apache/mod/dav.html">apache::mod::dav</a>
<li><a href="./apache/mod/dav_fs.html">apache::mod::dav_fs</a>
<li><a href="./apache/mod/dav_svn.html">apache::mod::dav_svn</a>
<li><a href="./apache/mod/deflate.html">apache::mod::deflate</a>
<li><a href="./apache/mod/dev.html">apache::mod::dev</a>
<li><a href="./apache/mod/dir.html">apache::mod::dir</a>
<li><a href="./apache/mod/disk_cache.html">apache::mod::disk_cache</a>
<li><a href="./apache/mod/event.html">apache::mod::event</a>
<li><a href="./apache/mod/expires.html">apache::mod::expires</a>
<li><a href="./apache/mod/fastcgi.html">apache::mod::fastcgi</a>
<li><a href="./apache/mod/fcgid.html">apache::mod::fcgid</a>
<li><a href="./apache/mod/headers.html">apache::mod::headers</a>
<li><a href="./apache/mod/include.html">apache::mod::include</a>
<li><a href="./apache/mod/info.html">apache::mod::info</a>
<li><a href="./apache/mod/itk.html">apache::mod::itk</a>
<li><a href="./apache/mod/ldap.html">apache::mod::ldap</a>
<li><a href="./apache/mod/mime.html">apache::mod::mime</a>
<li><a href="./apache/mod/mime_magic.html">apache::mod::mime_magic</a>
<li><a href="./apache/mod/negotiation.html">apache::mod::negotiation</a>
<li><a href="./apache/mod/nss.html">apache::mod::nss</a>
<li><a href="./apache/mod/pagespeed.html">apache::mod::pagespeed</a>
<li><a href="./apache/mod/passenger.html">apache::mod::passenger</a>
<li><a href="./apache/mod/perl.html">apache::mod::perl</a>
<li><a href="./apache/mod/peruser.html">apache::mod::peruser</a>
<li><a href="./apache/mod/php.html">apache::mod::php</a>
<li><a href="./apache/mod/prefork.html">apache::mod::prefork</a>
<li><a href="./apache/mod/proxy.html">apache::mod::proxy</a>
<li><a href="./apache/mod/proxy_ajp.html">apache::mod::proxy_ajp</a>
<li><a href="./apache/mod/proxy_balancer.html">apache::mod::proxy_balancer</a>
<li><a href="./apache/mod/proxy_html.html">apache::mod::proxy_html</a>
<li><a href="./apache/mod/proxy_http.html">apache::mod::proxy_http</a>
<li><a href="./apache/mod/python.html">apache::mod::python</a>
<li><a href="./apache/mod/reqtimeout.html">apache::mod::reqtimeout</a>
<li><a href="./apache/mod/rewrite.html">apache::mod::rewrite</a>
<li><a href="./apache/mod/rpaf.html">apache::mod::rpaf</a>
<li><a href="./apache/mod/setenvif.html">apache::mod::setenvif</a>
<li><a href="./apache/mod/speling.html">apache::mod::speling</a>
<li><a href="./apache/mod/ssl.html">apache::mod::ssl</a>
<li><a href="./apache/mod/status.html">apache::mod::status</a>
<li><a href="./apache/mod/suexec.html">apache::mod::suexec</a>
<li><a href="./apache/mod/suphp.html">apache::mod::suphp</a>
<li><a href="./apache/mod/userdir.html">apache::mod::userdir</a>
<li><a href="./apache/mod/vhost_alias.html">apache::mod::vhost_alias</a>
<li><a href="./apache/mod/worker.html">apache::mod::worker</a>
<li><a href="./apache/mod/wsgi.html">apache::mod::wsgi</a>
<li><a href="./apache/mod/xsendfile.html">apache::mod::xsendfile</a>
<li><a href="./apache/package.html">apache::package</a>
<li><a href="./apache/params.html">apache::params</a>
<li><a href="./apache/peruser.html">apache::peruser</a>
<li><a href="./apache/php.html">apache::php</a>
<li><a href="./apache/proxy.html">apache::proxy</a>
<li><a href="./apache/python.html">apache::python</a>
<li><a href="./apache/service.html">apache::service</a>
<li><a href="./apache/ssl.html">apache::ssl</a>
<li><a href="./apache/version.html">apache::version</a>
<li><a href="./apt.html">apt</a>
<li><a href="./apt/__facts__.html">apt::__facts__</a>
<li><a href="./apt/__types__.html">apt::__types__</a>
<li><a href="./apt/apt.html">apt::apt</a>
<li><a href="./apt/backports.html">apt::backports</a>
<li><a href="./apt/debian.html">apt::debian</a>
<li><a href="./apt/debian/testing.html">apt::debian::testing</a>
<li><a href="./apt/debian/unstable.html">apt::debian::unstable</a>
<li><a href="./apt/params.html">apt::params</a>
<li><a href="./apt/release.html">apt::release</a>
<li><a href="./apt/unattended_upgrades.html">apt::unattended_upgrades</a>
<li><a href="./apt/update.html">apt::update</a>
<li><a href="./base.html">base</a>
<li><a href="./base/base.html">base::base</a>
<li><a href="./base/ssh_host.html">base::ssh_host</a>
<li><a href="./concat.html">concat</a>
<li><a href="./concat/__facts__.html">concat::__facts__</a>
<li><a href="./concat/__functions__.html">concat::__functions__</a>
<li><a href="./concat/setup.html">concat::setup</a>
<li><a href="./cookbook.html">cookbook</a>
<li><a href="./cookbook/__functions__.html">cookbook::__functions__</a>
<li><a href="./cron.html">cron</a>
<li><a href="./cron/cron.html">cron::cron</a>
<li><a href="./db.html">db</a>
<li><a href="./db/client.html">db::client</a>
<li><a href="./db/server.html">db::server</a>
<li><a href="./debug.html">debug</a>
<li><a href="./debug/debug.html">debug::debug</a>
<li><a href="./drupal.html">drupal</a>
<li><a href="./drupal/drupal.html">drupal::drupal</a>
<li><a href="./enc.html">enc</a>
<li><a href="./enc/enc.html">enc::enc</a>
<li><a href="./facts.html">facts</a>
<li><a href="./firewall.html">firewall</a>
<li><a href="./firewall/__types__.html">firewall::__types__</a>
<li><a href="./firewall/firewall.html">firewall::firewall</a>
<li><a href="./firewall/linux.html">firewall::linux</a>
<li><a href="./firewall/linux/archlinux.html">firewall::linux::archlinux</a>
<li><a href="./firewall/linux/debian.html">firewall::linux::debian</a>
<li><a href="./firewall/linux/redhat.html">firewall::linux::redhat</a>
<li><a href="./greeting.html">greeting</a>
<li><a href="./greeting/greeting.html">greeting::greeting</a>
<li><a href="./haproxy.html">haproxy</a>
<li><a href="./haproxy/config.html">haproxy::config</a>
<li><a href="./haproxy/master.html">haproxy::master</a>
<li><a href="./haproxy/slave.html">haproxy::slave</a>
<li><a href="./heartbeat.html">heartbeat</a>
<li><a href="./heartbeat/heartbeat.html">heartbeat::heartbeat</a>
<li><a href="./heartbeat/vip.html">heartbeat::vip</a>
<li><a href="./jumpbox.html">jumpbox</a>
<li><a href="./jumpbox/jumpbox.html">jumpbox::jumpbox</a>
<li><a href="./lisa.html">lisa</a>
<li><a href="./module_data.html">module_data</a>
<li><a href="./myfw.html">myfw</a>
<li><a href="./myfw/myfw.html">myfw::myfw</a>
<li><a href="./myfw/post.html">myfw::post</a>
<li><a href="./myfw/pre.html">myfw::pre</a>
<li><a href="./mysql.html">mysql</a>
<li><a href="./mysql.cookbook.html">mysql.cookbook</a>
<li><a href="./mysql.cookbook/mysql.html">mysql.cookbook::mysql</a>
<li><a href="./mysql/__functions__.html">mysql::__functions__</a>
<li><a href="./mysql/__types__.html">mysql::__types__</a>
<li><a href="./mysql/backup.html">mysql::backup</a>
<li><a href="./mysql/bindings.html">mysql::bindings</a>
<li><a href="./mysql/bindings/java.html">mysql::bindings::java</a>
<li><a href="./mysql/bindings/perl.html">mysql::bindings::perl</a>
<li><a href="./mysql/bindings/php.html">mysql::bindings::php</a>
<li><a href="./mysql/bindings/python.html">mysql::bindings::python</a>
<li><a href="./mysql/bindings/ruby.html">mysql::bindings::ruby</a>
<li><a href="./mysql/client.html">mysql::client</a>
<li><a href="./mysql/client/install.html">mysql::client::install</a>
<li><a href="./mysql/params.html">mysql::params</a>
<li><a href="./mysql/server.html">mysql::server</a>
<li><a href="./mysql/server/account_security.html">mysql::server::account_security</a>
<li><a href="./mysql/server/backup.html">mysql::server::backup</a>
<li><a href="./mysql/server/config.html">mysql::server::config</a>
<li><a href="./mysql/server/install.html">mysql::server::install</a>
<li><a href="./mysql/server/monitor.html">mysql::server::monitor</a>
<li><a href="./mysql/server/mysqltuner.html">mysql::server::mysqltuner</a>
<li><a href="./mysql/server/providers.html">mysql::server::providers</a>
<li><a href="./mysql/server/root_password.html">mysql::server::root_password</a>
<li><a href="./mysql/server/service.html">mysql::server::service</a>
<li><a href="./nfs.html">nfs</a>
<li><a href="./nfs/exports.html">nfs::exports</a>
<li><a href="./nfs/server.html">nfs::server</a>
<li><a href="./nfs/server/debian.html">nfs::server::debian</a>
<li><a href="./nfs/server/redhat.html">nfs::server::redhat</a>
<li><a href="./nginx.html">nginx</a>
<li><a href="./nginx/config.html">nginx::config</a>
<li><a href="./nginx/nginx.html">nginx::nginx</a>
<li><a href="./nginx/notice.html">nginx::notice</a>
<li><a href="./nginx/notice/puppet_module_data.html">nginx::notice::puppet_module_data</a>
<li><a href="./nginx/package.html">nginx::package</a>
<li><a href="./nginx/package/archlinux.html">nginx::package::archlinux</a>
<li><a href="./nginx/package/debian.html">nginx::package::debian</a>
<li><a href="./nginx/package/freebsd.html">nginx::package::freebsd</a>
<li><a href="./nginx/package/gentoo.html">nginx::package::gentoo</a>
<li><a href="./nginx/package/redhat.html">nginx::package::redhat</a>
<li><a href="./nginx/package/solaris.html">nginx::package::solaris</a>
<li><a href="./nginx/package/suse.html">nginx::package::suse</a>
<li><a href="./nginx/resource.html">nginx::resource</a>
<li><a href="./nginx/resource/upstream.html">nginx::resource::upstream</a>
<li><a href="./nginx/service.html">nginx::service</a>
<li><a href="./nothing.html">nothing</a>
<li><a href="./nothing/nothing.html">nothing::nothing</a>
<li><a href="./one.html">one</a>
<li><a href="./one/one.html">one::one</a>
<li><a href="./profiles.html">profiles</a>
<li><a href="./profiles/apache.html">profiles::apache</a>
<li><a href="./profiles/base.html">profiles::base</a>
<li><a href="./profiles/profiles.html">profiles::profiles</a>
<li><a href="./puppet.html">puppet</a>
<li><a href="./puppet/puppet.html">puppet::puppet</a>
<li><a href="./roles.html">roles</a>
<li><a href="./roles/roles.html">roles::roles</a>
<li><a href="./roles/webserver.html">roles::webserver</a>
<li><a href="./ssh_user.html">ssh_user</a>
<li><a href="./stdlib.html">stdlib</a>
<li><a href="./stdlib/__facts__.html">stdlib::__facts__</a>
<li><a href="./stdlib/__functions__.html">stdlib::__functions__</a>
<li><a href="./stdlib/__types__.html">stdlib::__types__</a>
<li><a href="./stdlib/stages.html">stdlib::stages</a>
<li><a href="./stdlib/stdlib.html">stdlib::stdlib</a>
<li><a href="./thing.html">thing</a>
<li><a href="./thing/thing.html">thing::thing</a>
<li><a href="./thomas-base.html">thomas-base</a>
<li><a href="./thomas-profiles.html">thomas-profiles</a>
<li><a href="./thomas-roles.html">thomas-roles</a>
<li><a href="./two.html">two</a>
<li><a href="./two/two.html">two::two</a>
<li><a href="./user.html">user</a>
<li><a href="./user/developers.html">user::developers</a>
<li><a href="./user/sysadmins.html">user::sysadmins</a>
<li><a href="./user/virtual.html">user::virtual</a>
<li><a href="./virtual.html">virtual</a>
<li><a href="./virtual/virtual.html">virtual::virtual</a>
<li><a href="./wordpress.html">wordpress</a>
<li><a href="./wordpress/wordpress.html">wordpress::wordpress</a>
</ul>
</nav>
</div>
</nav>
<div id="documentation">
<h1 class="module">module nfs</h1>
<div id="description" class="description">
</div><!-- description -->
<section id="5Buntitled-5D" class="documentation-section">
<!-- Methods -->
<section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
<h3 class="section-header">Public Instance Methods</h3>
<div id="method-i-export" class="method-detail ">
<div class="method-heading">
<span class="method-name">export</span><span
class="method-args">( $where => 'title', $who => '*', $options => 'async,ro', $mount_options => 'defaults', $tag => 'nfs' )</span>
</div>
<div class="method-description">
</div>
</div><!-- export-method -->
<div id="method-i-planfile" class="method-detail ">
<div class="method-heading">
<span class="method-name">planfile</span><span
class="method-args">( $user => 'title', $content )</span>
</div>
<div class="method-description">
</div>
</div><!-- planfile-method -->
</section><!-- public-instance-method-details -->
</section><!-- 5Buntitled-5D -->
</div><!-- documentation -->
<footer id="validator-badges">
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.1.
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
</footer>
|
web/static/javadoc/5.9.0-rc2/acra/org.acra.scheduler/-default-sender-scheduler/-default-sender-scheduler.html
|
ACRA/acra
|
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>DefaultSenderScheduler</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.scheduler/DefaultSenderScheduler/DefaultSenderScheduler/#android.content.Context#org.acra.config.CoreConfiguration/PointingToDeclaration//-535716451">
<div class="breadcrumbs"><a href="../../../index.html">acra</a>/<a href="../index.html">org.acra.scheduler</a>/<a href="index.html">DefaultSenderScheduler</a>/<a href="-default-sender-scheduler.html">DefaultSenderScheduler</a></div>
<div class="cover ">
<h1 class="cover"><span>Default</span><wbr></wbr><span>Sender</span><wbr></wbr><span><span>Scheduler</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="-default-sender-scheduler.html"><span class="token function">DefaultSenderScheduler</span></a><span class="token punctuation">(</span>context<span class="token operator">: </span><a href="https://developer.android.com/reference/kotlin/android/content/Context.html">Context</a><span class="token punctuation">, </span>config<span class="token operator">: </span><a href="../../org.acra.config/-core-configuration/index.html">CoreConfiguration</a><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>
|
public/scaladoc/2.2.4/org/scalatest/Stopper$.html
|
scalatest/scalatest-website
|
<?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>Stopper - ScalaTest 2.2.4 - org.scalatest.Stopper</title>
<meta name="description" content="Stopper - ScalaTest 2.2.4 - org.scalatest.Stopper" />
<meta name="keywords" content="Stopper ScalaTest 2.2.4 org.scalatest.Stopper" />
<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.Stopper$';
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="value">
<!-- 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">
<a href="Stopper.html" title="Go to companion"><img src="../../lib/object_to_trait_big.png" /></a>
<p id="owner"><a href="../package.html" class="extype" name="org">org</a>.<a href="package.html" class="extype" name="org.scalatest">scalatest</a></p>
<h1><a href="Stopper.html" title="Go to companion">Stopper</a></h1>
</div>
<h4 id="signature" class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">object</span>
</span>
<span class="symbol">
<span class="name">Stopper</span>
</span>
</h4>
<div id="comment" class="fullcommenttop"><div class="comment cmt"><p>Companion object to Stopper that holds a factory method that produces a new <code>Stopper</code> whose
<code>stopRequested</code> method returns false until after its <code>requestStop</code> has been
invoked.
</p></div><dl class="attributes block"> <dt>Source</dt><dd><a href="https://github.com/scalatest/scalatest/tree/release-2.2.4-for-scala-2.11-and-2.10/src/main/scala/org/scalatest/Stopper.scala" target="_blank">Stopper.scala</a></dd></dl><div class="toggleContainer block">
<span class="toggle">Linear Supertypes</span>
<div class="superTypes hiddenContent"><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.Stopper"><span>Stopper</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="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="org.scalatest.Stopper#default" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="default:org.scalatest.Stopper"></a>
<a id="default:Stopper"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">default</span><span class="result">: <a href="Stopper.html" class="extype" name="org.scalatest.Stopper">Stopper</a></span>
</span>
</h4>
<p class="shortcomment cmt">Factory method that produces a new <code>Stopper</code> whose
<code>stopRequested</code> method returns false until after its <code>requestStop</code> has been
invoked.</p><div class="fullcomment"><div class="comment cmt"><p>Factory method that produces a new <code>Stopper</code> whose
<code>stopRequested</code> method returns false until after its <code>requestStop</code> has been
invoked.</p><p>The <code>Stopper</code> returned by this method can be safely used by multiple threads concurrently.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a new default stopper
</p></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="scala.AnyRef#equals" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="equals(x$1:Any):Boolean"></a>
<a id="equals(Any):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">equals</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>AnyRef → Any</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="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="scala.AnyRef#hashCode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="hashCode():Int"></a>
<a id="hashCode():Int"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">hashCode</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.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="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="synchronized[T0](x$1:=>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="scala.AnyRef#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="java.lang.String">String</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#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.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>
|
tools/groovy/doc/html/api/groovy/transform/Canonical.html
|
Selventa/model-builder
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (version 1.7.0_11) on Thu Sep 05 22:50:45 CEST 2013 -->
<title>Canonical (Groovy 2.1.7)</title>
<meta name="date" content="2013-09-05">
<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="Canonical (Groovy 2.1.7)";
}
//-->
</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="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="../../groovy/transform/AutoExternalize.html" title="annotation in groovy.transform"><span class="strong">Prev Class</span></a></li>
<li><a href="../../groovy/transform/CompilationUnitAware.html" title="interface in groovy.transform"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?groovy/transform/Canonical.html" target="_top">Frames</a></li>
<li><a href="Canonical.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: </li>
<li>Required | </li>
<li><a href="#annotation_type_optional_element_summary">Optional</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#annotation_type_element_detail">Element</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">groovy.transform</div>
<h2 title="Annotation Type Canonical" class="title">Annotation Type Canonical</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Documented.html?is-external=true" title="class or interface in java.lang.annotation">@Documented</a>
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Retention.html?is-external=true" title="class or interface in java.lang.annotation">@Retention</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Retention.html?is-external=true#value()" title="class or interface in java.lang.annotation">value</a>=<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/RetentionPolicy.html?is-external=true#SOURCE" title="class or interface in java.lang.annotation">SOURCE</a>)
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Target.html?is-external=true" title="class or interface in java.lang.annotation">@Target</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Target.html?is-external=true#value()" title="class or interface in java.lang.annotation">value</a>=<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/ElementType.html?is-external=true#TYPE" title="class or interface in java.lang.annotation">TYPE</a>)
public @interface <span class="strong">Canonical</span></pre>
<div class="block">Class annotation used to assist in the creation of mutable classes.
<p>
It allows you to write classes in this shortened form:
<pre>
<code>@Canonical</code> class Customer {
String first, last
int age
Date since
Collection favItems = ['Food']
def object
}
def d = new Date()
def anyObject = new Object()
def c1 = new Customer(first:'Tom', last:'Jones', age:21, since:d, favItems:['Books', 'Games'], object: anyObject)
def c2 = new Customer('Tom', 'Jones', 21, d, ['Books', 'Games'], anyObject)
assert c1 == c2
</pre>
If you set the autoDefaults flag to true, you don't need to provide all arguments in constructors calls,
in this case all properties not present are initialized to the default value, e.g.:
<pre>
def c3 = new Customer(last: 'Jones', age: 21)
def c4 = new Customer('Tom', 'Jones')
assert null == c3.since
assert 0 == c4.age
assert c3.favItems == ['Food'] && c4.favItems == ['Food']
</pre>
The <code>@Canonical</code> annotation instructs the compiler to execute an
AST transformation which adds positional constructors,
equals, hashCode and a pretty print toString to your class. There are additional
annotations if you only need some of the functionality: <code>@EqualsAndHashCode</code>,
<code>@ToString</code> and <code>@TupleConstructor</code>. In addition, you can add one of
the other annotations if you need to further customize the behavior of the
AST transformation.
<p>
A class created in this way has the following characteristics:
<ul>
<li>A no-arg constructor is provided which allows you to set properties by name using Groovy's normal bean conventions.
<li>Tuple-style constructors are provided which allow you to set properties in the same order as they are defined.
<li>Default <code>equals</code>, <code>hashCode</code> and <code>toString</code> methods are provided based on the property values.
Though not normally required, you may write your own implementations of these methods. For <code>equals</code> and <code>hashCode</code>,
if you do write your own method, it is up to you to obey the general contract for <code>equals</code> methods and supply
a corresponding matching <code>hashCode</code> method.
If you do provide one of these methods explicitly, the default implementation will be made available in a private
"underscore" variant which you can call. E.g., you could provide a (not very elegant) multi-line formatted
<code>toString</code> method for <code>Customer</code> above as follows:
<pre>
String toString() {
_toString().replaceAll(/\(/, '(\n\t').replaceAll(/\)/, '\n)').replaceAll(/, /, '\n\t')
}
</pre>
If an "underscore" version of the respective method already exists, then no default implementation is provided.
</ul>
<p>
If you want similar functionality to what this annotation provides but also require immutability, see the
<code>@</code><a href="../../groovy/transform/Immutable.html" title="annotation in groovy.transform"><code>Immutable</code></a> annotation.
<p>
Limitations:
<ul>
<li>If you explicitly add your own constructors, then the transformation will not add any other constructor to the class</li>
<li>Groovy's normal map-style naming conventions will not be available if the first property
has type <code>LinkedHashMap</code> or if there is a single Map, AbstractMap or HashMap property</li>
</ul></div>
<dl><dt><span class="strong">Since:</span></dt>
<dd>1.8.0</dd>
<dt><span class="strong">Author:</span></dt>
<dd>Paulo Poiati, Paul King</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../groovy/transform/EqualsAndHashCode.html" title="annotation in groovy.transform"><code>EqualsAndHashCode</code></a>,
<a href="../../groovy/transform/ToString.html" title="annotation in groovy.transform"><code>ToString</code></a>,
<a href="../../groovy/transform/TupleConstructor.html" title="annotation in groovy.transform"><code>TupleConstructor</code></a>,
<a href="../../groovy/transform/Immutable.html" title="annotation in groovy.transform"><code>Immutable</code></a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== ANNOTATION TYPE OPTIONAL MEMBER SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="annotation_type_optional_element_summary">
<!-- -->
</a>
<h3>Optional Element Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Optional Element Summary table, listing optional elements, and an explanation">
<caption><span>Optional Elements</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Optional Element and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../groovy/transform/Canonical.html#excludes()">excludes</a></strong></code>
<div class="block">List of field and/or property names to exclude.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../groovy/transform/Canonical.html#includes()">includes</a></strong></code>
<div class="block">List of field and/or property names to include.</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ ANNOTATION TYPE MEMBER DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="annotation_type_element_detail">
<!-- -->
</a>
<h3>Element Detail</h3>
<a name="excludes()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>excludes</h4>
<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] excludes</pre>
<div class="block">List of field and/or property names to exclude.
Must not be used if 'includes' is used. For convenience, a String with comma separated names
can be used in addition to an array (using Groovy's literal list notation) of String values.
If the <code>@Canonical</code> behavior is customised by using it in conjunction with one of the more specific
related annotations (i.e. <code>@ToString</code>, <code>@EqualsAndHashCode</code> or <code>@TupleConstructor</code>), then
the value of this attribute can be overriden within the more specific annotation.</div>
<dl>
<dt>Default:</dt>
<dd>{}</dd>
</dl>
</li>
</ul>
<a name="includes()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>includes</h4>
<pre>public abstract <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] includes</pre>
<div class="block">List of field and/or property names to include.
Must not be used if 'excludes' is used. For convenience, a String with comma separated names
can be used in addition to an array (using Groovy's literal list notation) of String values.
If the <code>@Canonical</code> behavior is customised by using it in conjunction with one of the more specific
related annotations (i.e. <code>@ToString</code>, <code>@EqualsAndHashCode</code> or <code>@TupleConstructor</code>), then
the value of this attribute can be overriden within the more specific annotation.</div>
<dl>
<dt>Default:</dt>
<dd>{}</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="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"><em>Copyright &copy; 2003-2013 The Codehaus. All rights reserved.</em></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../groovy/transform/AutoExternalize.html" title="annotation in groovy.transform"><span class="strong">Prev Class</span></a></li>
<li><a href="../../groovy/transform/CompilationUnitAware.html" title="interface in groovy.transform"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?groovy/transform/Canonical.html" target="_top">Frames</a></li>
<li><a href="Canonical.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: </li>
<li>Required | </li>
<li><a href="#annotation_type_optional_element_summary">Optional</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#annotation_type_element_detail">Element</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
docs/javadoc/de/uni_mannheim/informatik/dws/winter/webtables/class-use/TableMapping.html
|
olehmberg/winter
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_162) on Tue Oct 02 11:58:29 CEST 2018 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class de.uni_mannheim.informatik.dws.winter.webtables.TableMapping (WInte.r 1.3 API)</title>
<meta name="date" content="2018-10-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="Uses of Class de.uni_mannheim.informatik.dws.winter.webtables.TableMapping (WInte.r 1.3 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="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">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?de/uni_mannheim/informatik/dws/winter/webtables/class-use/TableMapping.html" target="_top">Frames</a></li>
<li><a href="TableMapping.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 de.uni_mannheim.informatik.dws.winter.webtables.TableMapping" class="title">Uses of Class<br>de.uni_mannheim.informatik.dws.winter.webtables.TableMapping</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="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a></span><span class="tabEnd"> </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="#de.uni_mannheim.informatik.dws.winter.webtables">de.uni_mannheim.informatik.dws.winter.webtables</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#de.uni_mannheim.informatik.dws.winter.webtables.parsers">de.uni_mannheim.informatik.dws.winter.webtables.parsers</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="de.uni_mannheim.informatik.dws.winter.webtables">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a> in <a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/package-summary.html">de.uni_mannheim.informatik.dws.winter.webtables</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="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/package-summary.html">de.uni_mannheim.informatik.dws.winter.webtables</a> that return <a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a></span><span class="tabEnd"> </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="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a></code></td>
<td class="colLast"><span class="typeNameLabel">Table.</span><code><span class="memberNameLink"><a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/Table.html#getMapping--">getMapping</a></span>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a></code></td>
<td class="colLast"><span class="typeNameLabel">TableMapping.</span><code><span class="memberNameLink"><a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html#read-java.lang.String-">read</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> fileName)</code> </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="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/package-summary.html">de.uni_mannheim.informatik.dws.winter.webtables</a> with parameters of type <a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a></span><span class="tabEnd"> </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">Table.</span><code><span class="memberNameLink"><a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/Table.html#setMapping-de.uni_mannheim.informatik.dws.winter.webtables.TableMapping-">setMapping</a></span>(<a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a> mapping)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="de.uni_mannheim.informatik.dws.winter.webtables.parsers">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a> in <a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/parsers/package-summary.html">de.uni_mannheim.informatik.dws.winter.webtables.parsers</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="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/parsers/package-summary.html">de.uni_mannheim.informatik.dws.winter.webtables.parsers</a> that return <a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a></span><span class="tabEnd"> </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="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a></code></td>
<td class="colLast"><span class="typeNameLabel">JsonTableMapping.</span><code><span class="memberNameLink"><a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/parsers/JsonTableMapping.html#toTableMapping--">toTableMapping</a></span>()</code> </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="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/parsers/package-summary.html">de.uni_mannheim.informatik.dws.winter.webtables.parsers</a> with parameters of type <a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a></span><span class="tabEnd"> </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="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/parsers/JsonTableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables.parsers">JsonTableMapping</a></code></td>
<td class="colLast"><span class="typeNameLabel">JsonTableMapping.</span><code><span class="memberNameLink"><a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/parsers/JsonTableMapping.html#fromTableMapping-de.uni_mannheim.informatik.dws.winter.webtables.TableMapping-">fromTableMapping</a></span>(<a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a> mapping)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/Table.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">Table</a></code></td>
<td class="colLast"><span class="typeNameLabel">JsonTableParser.</span><code><span class="memberNameLink"><a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/parsers/JsonTableParser.html#parseTable-de.uni_mannheim.informatik.dws.winter.webtables.parsers.JsonTableSchema-java.lang.String-de.uni_mannheim.informatik.dws.winter.webtables.TableMapping-">parseTable</a></span>(<a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/parsers/JsonTableSchema.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables.parsers">JsonTableSchema</a> data,
<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> fileName,
<a href="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">TableMapping</a> mapping)</code> </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="../../../../../../../de/uni_mannheim/informatik/dws/winter/webtables/TableMapping.html" title="class in de.uni_mannheim.informatik.dws.winter.webtables">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?de/uni_mannheim/informatik/dws/winter/webtables/class-use/TableMapping.html" target="_top">Frames</a></li>
<li><a href="TableMapping.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 © 2018. All rights reserved.</small></p>
</body>
</html>
|
javadoc/com/unity3d/ads/video/package-tree.html
|
bradgearon/unity-ads-android
|
<!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_31) on Mon Oct 03 09:58:14 UTC 2016 -->
<title>com.unity3d.ads.video Class Hierarchy (lib API)</title>
<meta name="date" content="2016-10-03">
<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="com.unity3d.ads.video Class Hierarchy (lib 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">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>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/unity3d/ads/request/package-tree.html">Prev</a></li>
<li><a href="../../../../com/unity3d/ads/webview/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/unity3d/ads/video/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.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 class="title">Hierarchy For Package com.unity3d.ads.video</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/7/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">android.view.View (implements android.view.accessibility.AccessibilityEventSource, android.graphics.drawable.Drawable.Callback, android.view.KeyEvent.Callback)
<ul>
<li type="circle">android.view.SurfaceView
<ul>
<li type="circle">android.widget.VideoView (implements android.widget.MediaController.MediaPlayerControl)
<ul>
<li type="circle">com.unity3d.ads.video.<a
href="../../../../com/unity3d/ads/video/VideoPlayerView.html"
title="class in com.unity3d.ads.video"><span class="typeNameLink">VideoPlayerView</span></a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
<ul>
<li type="circle">java.lang.<a href="http://docs.oracle.com/javase/7/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">java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Enum</span></a><E> (implements java.lang.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><T>, java.io.<a href="http://docs.oracle.com/javase/7/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
<ul>
<li type="circle">com.unity3d.ads.video.<a
href="../../../../com/unity3d/ads/video/VideoPlayerError.html"
title="enum in com.unity3d.ads.video"><span class="typeNameLink">VideoPlayerError</span></a>
</li>
<li type="circle">com.unity3d.ads.video.<a
href="../../../../com/unity3d/ads/video/VideoPlayerEvent.html"
title="enum in com.unity3d.ads.video"><span class="typeNameLink">VideoPlayerEvent</span></a>
</li>
</ul>
</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>Class</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>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/unity3d/ads/request/package-tree.html">Prev</a></li>
<li><a href="../../../../com/unity3d/ads/webview/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/unity3d/ads/video/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.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>
|
docs/javadoc/2.8/com/fasterxml/jackson/databind/ext/class-use/DOMSerializer.html
|
FasterXML/jackson-databind
|
<!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_79) on Wed Jul 20 08:39:15 PDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class com.fasterxml.jackson.databind.ext.DOMSerializer (jackson-databind 2.8.0 API)</title>
<meta name="date" content="2016-07-20">
<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.fasterxml.jackson.databind.ext.DOMSerializer (jackson-databind 2.8.0 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="../../../../../../com/fasterxml/jackson/databind/ext/DOMSerializer.html" title="class in com.fasterxml.jackson.databind.ext">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/fasterxml/jackson/databind/ext/class-use/DOMSerializer.html" target="_top">Frames</a></li>
<li><a href="DOMSerializer.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.fasterxml.jackson.databind.ext.DOMSerializer" class="title">Uses of Class<br>com.fasterxml.jackson.databind.ext.DOMSerializer</h2>
</div>
<div class="classUseContainer">No usage of com.fasterxml.jackson.databind.ext.DOMSerializer</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="../../../../../../com/fasterxml/jackson/databind/ext/DOMSerializer.html" title="class in com.fasterxml.jackson.databind.ext">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/fasterxml/jackson/databind/ext/class-use/DOMSerializer.html" target="_top">Frames</a></li>
<li><a href="DOMSerializer.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 © 2008–2016 <a href="http://fasterxml.com/">FasterXML</a>. All rights reserved.</small></p>
</body>
</html>
|
index.html
|
BoyuanZH/BoyuanZH.github.io
|
---
layout: page
description: "It Is Never Too Late To Learn."
---
{% for post in paginator.posts %}
<div class="post-preview">
<a href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title">
{{ post.title }}
</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
<div class="post-content-preview">
{{ post.content | strip_html | truncate:200 }}
</div>
</a>
<p class="post-meta">
Posted by {% if post.author %}{{ post.author }}{% else %}{{ site.title }}{% endif %} on {{ post.date | date: "%B %-d, %Y" }}
</p>
</div>
<hr>
{% endfor %}
<!-- Pager -->
{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}
|
javadoc/hibernate_Doc/org/hibernate/type/descriptor/java/class-use/CharacterTypeDescriptor.html
|
serious6/HibernateSimpleProject
|
<!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_45) on Mon Mar 03 10:44:38 EST 2014 -->
<title>Uses of Class org.hibernate.type.descriptor.java.CharacterTypeDescriptor (Hibernate JavaDocs)</title>
<meta name="date" content="2014-03-03">
<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.hibernate.type.descriptor.java.CharacterTypeDescriptor (Hibernate JavaDocs)";
}
//-->
</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/hibernate/type/descriptor/java/CharacterTypeDescriptor.html" title="class in org.hibernate.type.descriptor.java">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/hibernate/type/descriptor/java/class-use/CharacterTypeDescriptor.html" target="_top">Frames</a></li>
<li><a href="CharacterTypeDescriptor.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.hibernate.type.descriptor.java.CharacterTypeDescriptor" class="title">Uses of Class<br>org.hibernate.type.descriptor.java.CharacterTypeDescriptor</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/hibernate/type/descriptor/java/CharacterTypeDescriptor.html" title="class in org.hibernate.type.descriptor.java">CharacterTypeDescriptor</a></span><span class="tabEnd"> </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.hibernate.type.descriptor.java">org.hibernate.type.descriptor.java</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.hibernate.type.descriptor.java">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/hibernate/type/descriptor/java/CharacterTypeDescriptor.html" title="class in org.hibernate.type.descriptor.java">CharacterTypeDescriptor</a> in <a href="../../../../../../org/hibernate/type/descriptor/java/package-summary.html">org.hibernate.type.descriptor.java</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../../../org/hibernate/type/descriptor/java/package-summary.html">org.hibernate.type.descriptor.java</a> declared as <a href="../../../../../../org/hibernate/type/descriptor/java/CharacterTypeDescriptor.html" title="class in org.hibernate.type.descriptor.java">CharacterTypeDescriptor</a></span><span class="tabEnd"> </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/hibernate/type/descriptor/java/CharacterTypeDescriptor.html" title="class in org.hibernate.type.descriptor.java">CharacterTypeDescriptor</a></code></td>
<td class="colLast"><span class="strong">CharacterTypeDescriptor.</span><code><strong><a href="../../../../../../org/hibernate/type/descriptor/java/CharacterTypeDescriptor.html#INSTANCE">INSTANCE</a></strong></code> </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/hibernate/type/descriptor/java/CharacterTypeDescriptor.html" title="class in org.hibernate.type.descriptor.java">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/hibernate/type/descriptor/java/class-use/CharacterTypeDescriptor.html" target="_top">Frames</a></li>
<li><a href="CharacterTypeDescriptor.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 © 2001-2014 <a href="http://redhat.com">Red Hat, Inc.</a> All Rights Reserved.</small></p>
</body>
</html>
|
Documentation/WPILib-doxygen/html/functions_0x65.html
|
rubik951/Neat-Team-1943
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>WPILIB: Class Members</title>
<link href="tabs.css" rel="stylesheet" type="text/css">
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.8 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li class="current"><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li class="current"><a href="functions.html"><span>All</span></a></li>
<li><a href="functions_func.html"><span>Functions</span></a></li>
<li><a href="functions_vars.html"><span>Variables</span></a></li>
<li><a href="functions_type.html"><span>Typedefs</span></a></li>
<li><a href="functions_enum.html"><span>Enumerations</span></a></li>
<li><a href="functions_eval.html"><span>Enumerator</span></a></li>
<li><a href="functions_rela.html"><span>Related Functions</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="functions.html#index_a"><span>a</span></a></li>
<li><a href="functions_0x62.html#index_b"><span>b</span></a></li>
<li><a href="functions_0x63.html#index_c"><span>c</span></a></li>
<li><a href="functions_0x64.html#index_d"><span>d</span></a></li>
<li class="current"><a href="functions_0x65.html#index_e"><span>e</span></a></li>
<li><a href="functions_0x66.html#index_f"><span>f</span></a></li>
<li><a href="functions_0x67.html#index_g"><span>g</span></a></li>
<li><a href="functions_0x68.html#index_h"><span>h</span></a></li>
<li><a href="functions_0x69.html#index_i"><span>i</span></a></li>
<li><a href="functions_0x6a.html#index_j"><span>j</span></a></li>
<li><a href="functions_0x6b.html#index_k"><span>k</span></a></li>
<li><a href="functions_0x6c.html#index_l"><span>l</span></a></li>
<li><a href="functions_0x6d.html#index_m"><span>m</span></a></li>
<li><a href="functions_0x6e.html#index_n"><span>n</span></a></li>
<li><a href="functions_0x6f.html#index_o"><span>o</span></a></li>
<li><a href="functions_0x70.html#index_p"><span>p</span></a></li>
<li><a href="functions_0x71.html#index_q"><span>q</span></a></li>
<li><a href="functions_0x72.html#index_r"><span>r</span></a></li>
<li><a href="functions_0x73.html#index_s"><span>s</span></a></li>
<li><a href="functions_0x74.html#index_t"><span>t</span></a></li>
<li><a href="functions_0x75.html#index_u"><span>u</span></a></li>
<li><a href="functions_0x76.html#index_v"><span>v</span></a></li>
<li><a href="functions_0x77.html#index_w"><span>w</span></a></li>
<li><a href="functions_0x78.html#index_x"><span>x</span></a></li>
<li><a href="functions_0x79.html#index_y"><span>y</span></a></li>
<li><a href="functions_0x7a.html#index_z"><span>z</span></a></li>
<li><a href="functions_0x7e.html#index_~"><span>~</span></a></li>
</ul>
</div>
</div>
<div class="contents">
Here is a list of all class members with links to the classes they belong to:
<p>
<h3><a class="anchor" name="index_e">- e -</a></h3><ul>
<li>e
: <a class="el" href="structLCDSegments__struct.html#8af46cabd3ee9c9242e42f79809b8e5e">LCDSegments_struct</a>
<li>ecc
: <a class="el" href="structDataMatrixDescriptionOptions__struct.html#27cbda68c4f8f6d9be0ba437a6b47fdd">DataMatrixDescriptionOptions_struct</a>
, <a class="el" href="structDataMatrixReport__struct.html#a481777742b099796cc8c4d2e5326738">DataMatrixReport_struct</a>
<li>edge1Contrast
: <a class="el" href="structCaliperReport__struct.html#013604bfcc7f931fe9d940a7ef8185cd">CaliperReport_struct</a>
<li>edge1Coord
: <a class="el" href="structCaliperReport__struct.html#7388d1b1764a1f7bbacc84274182ca63">CaliperReport_struct</a>
<li>edge2Contrast
: <a class="el" href="structCaliperReport__struct.html#e497e44c4bd09a9396ce1588eb783ee0">CaliperReport_struct</a>
<li>edge2Coord
: <a class="el" href="structCaliperReport__struct.html#d6d3ec530de336d45c07aec4a857e4a4">CaliperReport_struct</a>
<li>edgeOptions
: <a class="el" href="structFindEdgeOptions2__struct.html#361125aadfaa43c088463b5905d18050">FindEdgeOptions2_struct</a>
, <a class="el" href="structFindTransformRectOptions2__struct.html#4c7de5ab336a06be1f26895a30164b87">FindTransformRectOptions2_struct</a>
<li>edgeReport
: <a class="el" href="structSearchArcInfo__struct.html#35e3ab8e1bcd86c4c07a72321539d386">SearchArcInfo_struct</a>
, <a class="el" href="structSearchLineInfo__struct.html#32f89487cd9d664c5a5676457bdf53c6">SearchLineInfo_struct</a>
<li>edges
: <a class="el" href="structEdgeReport2__struct.html#873de8db58b737707d22c33d0dc0609e">EdgeReport2_struct</a>
, <a class="el" href="structEdgeLocationReport__struct.html#a3f03ba0b204bbd25ad238e7c74990b3">EdgeLocationReport_struct</a>
<li>edgeThicknessToIgnore
: <a class="el" href="structInspectionOptions__struct.html#d5b031c4adca84ba964a8918935a1cec">InspectionOptions_struct</a>
<li>edgeThreshold
: <a class="el" href="structDataMatrixSearchOptions__struct.html#a242e47abd086d71ac3f51d7d39723f6">DataMatrixSearchOptions_struct</a>
, <a class="el" href="structQRCodeSearchOptions__struct.html#e3ac9367cdd9c6941114e87164538e7f">QRCodeSearchOptions_struct</a>
<li>ellipse
: <a class="el" href="unionGeometricFeature__union.html#eb13857f88933f516a01736af5c92f0c">GeometricFeature_union</a>
<li>Enable()
: <a class="el" href="classPIDController.html#1b272c08b669b2a86f47958aa839b656">PIDController</a>
<li>enableCalibrationSupport
: <a class="el" href="structMatchGeometricPatternAdvancedOptions2__struct.html#64b2739789b0363a1e84353353098763">MatchGeometricPatternAdvancedOptions2_struct</a>
<li>EnableControl()
: <a class="el" href="classCANJaguar.html#f25bed87c7d97429b0472b52f92b186e">CANJaguar</a>
<li>Enabled()
: <a class="el" href="classCompressor.html#951cf9c276faa926510bf7b368efdef8">Compressor</a>
<li>EnableDeadbandElimination()
: <a class="el" href="classPWM.html#9e3edb95ce8aefe94e2d0827798e62a1">PWM</a>
<li>EnableDirectionSensing()
: <a class="el" href="classGearTooth.html#0bec962d2920dc28f8d4ef53b5fa2c65">GearTooth</a>
<li>EnableInterrupts()
: <a class="el" href="classInterruptableSensorBase.html#2c340ba527bd05f588d356ed16ac48f3">InterruptableSensorBase</a>
<li>EnablePWM()
: <a class="el" href="classDigitalOutput.html#89d710e1c8968f956bafe63321728741">DigitalOutput</a>
<li>enables
: <a class="el" href="structDriverStationEnhancedIO_1_1output__t.html#99880000400ed5a4d48423450cc9d878">DriverStationEnhancedIO::DriverStationEnhancedIO::output_t</a>
<li>EnableTermination()
: <a class="el" href="classSerialPort.html#90e27c4191d7ac4e46c614f562505b68">SerialPort</a>
<li>enclosedAngle
: <a class="el" href="structCornerFeature__struct.html#175f1661c23ee1a019d8077a82a39012">CornerFeature_struct</a>
<li>Encoder()
: <a class="el" href="classEncoder.html#3a6d83c9e78a0bef6990558e8cf676d4">Encoder</a>
<li>EncodingType
: <a class="el" href="classCounterBase.html#3ce9d74c53e2571c1951cbb8e40eb88d">CounterBase</a>
<li>end
: <a class="el" href="structLineFloat__struct.html#90fcc40c1d2c12c382f0a7c055b12de7">LineFloat_struct</a>
, <a class="el" href="structLine__struct.html#f93af7c83466ef8080d460336bb603d6">Line_struct</a>
, <a class="el" href="structBestLine__struct.html#d83b221a39020a4c9f4cc50b9b604e21">BestLine_struct</a>
<li>endAngle
: <a class="el" href="structArcInfo2__struct.html#e5e66e315b5567390899bc7846fccae9">ArcInfo2_struct</a>
, <a class="el" href="structConstCurveFeature__struct.html#886fa0c7ca20766d5a3870b56874afe4">ConstCurveFeature_struct</a>
, <a class="el" href="structArcInfo__struct.html#84b4a78d4f3b15196fb7d47ce7f60d47">ArcInfo_struct</a>
, <a class="el" href="structAnnulus__struct.html#57c921016268890aff96637b20530d8c">Annulus_struct</a>
<li>endPoint
: <a class="el" href="structLineFeature__struct.html#eefc7a3dd4ceae11235ef841c94195b7">LineFeature_struct</a>
, <a class="el" href="structLineMatch__struct.html#95a758195d2469f131ad0d7dea84bff1">LineMatch_struct</a>
<li>equation
: <a class="el" href="structBestLine__struct.html#64da6085029db5a6b3be4f7d74a37aaa">BestLine_struct</a>
<li>erosionCount
: <a class="el" href="structOCRProcessingOptions__struct.html#80f9275b34fa855a4aa752458f27542d">OCRProcessingOptions_struct</a>
<li>ERR_BUFFER_FULL
: <a class="el" href="classSmartDashboard.html#38acfe0abdb52d2400f7c394bfda554a573cc39b0a6a042a9cb86f2589b23cab">SmartDashboard</a>
<li>Error()
: <a class="el" href="classError.html#ca339d00ad8481fb4c184f0ece42698b">Error</a>
<li>error
: <a class="el" href="classErrorBase.html#74124eca104892570b174fee2c484a4f">ErrorBase</a>
, <a class="el" href="structBestLine__struct.html#b6021463d6f99397edf29ead4495d93a">BestLine_struct</a>
, <a class="el" href="structBestCircle__struct.html#17c691fd999fd990c3f5c03a9315a699">BestCircle_struct</a>
, <a class="el" href="structBestCircle2__struct.html#bbcacfd77c869ed6a63301ce5a71b797">BestCircle2_struct</a>
, <a class="el" href="structBestEllipse2__struct.html#aa2ac4cc8639fde286723fa2154bbc69">BestEllipse2_struct</a>
<li>ERROR_STRING_TOO_LONG
: <a class="el" href="classSmartDashboard.html#38acfe0abdb52d2400f7c394bfda554a29e68d42303b19280eaeb05630252f67">SmartDashboard</a>
<li>ErrorBase()
: <a class="el" href="classErrorBase.html#f49991441156c7832d7017951427cef2">ErrorBase</a>
<li>errorMap
: <a class="el" href="structCalibrationInfo__struct.html#5b30969974ee91bf9a346b4860408577">CalibrationInfo_struct</a>
<li>exclude
: <a class="el" href="structParticleFilterCriteria2__struct.html#959bf3aa7d6787a582a4b5c835ceefcf">ParticleFilterCriteria2_struct</a>
, <a class="el" href="structParticleFilterCriteria__struct.html#114fda1577f77404f72621abe8f77d84">ParticleFilterCriteria_struct</a>
<li>extractionMode
: <a class="el" href="structCurveOptions__struct.html#39376e85201b336a3a59210fba245be1">CurveOptions_struct</a>
</ul>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Wed Feb 9 11:20:45 2011 for WPILIB by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address>
</body>
</html>
|
OPS/chapter176.html
|
yighu/wenli
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="provider" content="www.cnepub.com"/>
<meta name="builder" content="epubBuilder present by www.cnepub.com"/>
<meta name="right" content="该文档由epubBuilder生成。epubBuilder为掌上书苑(www.cnepub.com)提供的epub制作工具,仅供个人交流与学习使用。在未获得掌上书苑的商业授权前,不得用于任何商业用途。"/>
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<title>第二章</title>
</head>
<body>
<div>
<h3>第二章</h3>
<p>1人奉素祭于耶和华、必献细面、倾油其上、加以乳香、</p>
<p>2携至亚伦子孙为祭司者、取其油面一撮、及所有之乳香、焚之于坛、以为记志、是为馨香之火祭、奉于耶和华、</p>
<p>3素祭之余、当归亚伦、及其子孙、献耶和华之火祭中、此为至圣之品、○</p>
<p>4如奉炉烤之素祭、必取和油之细面饼、或抹油之薄饼、俱无酵、</p>
<p>5如奉釜烤之素祭、必取和油无酵之细面、</p>
<p>6分之为块、倾油其上、是为素祭、</p>
<p>7如奉釜煎之素祭、必以细面与油制之、</p>
<p>8当以所制之素祭、携至耶和华所、奉诸祭司、祭司携至坛前、</p>
<p>9于素祭中、祭司当有所取、以为记志、焚之于坛、是为馨香之火祭、奉于耶和华、</p>
<p>10素祭之余、当归亚伦、及其子孙、献耶和华之火祭中、此为至圣之品、</p>
<p>11凡献耶和华之素祭、皆弗置酵、凡酵与蜜、毋焚为火祭、以奉耶和华、</p>
<p>12献于耶和华为初熟之品则可、惟焚于坛为馨香、则不可、</p>
<p>13凡所献之素祭、必盐以盐、上帝与尔立约之盐、于尔素祭中、不可缺之、尔之诸祭、必以盐献、</p>
<p>14如献初熟之品于耶和华、以为素祭、必奉火烘之麦穗、既捣之新谷、</p>
<p>15倾油其上、加以乳香、是为素祭、</p>
<p>16祭司当由所捣之谷、与油、取其少许、及所有之乳香、焚之以为记志、是为火祭、奉于耶和华、</p>
</div>
</body>
</html>
|
2.6.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/infinispan/remote_cache_container/class-use/RemoteCluster.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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:18 MST 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.wildfly.swarm.config.infinispan.remote_cache_container.RemoteCluster (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.config.infinispan.remote_cache_container.RemoteCluster (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/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">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/config/infinispan/remote_cache_container/class-use/RemoteCluster.html" target="_top">Frames</a></li>
<li><a href="RemoteCluster.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.wildfly.swarm.config.infinispan.remote_cache_container.RemoteCluster" class="title">Uses of Class<br>org.wildfly.swarm.config.infinispan.remote_cache_container.RemoteCluster</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/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a></span><span class="tabEnd"> </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.infinispan">org.wildfly.swarm.config.infinispan</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.wildfly.swarm.config.infinispan.remote_cache_container">org.wildfly.swarm.config.infinispan.remote_cache_container</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config.infinispan">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a> in <a href="../../../../../../../org/wildfly/swarm/config/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</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/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</a> that return <a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a></span><span class="tabEnd"> </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/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a></code></td>
<td class="colLast"><span class="typeNameLabel">RemoteCacheContainer.RemoteCacheContainerResources.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainer.RemoteCacheContainerResources.html#remoteCluster-java.lang.String-">remoteCluster</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> key)</code> </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/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</a> that return types with arguments of type <a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a></span><span class="tabEnd"> </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="https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a>></code></td>
<td class="colLast"><span class="typeNameLabel">RemoteCacheContainer.RemoteCacheContainerResources.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainer.RemoteCacheContainerResources.html#remoteClusters--">remoteClusters</a></span>()</code>
<div class="block">Get the list of RemoteCluster 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/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a></span><span class="tabEnd"> </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/infinispan/RemoteCacheContainer.html" title="type parameter in RemoteCacheContainer">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">RemoteCacheContainer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainer.html#remoteCluster-org.wildfly.swarm.config.infinispan.remote_cache_container.RemoteCluster-">remoteCluster</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a> value)</code>
<div class="block">Add the RemoteCluster 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/infinispan/package-summary.html">org.wildfly.swarm.config.infinispan</a> with type arguments of type <a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a></span><span class="tabEnd"> </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/infinispan/RemoteCacheContainer.html" title="type parameter in RemoteCacheContainer">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">RemoteCacheContainer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/RemoteCacheContainer.html#remoteClusters-java.util.List-">remoteClusters</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a>> value)</code>
<div class="block">Add all RemoteCluster objects to this subresource</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.wildfly.swarm.config.infinispan.remote_cache_container">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a> in <a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/package-summary.html">org.wildfly.swarm.config.infinispan.remote_cache_container</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/infinispan/remote_cache_container/package-summary.html">org.wildfly.swarm.config.infinispan.remote_cache_container</a> with type parameters of type <a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a><T extends <a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a><T>></span></code>
<div class="block">Configuration of a remote cluster.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteClusterConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteClusterConsumer</a><T extends <a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a><T>></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteClusterSupplier.html" title="interface in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteClusterSupplier</a><T extends <a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a>></span></code> </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/infinispan/remote_cache_container/package-summary.html">org.wildfly.swarm.config.infinispan.remote_cache_container</a> that return <a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a></span><span class="tabEnd"> </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/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">RemoteCluster</a></code></td>
<td class="colLast"><span class="typeNameLabel">RemoteClusterSupplier.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/remote_cache_container/RemoteClusterSupplier.html#get--">get</a></span>()</code>
<div class="block">Constructed instance of RemoteCluster 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/infinispan/remote_cache_container/RemoteCluster.html" title="class in org.wildfly.swarm.config.infinispan.remote_cache_container">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/config/infinispan/remote_cache_container/class-use/RemoteCluster.html" target="_top">Frames</a></li>
<li><a href="RemoteCluster.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 © 2020 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
2016.8.1/apidocs/org/wildfly/swarm/config/batch/jberet/class-use/ThreadFactory.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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 Tue Aug 16 17:15:34 EDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.wildfly.swarm.config.batch.jberet.ThreadFactory (Public javadocs 2016.8.1 API)</title>
<meta name="date" content="2016-08-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 Class org.wildfly.swarm.config.batch.jberet.ThreadFactory (Public javadocs 2016.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><a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">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.8.1</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/batch/jberet/class-use/ThreadFactory.html" target="_top">Frames</a></li>
<li><a href="ThreadFactory.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.wildfly.swarm.config.batch.jberet.ThreadFactory" class="title">Uses of Class<br>org.wildfly.swarm.config.batch.jberet.ThreadFactory</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/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a></span><span class="tabEnd"> </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"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.wildfly.swarm.config.batch.jberet">org.wildfly.swarm.config.batch.jberet</a></td>
<td class="colLast"> </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/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</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/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a></span><span class="tabEnd"> </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/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a></code></td>
<td class="colLast"><span class="typeNameLabel">BatchJBeret.BatchJBeretResources.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/BatchJBeret.BatchJBeretResources.html#threadFactory-java.lang.String-">threadFactory</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> key)</code> </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/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a></span><span class="tabEnd"> </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><<a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a>></code></td>
<td class="colLast"><span class="typeNameLabel">BatchJBeret.BatchJBeretResources.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/BatchJBeret.BatchJBeretResources.html#threadFactories--">threadFactories</a></span>()</code>
<div class="block">Get the list of ThreadFactory 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/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a></span><span class="tabEnd"> </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/BatchJBeret.html" title="type parameter in BatchJBeret">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">BatchJBeret.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/BatchJBeret.html#threadFactory-org.wildfly.swarm.config.batch.jberet.ThreadFactory-">threadFactory</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a> value)</code>
<div class="block">Add the ThreadFactory 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/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a></span><span class="tabEnd"> </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/BatchJBeret.html" title="type parameter in BatchJBeret">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">BatchJBeret.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/BatchJBeret.html#threadFactories-java.util.List-">threadFactories</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><<a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a>> value)</code>
<div class="block">Add all ThreadFactory objects to this subresource</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.wildfly.swarm.config.batch.jberet">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a> in <a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/package-summary.html">org.wildfly.swarm.config.batch.jberet</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/batch/jberet/package-summary.html">org.wildfly.swarm.config.batch.jberet</a> with type parameters of type <a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a></span><span class="tabEnd"> </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 </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a><T extends <a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a><T>></span></code>
<div class="block">A thread factory (implementing java.util.concurrent.ThreadFactory).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactoryConsumer.html" title="interface in org.wildfly.swarm.config.batch.jberet">ThreadFactoryConsumer</a><T extends <a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a><T>></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>interface </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactorySupplier.html" title="interface in org.wildfly.swarm.config.batch.jberet">ThreadFactorySupplier</a><T extends <a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a>></span></code> </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/batch/jberet/package-summary.html">org.wildfly.swarm.config.batch.jberet</a> that return <a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a></span><span class="tabEnd"> </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/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">ThreadFactory</a></code></td>
<td class="colLast"><span class="typeNameLabel">ThreadFactorySupplier.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/batch/jberet/ThreadFactorySupplier.html#get--">get</a></span>()</code>
<div class="block">Constructed instance of ThreadFactory 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/batch/jberet/ThreadFactory.html" title="class in org.wildfly.swarm.config.batch.jberet">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.8.1</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/batch/jberet/class-use/ThreadFactory.html" target="_top">Frames</a></li>
<li><a href="ThreadFactory.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 © 2016 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
2.6.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/remoting/class-use/OutboundConnectionSupplier.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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:18 MST 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildfly.swarm.config.remoting.OutboundConnectionSupplier (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 Interface org.wildfly.swarm.config.remoting.OutboundConnectionSupplier (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/config/remoting/OutboundConnectionSupplier.html" title="interface in org.wildfly.swarm.config.remoting">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/config/remoting/class-use/OutboundConnectionSupplier.html" target="_top">Frames</a></li>
<li><a href="OutboundConnectionSupplier.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 Interface org.wildfly.swarm.config.remoting.OutboundConnectionSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.remoting.OutboundConnectionSupplier</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/remoting/OutboundConnectionSupplier.html" title="interface in org.wildfly.swarm.config.remoting">OutboundConnectionSupplier</a></span><span class="tabEnd"> </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"> </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/remoting/OutboundConnectionSupplier.html" title="interface in org.wildfly.swarm.config.remoting">OutboundConnectionSupplier</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/remoting/OutboundConnectionSupplier.html" title="interface in org.wildfly.swarm.config.remoting">OutboundConnectionSupplier</a></span><span class="tabEnd"> </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/Remoting.html" title="type parameter in Remoting">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">Remoting.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Remoting.html#outboundConnection-org.wildfly.swarm.config.remoting.OutboundConnectionSupplier-">outboundConnection</a></span>(<a href="../../../../../../org/wildfly/swarm/config/remoting/OutboundConnectionSupplier.html" title="interface in org.wildfly.swarm.config.remoting">OutboundConnectionSupplier</a> supplier)</code>
<div class="block">Install a supplied OutboundConnection 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/remoting/OutboundConnectionSupplier.html" title="interface in org.wildfly.swarm.config.remoting">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/config/remoting/class-use/OutboundConnectionSupplier.html" target="_top">Frames</a></li>
<li><a href="OutboundConnectionSupplier.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 © 2020 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
Hibernate-source/源代码及重要说明/Hibernate相关资料/hibernate-3.2.0.ga/hibernate-3.2/doc/api/org/hibernate/context/class-use/ThreadLocalSessionContext.CleanupSynch.html
|
renmeng8875/projects
|
<!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.4.2_11) on Sun Oct 15 22:02:20 CDT 2006 -->
<TITLE>
Uses of Class org.hibernate.context.ThreadLocalSessionContext.CleanupSynch (Hibernate API Documentation)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../jdstyle.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Uses of Class org.hibernate.context.ThreadLocalSessionContext.CleanupSynch (Hibernate API Documentation)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= 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=3 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/hibernate/context/ThreadLocalSessionContext.CleanupSynch.html" title="class in org.hibernate.context"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="ThreadLocalSessionContext.CleanupSynch.html" target="_top"><B>NO FRAMES</B></A>
<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.hibernate.context.ThreadLocalSessionContext.CleanupSynch</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
Packages that use <A HREF="../../../../org/hibernate/context/ThreadLocalSessionContext.CleanupSynch.html" title="class in org.hibernate.context">ThreadLocalSessionContext.CleanupSynch</A></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#org.hibernate.context"><B>org.hibernate.context</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="org.hibernate.context"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
Uses of <A HREF="../../../../org/hibernate/context/ThreadLocalSessionContext.CleanupSynch.html" title="class in org.hibernate.context">ThreadLocalSessionContext.CleanupSynch</A> in <A HREF="../../../../org/hibernate/context/package-summary.html">org.hibernate.context</A></FONT></TD>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TD COLSPAN=2>Methods in <A HREF="../../../../org/hibernate/context/package-summary.html">org.hibernate.context</A> that return <A HREF="../../../../org/hibernate/context/ThreadLocalSessionContext.CleanupSynch.html" title="class in org.hibernate.context">ThreadLocalSessionContext.CleanupSynch</A></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected <A HREF="../../../../org/hibernate/context/ThreadLocalSessionContext.CleanupSynch.html" title="class in org.hibernate.context">ThreadLocalSessionContext.CleanupSynch</A></CODE></FONT></TD>
<TD><CODE><B>ThreadLocalSessionContext.</B><B><A HREF="../../../../org/hibernate/context/ThreadLocalSessionContext.html#buildCleanupSynch()">buildCleanupSynch</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<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=3 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/hibernate/context/ThreadLocalSessionContext.CleanupSynch.html" title="class in org.hibernate.context"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="ThreadLocalSessionContext.CleanupSynch.html" target="_top"><B>NO FRAMES</B></A>
<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>
</BODY>
</HTML>
|
docs/bindings/cl_sys/cl_h/constant.CL_MAP_WRITE.html
|
liebharc/clFFT
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=../../cl_sys/constant.CL_MAP_WRITE.html">
</head>
<body>
<p>Redirecting to <a href="../../cl_sys/constant.CL_MAP_WRITE.html">../../cl_sys/constant.CL_MAP_WRITE.html</a>...</p>
<script>location.replace("../../cl_sys/constant.CL_MAP_WRITE.html" + location.search + location.hash);</script>
</body>
</html>
|
2.6.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/class-use/JCASupplier.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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:17 MST 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildfly.swarm.config.JCASupplier (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 Interface org.wildfly.swarm.config.JCASupplier (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/config/JCASupplier.html" title="interface in org.wildfly.swarm.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/config/class-use/JCASupplier.html" target="_top">Frames</a></li>
<li><a href="JCASupplier.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 Interface org.wildfly.swarm.config.JCASupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.JCASupplier</h2>
</div>
<div class="classUseContainer">No usage of org.wildfly.swarm.config.JCASupplier</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/JCASupplier.html" title="interface in org.wildfly.swarm.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/config/class-use/JCASupplier.html" target="_top">Frames</a></li>
<li><a href="JCASupplier.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 © 2020 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
2.3.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/elytron/class-use/KeyStoreSupplier.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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.KeyStoreSupplier (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.KeyStoreSupplier (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/KeyStoreSupplier.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/KeyStoreSupplier.html" target="_top">Frames</a></li>
<li><a href="KeyStoreSupplier.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 Interface org.wildfly.swarm.config.elytron.KeyStoreSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.elytron.KeyStoreSupplier</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/KeyStoreSupplier.html" title="interface in org.wildfly.swarm.config.elytron">KeyStoreSupplier</a></span><span class="tabEnd"> </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"> </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/KeyStoreSupplier.html" title="interface in org.wildfly.swarm.config.elytron">KeyStoreSupplier</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/KeyStoreSupplier.html" title="interface in org.wildfly.swarm.config.elytron">KeyStoreSupplier</a></span><span class="tabEnd"> </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#keyStore-org.wildfly.swarm.config.elytron.KeyStoreSupplier-">keyStore</a></span>(<a href="../../../../../../org/wildfly/swarm/config/elytron/KeyStoreSupplier.html" title="interface in org.wildfly.swarm.config.elytron">KeyStoreSupplier</a> supplier)</code>
<div class="block">Install a supplied KeyStore 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/KeyStoreSupplier.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/KeyStoreSupplier.html" target="_top">Frames</a></li>
<li><a href="KeyStoreSupplier.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 © 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
optimizer/spec/transformers/ServerSideRendering/noscript_then_boilerplate_not_removed_due_to_attribute/input.html
|
google/amp-toolbox
|
<html ⚡>
<head>
<script async src=https://cdn.ampproject.org/v0.js></script>
<script async custom-element=amp-img src=https://cdn.ampproject.org/v0/amp-img-0.1.js></script>
<noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>
<style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;
-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes-amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes-amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes-amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes-amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style>
<link href=https://example.com/favicon.ico rel=icon>
</head>
<body>
<amp-img
height=300
layout=responsive
sizes="(min-width: 320px) 320px, 100vw"
src=https://acme.org/image1.png
width=400>
</amp-img>
<amp-img
height=256
heights="(min-width:500px) 200px, 80%"
layout=responsive
src=https://acme.org/image1.png
width=320>
</amp-img>
<amp-img
height=355
layout=fixed
media="(min-width: 650px) and handheld"
src=wide.jpg
width=466>
</amp-img>
</body>
</html>
|
2017.11.0/apidocs/org/wildfly/swarm/config/infinispan/cache_container/class-use/BehindWriteConsumer.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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 Mon Nov 06 11:57:26 MST 2017 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Interface org.wildfly.swarm.config.infinispan.cache_container.BehindWriteConsumer (BOM: * : All 2017.11.0 API)</title>
<meta name="date" content="2017-11-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 Interface org.wildfly.swarm.config.infinispan.cache_container.BehindWriteConsumer (BOM: * : All 2017.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/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">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.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/infinispan/cache_container/class-use/BehindWriteConsumer.html" target="_top">Frames</a></li>
<li><a href="BehindWriteConsumer.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 Interface org.wildfly.swarm.config.infinispan.cache_container.BehindWriteConsumer" class="title">Uses of Interface<br>org.wildfly.swarm.config.infinispan.cache_container.BehindWriteConsumer</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/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a></span><span class="tabEnd"> </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.infinispan.cache_container">org.wildfly.swarm.config.infinispan.cache_container</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.wildfly.swarm.config.infinispan.cache_container">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a> in <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/package-summary.html">org.wildfly.swarm.config.infinispan.cache_container</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/infinispan/cache_container/package-summary.html">org.wildfly.swarm.config.infinispan.cache_container</a> that return <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a></span><span class="tabEnd"> </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>default <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a><<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="type parameter in BehindWriteConsumer">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">BehindWriteConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html#andThen-org.wildfly.swarm.config.infinispan.cache_container.BehindWriteConsumer-">andThen</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a><<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="type parameter in BehindWriteConsumer">T</a>> after)</code> </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/infinispan/cache_container/package-summary.html">org.wildfly.swarm.config.infinispan.cache_container</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a></span><span class="tabEnd"> </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>default <a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a><<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="type parameter in BehindWriteConsumer">T</a>></code></td>
<td class="colLast"><span class="typeNameLabel">BehindWriteConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html#andThen-org.wildfly.swarm.config.infinispan.cache_container.BehindWriteConsumer-">andThen</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a><<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="type parameter in BehindWriteConsumer">T</a>> after)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/MixedJDBCStore.html" title="type parameter in MixedJDBCStore">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">MixedJDBCStore.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/MixedJDBCStore.html#behindWrite-org.wildfly.swarm.config.infinispan.cache_container.BehindWriteConsumer-">behindWrite</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a> consumer)</code>
<div class="block">Configures a cache store as write-behind instead of write-through.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BinaryJDBCStore.html" title="type parameter in BinaryJDBCStore">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">BinaryJDBCStore.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BinaryJDBCStore.html#behindWrite-org.wildfly.swarm.config.infinispan.cache_container.BehindWriteConsumer-">behindWrite</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a> consumer)</code>
<div class="block">Configures a cache store as write-behind instead of write-through.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/CustomStore.html" title="type parameter in CustomStore">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">CustomStore.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/CustomStore.html#behindWrite-org.wildfly.swarm.config.infinispan.cache_container.BehindWriteConsumer-">behindWrite</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a> consumer)</code>
<div class="block">Configures a cache store as write-behind instead of write-through.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/FileStore.html" title="type parameter in FileStore">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">FileStore.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/FileStore.html#behindWrite-org.wildfly.swarm.config.infinispan.cache_container.BehindWriteConsumer-">behindWrite</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a> consumer)</code>
<div class="block">Configures a cache store as write-behind instead of write-through.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/RemoteStore.html" title="type parameter in RemoteStore">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">RemoteStore.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/RemoteStore.html#behindWrite-org.wildfly.swarm.config.infinispan.cache_container.BehindWriteConsumer-">behindWrite</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a> consumer)</code>
<div class="block">Configures a cache store as write-behind instead of write-through.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StringJDBCStore.html" title="type parameter in StringJDBCStore">T</a></code></td>
<td class="colLast"><span class="typeNameLabel">StringJDBCStore.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/StringJDBCStore.html#behindWrite-org.wildfly.swarm.config.infinispan.cache_container.BehindWriteConsumer-">behindWrite</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">BehindWriteConsumer</a> consumer)</code>
<div class="block">Configures a cache store as write-behind instead of write-through.</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/infinispan/cache_container/BehindWriteConsumer.html" title="interface in org.wildfly.swarm.config.infinispan.cache_container">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.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/infinispan/cache_container/class-use/BehindWriteConsumer.html" target="_top">Frames</a></li>
<li><a href="BehindWriteConsumer.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 © 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
docs/api/org/apache/hadoop/mapred/lib/aggregate/package-tree.html
|
Shmuma/hadoop
|
<!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_26) on Mon May 07 13:00:00 PDT 2012 -->
<TITLE>
org.apache.hadoop.mapred.lib.aggregate Class Hierarchy (Hadoop 0.20.2-cdh3u4 API)
</TITLE>
<META NAME="date" CONTENT="2012-05-07">
<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="org.apache.hadoop.mapred.lib.aggregate Class Hierarchy (Hadoop 0.20.2-cdh3u4 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../org/apache/hadoop/mapred/lib/package-tree.html"><B>PREV</B></A>
<A HREF="../../../../../../org/apache/hadoop/mapred/lib/db/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/hadoop/mapred/lib/aggregate/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<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>
Hierarchy For Package org.apache.hadoop.mapred.lib.aggregate
</H2>
</CENTER>
<DL>
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../../../../overview-tree.html">All Packages</A></DL>
<HR>
<H2>
Class Hierarchy
</H2>
<UL>
<LI TYPE="circle">java.lang.<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><B>Object</B></A><UL>
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/DoubleValueSum.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>DoubleValueSum</B></A> (implements org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregator.html" title="interface in org.apache.hadoop.mapred.lib.aggregate">ValueAggregator</A>)
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/LongValueMax.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>LongValueMax</B></A> (implements org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregator.html" title="interface in org.apache.hadoop.mapred.lib.aggregate">ValueAggregator</A>)
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/LongValueMin.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>LongValueMin</B></A> (implements org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregator.html" title="interface in org.apache.hadoop.mapred.lib.aggregate">ValueAggregator</A>)
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/LongValueSum.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>LongValueSum</B></A> (implements org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregator.html" title="interface in org.apache.hadoop.mapred.lib.aggregate">ValueAggregator</A>)
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/StringValueMax.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>StringValueMax</B></A> (implements org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregator.html" title="interface in org.apache.hadoop.mapred.lib.aggregate">ValueAggregator</A>)
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/StringValueMin.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>StringValueMin</B></A> (implements org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregator.html" title="interface in org.apache.hadoop.mapred.lib.aggregate">ValueAggregator</A>)
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/UniqValueCount.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>UniqValueCount</B></A> (implements org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregator.html" title="interface in org.apache.hadoop.mapred.lib.aggregate">ValueAggregator</A>)
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/UserDefinedValueAggregatorDescriptor.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>UserDefinedValueAggregatorDescriptor</B></A> (implements org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregatorDescriptor.html" title="interface in org.apache.hadoop.mapred.lib.aggregate">ValueAggregatorDescriptor</A>)
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregatorBaseDescriptor.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>ValueAggregatorBaseDescriptor</B></A> (implements org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregatorDescriptor.html" title="interface in org.apache.hadoop.mapred.lib.aggregate">ValueAggregatorDescriptor</A>)
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregatorJob.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>ValueAggregatorJob</B></A><LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregatorJobBase.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>ValueAggregatorJobBase</B></A><K1,V1> (implements org.apache.hadoop.mapred.<A HREF="../../../../../../org/apache/hadoop/mapred/Mapper.html" title="interface in org.apache.hadoop.mapred">Mapper</A><K1,V1,K2,V2>, org.apache.hadoop.mapred.<A HREF="../../../../../../org/apache/hadoop/mapred/Reducer.html" title="interface in org.apache.hadoop.mapred">Reducer</A><K2,V2,K3,V3>)
<UL>
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregatorCombiner.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>ValueAggregatorCombiner</B></A><K1,V1><LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregatorMapper.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>ValueAggregatorMapper</B></A><K1,V1><LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregatorReducer.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>ValueAggregatorReducer</B></A><K1,V1></UL>
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueHistogram.html" title="class in org.apache.hadoop.mapred.lib.aggregate"><B>ValueHistogram</B></A> (implements org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregator.html" title="interface in org.apache.hadoop.mapred.lib.aggregate">ValueAggregator</A>)
</UL>
</UL>
<H2>
Interface Hierarchy
</H2>
<UL>
<LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregator.html" title="interface in org.apache.hadoop.mapred.lib.aggregate"><B>ValueAggregator</B></A><LI TYPE="circle">org.apache.hadoop.mapred.lib.aggregate.<A HREF="../../../../../../org/apache/hadoop/mapred/lib/aggregate/ValueAggregatorDescriptor.html" title="interface in org.apache.hadoop.mapred.lib.aggregate"><B>ValueAggregatorDescriptor</B></A></UL>
<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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../org/apache/hadoop/mapred/lib/package-tree.html"><B>PREV</B></A>
<A HREF="../../../../../../org/apache/hadoop/mapred/lib/db/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/hadoop/mapred/lib/aggregate/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<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 © 2009 The Apache Software Foundation
</BODY>
</HTML>
|
public/scaladoc/2.2.2/org/scalactic/NormMethods.html
|
scalatest/scalatest-website
|
<?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>NormMethods - ScalaTest 2.2.2-SNAPSHOT - org.scalactic.NormMethods</title>
<meta name="description" content="NormMethods - ScalaTest 2.2.2 - SNAPSHOT - org.scalactic.NormMethods" />
<meta name="keywords" content="NormMethods ScalaTest 2.2.2 SNAPSHOT org.scalactic.NormMethods" />
<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.scalactic.NormMethods';
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">
<a href="NormMethods$.html" title="Go to companion"><img src="../../lib/trait_to_object_big.png" /></a>
<p id="owner"><a href="../package.html" class="extype" name="org">org</a>.<a href="package.html" class="extype" name="org.scalactic">scalactic</a></p>
<h1><a href="NormMethods$.html" title="Go to companion">NormMethods</a></h1>
</div>
<h4 id="signature" class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">trait</span>
</span>
<span class="symbol">
<span class="name">NormMethods</span><span class="result"> extends <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
</h4>
<div id="comment" class="fullcommenttop"><div class="comment cmt"><p>Provides an implicit conversion that allows <code>norm</code> to be invoked on any value of type
<code>T</code> for which an implicit <code>Normalization[T]</code> exists.</p><p>Here's an example:</p><p><pre class="stREPL">
scala> import org.scalactic._
import org.scalactic._</p><p>scala> import StringNormalizations._
import StringNormalizations._</p><p>scala> implicit val stringNormalization = lowerCased and trimmed
stringNormalization: org.scalactic.Uniformity[String] = org.scalactic.Uniformity$$anon$1@19ba67ec</p><p>scala> import NormMethods._
import NormMethods._</p><p>scala> val s = " There "
s: String = " There "</p><p>scala> "Hey " + s + "!"
res5: String = Hey There !</p><p>scala> "Hey " + s.norm + "!"
res6: String = Hey there!
</pre>
</p></div><dl class="attributes block"> <dt>Source</dt><dd><a href="https://github.com/scalatest/scalatest/tree/release-2.2.2-for-scala-2.11-and-2.10/src/main/scala/org/scalactic/NormMethods.scala" target="_blank">NormMethods.scala</a></dd></dl><div class="toggleContainer block">
<span class="toggle">Linear Supertypes</span>
<div class="superTypes hiddenContent"><span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div>
</div><div class="toggleContainer block">
<span class="toggle">Known Subclasses</span>
<div class="subClasses hiddenContent"><a href="NormMethods$.html" class="extype" name="org.scalactic.NormMethods">NormMethods</a>, <a href="../scalatest/StreamlinedXmlNormMethods$.html" class="extype" name="org.scalatest.StreamlinedXmlNormMethods">StreamlinedXmlNormMethods</a>, <a href="../scalatest/StreamlinedXmlNormMethods.html" class="extype" name="org.scalatest.StreamlinedXmlNormMethods">StreamlinedXmlNormMethods</a></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.scalactic.NormMethods"><span>NormMethods</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="types" class="types members">
<h3>Type Members</h3>
<ol><li name="org.scalactic.NormMethods.Normalizer" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="Normalizer[T]extendsAnyRef"></a>
<a id="Normalizer[T]:Normalizer[T]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">class</span>
</span>
<span class="symbol">
<a href="NormMethods$Normalizer.html"><span class="name">Normalizer</span></a><span class="tparams">[<span name="T">T</span>]</span><span class="result"> extends <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
</h4>
<p class="comment cmt">Class containing a <code>norm</code> method that normalizes the given object <code>o</code> of type <code>T</code>
via the implicitly passed <code>Normalization[T]</code>.</p>
</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="org.scalactic.NormMethods#convertToNormalizer" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="convertToNormalizer[T](o:T)(implicitnormalization:org.scalactic.Normalization[T]):NormMethods.this.Normalizer[T]"></a>
<a id="convertToNormalizer[T](T)(Normalization[T]):Normalizer[T]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier">implicit </span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">convertToNormalizer</span><span class="tparams">[<span name="T">T</span>]</span><span class="params">(<span name="o">o: <span class="extype" name="org.scalactic.NormMethods.convertToNormalizer.T">T</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="normalization">normalization: <a href="Normalization.html" class="extype" name="org.scalactic.Normalization">Normalization</a>[<span class="extype" name="org.scalactic.NormMethods.convertToNormalizer.T">T</span>]</span>)</span><span class="result">: <a href="NormMethods$Normalizer.html" class="extype" name="org.scalactic.NormMethods.Normalizer">Normalizer</a>[<span class="extype" name="org.scalactic.NormMethods.convertToNormalizer.T">T</span>]</span>
</span>
</h4>
<p class="shortcomment cmt">Implicit conversion that adds a <code>norm</code> method to a value of any type <code>T</code> for which
an implicit <code>Normalization[T]</code> exists.</p><div class="fullcomment"><div class="comment cmt"><p>Implicit conversion that adds a <code>norm</code> method to a value of any type <code>T</code> for which
an implicit <code>Normalization[T]</code> exists.
</p></div><dl class="paramcmts block"><dt class="param">o</dt><dd class="cmt"><p>the object to convert</p></dd><dt>returns</dt><dd class="cmt"><p>a <a href="Normalizer.html"><code>Normalizer</code></a> that enables a <code>norm</code> method to be invoked on the passed object
</p></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="scala.AnyRef#equals" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="equals(x$1:Any):Boolean"></a>
<a id="equals(Any):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">equals</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>AnyRef → Any</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="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="scala.AnyRef#hashCode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="hashCode():Int"></a>
<a id="hashCode():Int"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">hashCode</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.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="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="synchronized[T0](x$1:=>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="scala.AnyRef#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="java.lang.String">String</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#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.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>
|
Hibernate-source/源代码及重要说明/Hibernate相关资料/hibernate-3.2.0.ga/hibernate-3.2/doc/api/org/hibernate/collection/class-use/PersistentMapElementHolder.html
|
renmeng8875/projects
|
<!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.4.2_11) on Sun Oct 15 22:02:20 CDT 2006 -->
<TITLE>
Uses of Class org.hibernate.collection.PersistentMapElementHolder (Hibernate API Documentation)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../jdstyle.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Uses of Class org.hibernate.collection.PersistentMapElementHolder (Hibernate API Documentation)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= 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=3 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/hibernate/collection/PersistentMapElementHolder.html" title="class in org.hibernate.collection"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="PersistentMapElementHolder.html" target="_top"><B>NO FRAMES</B></A>
<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.hibernate.collection.PersistentMapElementHolder</B></H2>
</CENTER>
No usage of org.hibernate.collection.PersistentMapElementHolder
<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=3 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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/hibernate/collection/PersistentMapElementHolder.html" title="class in org.hibernate.collection"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="PersistentMapElementHolder.html" target="_top"><B>NO FRAMES</B></A>
<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>
</BODY>
</HTML>
|
nutrif-web/lib/angular/docs/partials/guide/filter.html
|
LADOSSIFPB/nutrif
|
<a href='https://github.com/angular/angular.js/edit/v1.4.x/docs/content/guide/filter.ngdoc?message=docs(guide%2FFilters)%3A%20describe%20your%20change...' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a>
<p>A filter formats the value of an expression for display to the user. They can be used in view templates,
controllers or services and it is easy to define your own filter.</p>
<p>The underlying API is the <a href="api/ng/provider/$filterProvider"><code>filterProvider</code></a>.</p>
<h2 id="using-filters-in-view-templates">Using filters in view templates</h2>
<p>Filters can be applied to expressions in view templates using the following syntax:</p>
<pre><code>{{ expression | filter }}
</code></pre>
<p>E.g. the markup <code>{{ 12 | currency }}</code> formats the number 12 as a currency using the <a href="api/ng/filter/currency"><code>currency</code></a>
filter. The resulting value is <code>$12.00</code>.</p>
<p>Filters can be applied to the result of another filter. This is called "chaining" and uses
the following syntax:</p>
<pre><code>{{ expression | filter1 | filter2 | ... }}
</code></pre>
<p>Filters may have arguments. The syntax for this is</p>
<pre><code>{{ expression | filter:argument1:argument2:... }}
</code></pre>
<p>E.g. the markup <code>{{ 1234 | number:2 }}</code> formats the number 1234 with 2 decimal points using the
<a href="api/ng/filter/number"><code>number</code></a> filter. The resulting value is <code>1,234.00</code>.</p>
<h2 id="using-filters-in-controllers-services-and-directives">Using filters in controllers, services, and directives</h2>
<p>You can also use filters in controllers, services, and directives. For this, inject a dependency
with the name <code><filterName>Filter</code> to your controller/service/directive. E.g. using the dependency
<code>numberFilter</code> will inject the number filter. The injected argument is a function that takes the
value to format as first argument and filter parameters starting with the second argument.</p>
<p>The example below uses the filter called <a href="api/ng/filter/filter"><code>filter</code></a>.
This filter reduces arrays into sub arrays based on
conditions. The filter can be applied in the view template with markup like
<code>{{ctrl.array | filter:'a'}}</code>, which would do a fulltext search for "a".
However, using a filter in a view template will reevaluate the filter on
every digest, which can be costly if the array is big.</p>
<p>The example below therefore calls the filter directly in the controller.
By this, the controller is able to call the filter only when needed (e.g. when the data is loaded from the backend
or the filter expression is changed).</p>
<p>
<div>
<a ng-click="openPlunkr('examples/example-example29', $event)" class="btn pull-right">
<i class="glyphicon glyphicon-edit"> </i>
Edit in Plunker</a>
<div class="runnable-example"
path="examples/example-example29"
module="FilterInControllerModule">
<div class="runnable-example-file"
name="index.html"
language="html"
type="html">
<pre><code><div ng-controller="FilterController as ctrl"> <div> All entries: <span ng-repeat="entry in ctrl.array">{{entry.name}} </span> </div> <div> Entries that contain an "a": <span ng-repeat="entry in ctrl.filteredArray">{{entry.name}} </span> </div> </div></code></pre>
</div>
<div class="runnable-example-file"
name="script.js"
language="js"
type="js">
<pre><code>angular.module('FilterInControllerModule', []). controller('FilterController', ['filterFilter', function(filterFilter) { this.array = [ {name: 'Tobias'}, {name: 'Jeff'}, {name: 'Brian'}, {name: 'Igor'}, {name: 'James'}, {name: 'Brad'} ]; this.filteredArray = filterFilter(this.array, 'a'); }]);</code></pre>
</div>
<iframe class="runnable-example-frame" src="examples/example-example29/index.html" name="example-example29"></iframe>
</div>
</div>
</p>
<h2 id="creating-custom-filters">Creating custom filters</h2>
<p>Writing your own filter is very easy: just register a new filter factory function with
your module. Internally, this uses the <a href="api/ng/provider/$filterProvider"><code>filterProvider</code></a>.
This factory function should return a new filter function which takes the input value
as the first argument. Any filter arguments are passed in as additional arguments to the filter
function.</p>
<p>The filter function should be a <a href="http://en.wikipedia.org/wiki/Pure_function">pure function</a>, which
means that it should be stateless and idempotent. Angular relies on these properties and executes
the filter only when the inputs to the function change.</p>
<div class="alert alert-warning">
<strong>Note:</strong> Filter names must be valid angular <a href="guide/expression"><code>Expressions</code></a> identifiers, such as <code>uppercase</code> or <code>orderBy</code>.
Names with special characters, such as hyphens and dots, are not allowed. If you wish to namespace
your filters, then you can use capitalization (<code>myappSubsectionFilterx</code>) or underscores
(<code>myapp_subsection_filterx</code>).
</div>
<p>The following sample filter reverses a text string. In addition, it conditionally makes the
text upper-case.</p>
<p>
<div>
<a ng-click="openPlunkr('examples/example-example30', $event)" class="btn pull-right">
<i class="glyphicon glyphicon-edit"> </i>
Edit in Plunker</a>
<div class="runnable-example"
path="examples/example-example30"
module="myReverseFilterApp">
<div class="runnable-example-file"
name="index.html"
language="html"
type="html">
<pre><code><div ng-controller="MyController"> <input ng-model="greeting" type="text"><br> No filter: {{greeting}}<br> Reverse: {{greeting|reverse}}<br> Reverse + uppercase: {{greeting|reverse:true}}<br> </div></code></pre>
</div>
<div class="runnable-example-file"
name="script.js"
language="js"
type="js">
<pre><code>angular.module('myReverseFilterApp', []) .filter('reverse', function() { return function(input, uppercase) { input = input || ''; var out = ""; for (var i = 0; i < input.length; i++) { out = input.charAt(i) + out; } // conditional based on optional argument if (uppercase) { out = out.toUpperCase(); } return out; }; }) .controller('MyController', ['$scope', function($scope) { $scope.greeting = 'hello'; }]);</code></pre>
</div>
<iframe class="runnable-example-frame" src="examples/example-example30/index.html" name="example-example30"></iframe>
</div>
</div>
</p>
<h2 id="stateful-filters">Stateful filters</h2>
<p>It is strongly discouraged to write filters that are stateful, because the execution of those can't
be optimized by Angular, which often leads to performance issues. Many stateful filters can be
converted into stateless filters just by exposing the hidden state as a model and turning it into an
argument for the filter.</p>
<p>If you however do need to write a stateful filter, you have to mark the filter as <code>$stateful</code>, which
means that it will be executed one or more times during the each <code>$digest</code> cycle.</p>
<p>
<div>
<a ng-click="openPlunkr('examples/example-example31', $event)" class="btn pull-right">
<i class="glyphicon glyphicon-edit"> </i>
Edit in Plunker</a>
<div class="runnable-example"
path="examples/example-example31"
module="myStatefulFilterApp">
<div class="runnable-example-file"
name="index.html"
language="html"
type="html">
<pre><code><div ng-controller="MyController"> Input: <input ng-model="greeting" type="text"><br> Decoration: <input ng-model="decoration.symbol" type="text"><br> No filter: {{greeting}}<br> Decorated: {{greeting | decorate}}<br> </div></code></pre>
</div>
<div class="runnable-example-file"
name="script.js"
language="js"
type="js">
<pre><code>angular.module('myStatefulFilterApp', []) .filter('decorate', ['decoration', function(decoration) { function decorateFilter(input) { return decoration.symbol + input + decoration.symbol; } decorateFilter.$stateful = true; return decorateFilter; }]) .controller('MyController', ['$scope', 'decoration', function($scope, decoration) { $scope.greeting = 'hello'; $scope.decoration = decoration; }]) .value('decoration', {symbol: '*'});</code></pre>
</div>
<iframe class="runnable-example-frame" src="examples/example-example31/index.html" name="example-example31"></iframe>
</div>
</div>
</p>
<h2 id="testing-custom-filters">Testing custom filters</h2>
<p>See the <a href="http://docs.angularjs.org/tutorial/step_09#test">phonecat tutorial</a> for an example.</p>
|
public/scaladoc/2.1.7/org/scalatest/matchers/Matcher$AndFullyMatchWord.html
|
scalatest/scalatest-website
|
<?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>AndFullyMatchWord - ScalaTest 2.1.7 - org.scalatest.matchers.Matcher.AndFullyMatchWord</title>
<meta name="description" content="AndFullyMatchWord - ScalaTest 2.1.7 - org.scalatest.matchers.Matcher.AndFullyMatchWord" />
<meta name="keywords" content="AndFullyMatchWord ScalaTest 2.1.7 org.scalatest.matchers.Matcher.AndFullyMatchWord" />
<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.matchers.Matcher$AndFullyMatchWord';
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="package.html" class="extype" name="org.scalatest.matchers">matchers</a>.<a href="Matcher.html" class="extype" name="org.scalatest.matchers.Matcher">Matcher</a></p>
<h1>AndFullyMatchWord</h1>
</div>
<h4 id="signature" class="signature">
<span class="modifier_kind">
<span class="modifier">final </span>
<span class="kind">class</span>
</span>
<span class="symbol">
<span class="name">AndFullyMatchWord</span><span class="result"> extends <span class="extype" name="scala.AnyRef">AnyRef</span></span>
</span>
</h4>
<div id="comment" class="fullcommenttop"><div class="comment cmt"><p>This class is part of the ScalaTest matchers DSL. Please see the documentation for <a href="../Matchers.html"><code>Matchers</code></a> for an overview of
the matchers DSL.
</p></div><dl class="attributes block"> <dt>Source</dt><dd><a href="https://github.com/scalatest/scalatest/tree/release-2.1.7-for-scala-2.10/src/main/scala/org/scalatest/matchers/Matcher.scala" target="_blank">Matcher.scala</a></dd></dl><div class="toggleContainer block">
<span class="toggle">Linear Supertypes</span>
<div class="superTypes hiddenContent"><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.matchers.Matcher.AndFullyMatchWord"><span>AndFullyMatchWord</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.matchers.Matcher.AndFullyMatchWord#<init>" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped">
<a id="<init>():Matcher.this.AndFullyMatchWord"></a>
<a id="<init>:AndFullyMatchWord"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">new</span>
</span>
<span class="symbol">
<span class="name">AndFullyMatchWord</span><span class="params">()</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="scala.AnyRef#equals" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="equals(x$1:Any):Boolean"></a>
<a id="equals(Any):Boolean"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">equals</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>AnyRef → Any</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="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="scala.AnyRef#hashCode" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="hashCode():Int"></a>
<a id="hashCode():Int"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">hashCode</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.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="org.scalatest.matchers.Matcher.AndFullyMatchWord#regex" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="regex(regex:scala.util.matching.Regex):org.scalatest.matchers.Matcher[TwithString]"></a>
<a id="regex(Regex):Matcher[TwithString]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">regex</span><span class="params">(<span name="regex">regex: <span class="extype" name="scala.util.matching.Regex">Regex</span></span>)</span><span class="result">: <a href="Matcher.html" class="extype" name="org.scalatest.matchers.Matcher">Matcher</a>[<span class="extype" name="org.scalatest.matchers.Matcher.T">T</span> with <span class="extype" name="scala.Predef.String">String</span>]</span>
</span>
</h4>
<p class="shortcomment cmt">This method enables the following syntax:</p><div class="fullcomment"><div class="comment cmt"><p>This method enables the following syntax:</p><p><pre class="stHighlighted">
aMatcher and fullyMatch regex (decimalRegex)
^
</pre>
</p></div></div>
</li><li name="org.scalatest.matchers.Matcher.AndFullyMatchWord#regex" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="regex(regexWithGroups:org.scalatest.words.RegexWithGroups):org.scalatest.matchers.Matcher[TwithString]"></a>
<a id="regex(RegexWithGroups):Matcher[TwithString]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">regex</span><span class="params">(<span name="regexWithGroups">regexWithGroups: <a href="../words/RegexWithGroups.html" class="extype" name="org.scalatest.words.RegexWithGroups">RegexWithGroups</a></span>)</span><span class="result">: <a href="Matcher.html" class="extype" name="org.scalatest.matchers.Matcher">Matcher</a>[<span class="extype" name="org.scalatest.matchers.Matcher.T">T</span> with <span class="extype" name="scala.Predef.String">String</span>]</span>
</span>
</h4>
<p class="shortcomment cmt">This method enables the following syntax:</p><div class="fullcomment"><div class="comment cmt"><p>This method enables the following syntax:</p><p><pre class="stHighlighted">
aMatcher and fullyMatch regex (<span class="stQuotedString">"a(b*)c"</span> withGroup <span class="stQuotedString">"bb"</span>)
^
</pre>
</p></div></div>
</li><li name="org.scalatest.matchers.Matcher.AndFullyMatchWord#regex" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="regex(regexString:String):org.scalatest.matchers.Matcher[TwithString]"></a>
<a id="regex(String):Matcher[TwithString]"></a>
<h4 class="signature">
<span class="modifier_kind">
<span class="modifier"></span>
<span class="kind">def</span>
</span>
<span class="symbol">
<span class="name">regex</span><span class="params">(<span name="regexString">regexString: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <a href="Matcher.html" class="extype" name="org.scalatest.matchers.Matcher">Matcher</a>[<span class="extype" name="org.scalatest.matchers.Matcher.T">T</span> with <span class="extype" name="scala.Predef.String">String</span>]</span>
</span>
</h4>
<p class="shortcomment cmt">This method enables the following syntax:</p><div class="fullcomment"><div class="comment cmt"><p>This method enables the following syntax:</p><p><pre class="stHighlighted">
aMatcher and fullyMatch regex (decimal)
^
</pre>
</p></div></div>
</li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped">
<a id="synchronized[T0](x$1:=>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="scala.AnyRef#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="java.lang.String">String</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#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.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>
|
documentation/javadoc/com/amazonaws/retry/RetryPolicy.html
|
TomNong/Project2-Intel-Edison
|
<!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_80) on Thu Oct 15 19:26:57 UTC 2015 -->
<title>RetryPolicy (AWS SDK for Java - 1.10.27)</title>
<meta name="date" content="2015-10-15">
<link rel="stylesheet" type="text/css" href="../../../JavaDoc.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RetryPolicy (AWS SDK for Java - 1.10.27)";
}
//-->
</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="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em>
<!-- Scripts for Syntax Highlighter START-->
<script id="syntaxhighlight_script_core" type="text/javascript" src = "http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/resources/syntaxhighlight/scripts/shCore.js">
</script>
<script id="syntaxhighlight_script_java" type="text/javascript" src = "http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/resources/syntaxhighlight/scripts/shBrushJava.js">
</script>
<link id="syntaxhighlight_css_core" rel="stylesheet" type="text/css" href = "http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/resources/syntaxhighlight/styles/shCoreDefault.css"/>
<link id="syntaxhighlight_css_theme" rel="stylesheet" type="text/css" href = "http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/resources/syntaxhighlight/styles/shThemeDefault.css"/>
<!-- Scripts for Syntax Highlighter END-->
<div>
<!-- BEGIN-SECTION -->
<div id="divsearch" style="float:left;">
<span id="lblsearch" for="searchQuery">
<label>Search</label>
</span>
<form id="nav-search-form" target="_parent" method="get" action="http://docs.aws.amazon.com/search/doc-search.html#facet_doc_guide=API+Reference&facet_doc_product=AWS+SDK+for+Java">
<div id="nav-searchfield-outer" class="nav-sprite">
<div class="nav-searchfield-inner nav-sprite">
<div id="nav-searchfield-width">
<input id="nav-searchfield" name="searchQuery">
</div>
</div>
</div>
<div id="nav-search-button" class="nav-sprite">
<input alt="" id="nav-search-button-inner" type="image">
</div>
<input name="searchPath" type="hidden" value="documentation-guide" />
<input name="this_doc_product" type="hidden" value="AWS SDK for Java" />
<input name="this_doc_guide" type="hidden" value="API Reference" />
<input name="doc_locale" type="hidden" value="en_us" />
</form>
</div>
<!-- END-SECTION -->
<!-- BEGIN-FEEDBACK-SECTION -->
<div id="feedback-section">
<h3>Did this page help you?</h3>
<div id="feedback-link-sectioin">
<a id="feedback_yes" target="_blank" style="display:inline;">Yes</a>
<a id="feedback_no" target="_blank" style="display:inline;">No</a>
<a id="go_cti" target="_blank" style="display:inline;">Tell us about it...</a>
</div>
</div>
<script type="text/javascript">
window.onload = function(){
/* Dynamically add feedback links */
var javadoc_root_name = "/javadoc/";
var javadoc_path = location.href.substring(0, location.href.lastIndexOf(javadoc_root_name) + javadoc_root_name.length);
var file_path = location.href.substring(location.href.lastIndexOf(javadoc_root_name) + javadoc_root_name.length);
var feedback_yes_url = javadoc_path + "javadoc-resources/feedbackyes.html?topic_id=";
var feedback_no_url = javadoc_path + "javadoc-resources/feedbackno.html?topic_id=";
var feedback_tellmore_url = "https://aws-portal.amazon.com/gp/aws/html-forms-controller/documentation/aws_doc_feedback_04?service_name=Java-Ref&file_name=";
if(file_path != "overview-frame.html") {
var file_name = file_path.replace(/[/.]/g, '_');
document.getElementById("feedback_yes").setAttribute("href", feedback_yes_url + file_name);
document.getElementById("feedback_no").setAttribute("href", feedback_no_url + file_name);
document.getElementById("go_cti").setAttribute("href", feedback_tellmore_url + file_name);
} else {
// hide the search box and the feeback links in overview-frame page,
// show "AWS SDK for Java" instead.
document.getElementById("feedback-section").outerHTML = "AWS SDK for Java";
document.getElementById("divsearch").outerHTML = "";
}
};
</script>
<!-- END-FEEDBACK-SECTION -->
</div>
</em></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../com/amazonaws/retry/PredefinedRetryPolicies.SDKDefaultRetryCondition.html" title="class in com.amazonaws.retry"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../com/amazonaws/retry/RetryPolicy.BackoffStrategy.html" title="interface in com.amazonaws.retry"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?com/amazonaws/retry/RetryPolicy.html" target="_top">Frames</a></li>
<li><a href="RetryPolicy.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: </li>
<li><a href="#nested_class_summary">Nested</a> | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </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.amazonaws.retry</div>
<h2 title="Class RetryPolicy" class="title">Class RetryPolicy</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>com.amazonaws.retry.RetryPolicy</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>@Immutable
public final class <span class="strong">RetryPolicy</span>
extends java.lang.Object</pre>
<div class="block">Retry policy that can be configured on a specific service client using
<a href="../../../com/amazonaws/ClientConfiguration.html" title="class in com.amazonaws"><code>ClientConfiguration</code></a>. This class is immutable, therefore safe to be
shared by multiple clients.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../com/amazonaws/ClientConfiguration.html" title="class in com.amazonaws"><code>ClientConfiguration</code></a>,
<a href="../../../com/amazonaws/retry/PredefinedRetryPolicies.html" title="class in com.amazonaws.retry"><code>PredefinedRetryPolicies</code></a></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>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static interface </code></td>
<td class="colLast"><code><strong><a href="../../../com/amazonaws/retry/RetryPolicy.BackoffStrategy.html" title="interface in com.amazonaws.retry">RetryPolicy.BackoffStrategy</a></strong></code>
<div class="block">The hook for providing custom back-off strategy to control the sleep time
between retries.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static interface </code></td>
<td class="colLast"><code><strong><a href="../../../com/amazonaws/retry/RetryPolicy.RetryCondition.html" title="interface in com.amazonaws.retry">RetryPolicy.RetryCondition</a></strong></code>
<div class="block">The hook for providing custom condition on whether a failed request
should be retried.</div>
</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"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../com/amazonaws/retry/RetryPolicy.html#RetryPolicy(com.amazonaws.retry.RetryPolicy.RetryCondition,%20com.amazonaws.retry.RetryPolicy.BackoffStrategy,%20int,%20boolean)">RetryPolicy</a></strong>(<a href="../../../com/amazonaws/retry/RetryPolicy.RetryCondition.html" title="interface in com.amazonaws.retry">RetryPolicy.RetryCondition</a> retryCondition,
<a href="../../../com/amazonaws/retry/RetryPolicy.BackoffStrategy.html" title="interface in com.amazonaws.retry">RetryPolicy.BackoffStrategy</a> backoffStrategy,
int maxErrorRetry,
boolean honorMaxErrorRetryInClientConfig)</code>
<div class="block">Constructs a new retry policy.</div>
</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"> </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="../../../com/amazonaws/retry/RetryPolicy.BackoffStrategy.html" title="interface in com.amazonaws.retry">RetryPolicy.BackoffStrategy</a></code></td>
<td class="colLast"><code><strong><a href="../../../com/amazonaws/retry/RetryPolicy.html#getBackoffStrategy()">getBackoffStrategy</a></strong>()</code>
<div class="block">Returns the back-off strategy included in this retry policy.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../com/amazonaws/retry/RetryPolicy.html#getMaxErrorRetry()">getMaxErrorRetry</a></strong>()</code>
<div class="block">Returns the maximum number of retry attempts.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../com/amazonaws/retry/RetryPolicy.RetryCondition.html" title="interface in com.amazonaws.retry">RetryPolicy.RetryCondition</a></code></td>
<td class="colLast"><code><strong><a href="../../../com/amazonaws/retry/RetryPolicy.html#getRetryCondition()">getRetryCondition</a></strong>()</code>
<div class="block">Returns the retry condition included in this retry policy.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../com/amazonaws/retry/RetryPolicy.html#isMaxErrorRetryInClientConfigHonored()">isMaxErrorRetryInClientConfigHonored</a></strong>()</code>
<div class="block">Returns whether this retry policy should honor the max error retry set in
ClientConfiguration.</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 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="RetryPolicy(com.amazonaws.retry.RetryPolicy.RetryCondition, com.amazonaws.retry.RetryPolicy.BackoffStrategy, int, boolean)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>RetryPolicy</h4>
<pre>public RetryPolicy(<a href="../../../com/amazonaws/retry/RetryPolicy.RetryCondition.html" title="interface in com.amazonaws.retry">RetryPolicy.RetryCondition</a> retryCondition,
<a href="../../../com/amazonaws/retry/RetryPolicy.BackoffStrategy.html" title="interface in com.amazonaws.retry">RetryPolicy.BackoffStrategy</a> backoffStrategy,
int maxErrorRetry,
boolean honorMaxErrorRetryInClientConfig)</pre>
<div class="block">Constructs a new retry policy. See <a href="../../../com/amazonaws/retry/PredefinedRetryPolicies.html" title="class in com.amazonaws.retry"><code>PredefinedRetryPolicies</code></a> for
some pre-defined policy components, and also the default policies used by
SDK.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>retryCondition</code> - Retry condition on whether a specific request and exception
should be retried. If null value is specified, the SDK'
default retry condition is used.</dd><dd><code>backoffStrategy</code> - Back-off strategy for controlling how long the next retry
should wait. If null value is specified, the SDK' default
exponential back-off strategy is used.</dd><dd><code>maxErrorRetry</code> - Maximum number of retry attempts for failed requests.</dd><dd><code>honorMaxErrorRetryInClientConfig</code> - Whether this retry policy should honor the max error retry set
by <a href="../../../com/amazonaws/ClientConfiguration.html#setMaxErrorRetry(int)"><code>ClientConfiguration.setMaxErrorRetry(int)</code></a></dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../com/amazonaws/ClientConfiguration.html" title="class in com.amazonaws"><code>ClientConfiguration</code></a>,
<a href="../../../com/amazonaws/retry/PredefinedRetryPolicies.html" title="class in com.amazonaws.retry"><code>PredefinedRetryPolicies</code></a></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="getRetryCondition()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRetryCondition</h4>
<pre>public <a href="../../../com/amazonaws/retry/RetryPolicy.RetryCondition.html" title="interface in com.amazonaws.retry">RetryPolicy.RetryCondition</a> getRetryCondition()</pre>
<div class="block">Returns the retry condition included in this retry policy.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The retry condition included in this retry policy.</dd></dl>
</li>
</ul>
<a name="getBackoffStrategy()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBackoffStrategy</h4>
<pre>public <a href="../../../com/amazonaws/retry/RetryPolicy.BackoffStrategy.html" title="interface in com.amazonaws.retry">RetryPolicy.BackoffStrategy</a> getBackoffStrategy()</pre>
<div class="block">Returns the back-off strategy included in this retry policy.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The back-off strategy included in this retry policy.</dd></dl>
</li>
</ul>
<a name="getMaxErrorRetry()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMaxErrorRetry</h4>
<pre>public int getMaxErrorRetry()</pre>
<div class="block">Returns the maximum number of retry attempts.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>The maximum number of retry attempts.</dd></dl>
</li>
</ul>
<a name="isMaxErrorRetryInClientConfigHonored()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>isMaxErrorRetryInClientConfigHonored</h4>
<pre>public boolean isMaxErrorRetryInClientConfigHonored()</pre>
<div class="block">Returns whether this retry policy should honor the max error retry set in
ClientConfiguration.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>Whether this retry policy should honor the max error retry set in
ClientConfiguration</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../com/amazonaws/ClientConfiguration.html#setMaxErrorRetry(int)"><code>ClientConfiguration.setMaxErrorRetry(int)</code></a></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="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em>
<div>
<!-- Script for Syntax Highlighter START -->
<script type="text/javascript">
SyntaxHighlighter.all()
</script>
<!-- Script for Syntax Highlighter END -->
</div>
<script src="http://a0.awsstatic.com/chrome/js/1.0.46/jquery.1.9.js" type="text/javascript"></script>
<script>jQuery.noConflict();</script>
<script>
jQuery(function ($) {
$("div.header").prepend('<!--REGION_DISCLAIMER_DO_NOT_REMOVE-->');
});
</script>
<!-- BEGIN-URCHIN-TRACKER -->
<script src="http://l0.awsstatic.com/js/urchin.js" type="text/javascript"></script>
<script type="text/javascript">urchinTracker();</script>
<!-- END-URCHIN-TRACKER -->
<!-- SiteCatalyst code version: H.25.2. Copyright 1996-2012 Adobe, Inc. All Rights Reserved.
More info available at http://www.omniture.com -->
<script language="JavaScript" type="text/javascript" src="https://media.amazonwebservices.com/js/sitecatalyst/s_code.min.js (view-source:https://media.amazonwebservices.com/js/sitecatalyst/s_code.min.js)" />
<script language="JavaScript" type="text/javascript">
<!--
// Documentation Service Name
s.prop66='AWS SDK for Java';
s.eVar66='D=c66';
// Documentation Guide Name
s.prop65='API Reference';
s.eVar65='D=c65';
var s_code=s.t();if(s_code)document.write(s_code)
//-->
</script>
<script language="JavaScript" type="text/javascript">
<!--if(navigator.appVersion.indexOf('MSIE')>=0)document.write(unescape('%3C')+'\!-'+'-')
//-->
</script>
<noscript>
<img src="http://amazonwebservices.d2.sc.omtrdc.net/b/ss/awsamazondev/1/H.25.2--NS/0" height="1" width="1" border="0" alt="" />
</noscript>
<!--/DO NOT REMOVE/-->
<!-- End SiteCatalyst code version: H.25.2. -->
</em></div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../com/amazonaws/retry/PredefinedRetryPolicies.SDKDefaultRetryCondition.html" title="class in com.amazonaws.retry"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../com/amazonaws/retry/RetryPolicy.BackoffStrategy.html" title="interface in com.amazonaws.retry"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?com/amazonaws/retry/RetryPolicy.html" target="_top">Frames</a></li>
<li><a href="RetryPolicy.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: </li>
<li><a href="#nested_class_summary">Nested</a> | </li>
<li>Field | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </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 © 2013 Amazon Web Services, Inc. All Rights Reserved.
</small></p>
</body>
</html>
|
buildtools/gcc-arm-none-eabi-6-2017-q2/share/doc/gcc-arm-none-eabi/html/gdb/Conditional-Init-Constructs.html
|
ATM-HSW/mbed_target
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Copyright (C) 1988-2017 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being "Free Software" and "Free Software Needs
Free Documentation", with the Front-Cover Texts being "A GNU Manual,"
and with the Back-Cover Texts as in (a) below.
(a) The FSF's Back-Cover Text is: "You are free to copy and modify
this GNU Manual. Buying copies from GNU Press supports the FSF in
developing GNU and promoting software freedom." -->
<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
<head>
<title>Debugging with GDB: Conditional Init Constructs</title>
<meta name="description" content="Debugging with GDB: Conditional Init Constructs">
<meta name="keywords" content="Debugging with GDB: Conditional Init Constructs">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="Concept-Index.html#Concept-Index" rel="index" title="Concept Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="Readline-Init-File.html#Readline-Init-File" rel="up" title="Readline Init File">
<link href="Sample-Init-File.html#Sample-Init-File" rel="next" title="Sample Init File">
<link href="Readline-Init-File-Syntax.html#Readline-Init-File-Syntax" rel="prev" title="Readline Init File Syntax">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.indentedblock {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
div.smalllisp {margin-left: 3.2em}
kbd {font-style:oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:nowrap}
span.nolinebreak {white-space:nowrap}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
-->
</style>
</head>
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="Conditional-Init-Constructs"></a>
<div class="header">
<p>
Next: <a href="Sample-Init-File.html#Sample-Init-File" accesskey="n" rel="next">Sample Init File</a>, Previous: <a href="Readline-Init-File-Syntax.html#Readline-Init-File-Syntax" accesskey="p" rel="prev">Readline Init File Syntax</a>, Up: <a href="Readline-Init-File.html#Readline-Init-File" accesskey="u" rel="up">Readline Init File</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html#Concept-Index" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<a name="Conditional-Init-Constructs-1"></a>
<h4 class="subsection">32.3.2 Conditional Init Constructs</h4>
<p>Readline implements a facility similar in spirit to the conditional
compilation features of the C preprocessor which allows key
bindings and variable settings to be performed as the result
of tests. There are four parser directives used.
</p>
<dl compact="compact">
<dt><code>$if</code></dt>
<dd><p>The <code>$if</code> construct allows bindings to be made based on the
editing mode, the terminal being used, or the application using
Readline. The text of the test extends to the end of the line;
no characters are required to isolate it.
</p>
<dl compact="compact">
<dt><code>mode</code></dt>
<dd><p>The <code>mode=</code> form of the <code>$if</code> directive is used to test
whether Readline is in <code>emacs</code> or <code>vi</code> mode.
This may be used in conjunction
with the ‘<samp>set keymap</samp>’ command, for instance, to set bindings in
the <code>emacs-standard</code> and <code>emacs-ctlx</code> keymaps only if
Readline is starting out in <code>emacs</code> mode.
</p>
</dd>
<dt><code>term</code></dt>
<dd><p>The <code>term=</code> form may be used to include terminal-specific
key bindings, perhaps to bind the key sequences output by the
terminal’s function keys. The word on the right side of the
‘<samp>=</samp>’ is tested against both the full name of the terminal and
the portion of the terminal name before the first ‘<samp>-</samp>’. This
allows <code>sun</code> to match both <code>sun</code> and <code>sun-cmd</code>,
for instance.
</p>
</dd>
<dt><code>application</code></dt>
<dd><p>The <var>application</var> construct is used to include
application-specific settings. Each program using the Readline
library sets the <var>application name</var>, and you can test for
a particular value.
This could be used to bind key sequences to functions useful for
a specific program. For instance, the following command adds a
key sequence that quotes the current or previous word in Bash:
</p><div class="example">
<pre class="example">$if Bash
# Quote the current or previous word
"\C-xq": "\eb\"\ef\""
$endif
</pre></div>
</dd>
</dl>
</dd>
<dt><code>$endif</code></dt>
<dd><p>This command, as seen in the previous example, terminates an
<code>$if</code> command.
</p>
</dd>
<dt><code>$else</code></dt>
<dd><p>Commands in this branch of the <code>$if</code> directive are executed if
the test fails.
</p>
</dd>
<dt><code>$include</code></dt>
<dd><p>This directive takes a single filename as an argument and reads commands
and bindings from that file.
For example, the following directive reads from <samp>/etc/inputrc</samp>:
</p><div class="example">
<pre class="example">$include /etc/inputrc
</pre></div>
</dd>
</dl>
<hr>
<div class="header">
<p>
Next: <a href="Sample-Init-File.html#Sample-Init-File" accesskey="n" rel="next">Sample Init File</a>, Previous: <a href="Readline-Init-File-Syntax.html#Readline-Init-File-Syntax" accesskey="p" rel="prev">Readline Init File Syntax</a>, Up: <a href="Readline-Init-File.html#Readline-Init-File" accesskey="u" rel="up">Readline Init File</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html#Concept-Index" title="Index" rel="index">Index</a>]</p>
</div>
</body>
</html>
|
docs/javadoc/2.1/com/fasterxml/jackson/databind/introspect/class-use/VisibilityChecker.Std.html
|
FasterXML/jackson-databind
|
<!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:24 PDT 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class com.fasterxml.jackson.databind.introspect.VisibilityChecker.Std (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="Uses of Class com.fasterxml.jackson.databind.introspect.VisibilityChecker.Std (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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?com/fasterxml/jackson/databind/introspect//class-useVisibilityChecker.Std.html" target="_top"><B>FRAMES</B></A>
<A HREF="VisibilityChecker.Std.html" target="_top"><B>NO FRAMES</B></A>
<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>com.fasterxml.jackson.databind.introspect.VisibilityChecker.Std</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="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#com.fasterxml.jackson.databind.introspect"><B>com.fasterxml.jackson.databind.introspect</B></A></TD>
<TD>Functionality needed for Bean introspection, required for detecting
accessors and mutators for Beans, as well as locating and handling
method annotations. </TD>
</TR>
</TABLE>
<P>
<A NAME="com.fasterxml.jackson.databind.introspect"><!-- --></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="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A> in <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/package-summary.html">com.fasterxml.jackson.databind.introspect</A></FONT></TH>
</TR>
</TABLE>
<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="../../../../../../com/fasterxml/jackson/databind/introspect/package-summary.html">com.fasterxml.jackson.databind.introspect</A> declared as <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected static <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></CODE></FONT></TD>
<TD><CODE><B>VisibilityChecker.Std.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html#DEFAULT">DEFAULT</A></B></CODE>
<BR>
This is the canonical base instance, configured with default
visibility values</TD>
</TR>
</TABLE>
<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="../../../../../../com/fasterxml/jackson/databind/introspect/package-summary.html">com.fasterxml.jackson.databind.introspect</A> that return <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></CODE></FONT></TD>
<TD><CODE><B>VisibilityChecker.Std.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html#defaultInstance()">defaultInstance</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></CODE></FONT></TD>
<TD><CODE><B>VisibilityChecker.Std.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html#with(com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility)">with</A></B>(<A HREF="http://fasterxml.github.com/jackson-annotations/javadoc/2.1.0/com/fasterxml/jackson/annotation/JsonAutoDetect.Visibility.html?is-external=true" title="class or interface in com.fasterxml.jackson.annotation">JsonAutoDetect.Visibility</A> v)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></CODE></FONT></TD>
<TD><CODE><B>VisibilityChecker.Std.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html#with(com.fasterxml.jackson.annotation.JsonAutoDetect)">with</A></B>(<A HREF="http://fasterxml.github.com/jackson-annotations/javadoc/2.1.0/com/fasterxml/jackson/annotation/JsonAutoDetect.html?is-external=true" title="class or interface in com.fasterxml.jackson.annotation">JsonAutoDetect</A> ann)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></CODE></FONT></TD>
<TD><CODE><B>VisibilityChecker.Std.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html#withCreatorVisibility(com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility)">withCreatorVisibility</A></B>(<A HREF="http://fasterxml.github.com/jackson-annotations/javadoc/2.1.0/com/fasterxml/jackson/annotation/JsonAutoDetect.Visibility.html?is-external=true" title="class or interface in com.fasterxml.jackson.annotation">JsonAutoDetect.Visibility</A> v)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></CODE></FONT></TD>
<TD><CODE><B>VisibilityChecker.Std.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html#withFieldVisibility(com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility)">withFieldVisibility</A></B>(<A HREF="http://fasterxml.github.com/jackson-annotations/javadoc/2.1.0/com/fasterxml/jackson/annotation/JsonAutoDetect.Visibility.html?is-external=true" title="class or interface in com.fasterxml.jackson.annotation">JsonAutoDetect.Visibility</A> v)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></CODE></FONT></TD>
<TD><CODE><B>VisibilityChecker.Std.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html#withGetterVisibility(com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility)">withGetterVisibility</A></B>(<A HREF="http://fasterxml.github.com/jackson-annotations/javadoc/2.1.0/com/fasterxml/jackson/annotation/JsonAutoDetect.Visibility.html?is-external=true" title="class or interface in com.fasterxml.jackson.annotation">JsonAutoDetect.Visibility</A> v)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></CODE></FONT></TD>
<TD><CODE><B>VisibilityChecker.Std.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html#withIsGetterVisibility(com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility)">withIsGetterVisibility</A></B>(<A HREF="http://fasterxml.github.com/jackson-annotations/javadoc/2.1.0/com/fasterxml/jackson/annotation/JsonAutoDetect.Visibility.html?is-external=true" title="class or interface in com.fasterxml.jackson.annotation">JsonAutoDetect.Visibility</A> v)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></CODE></FONT></TD>
<TD><CODE><B>VisibilityChecker.Std.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html#withSetterVisibility(com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility)">withSetterVisibility</A></B>(<A HREF="http://fasterxml.github.com/jackson-annotations/javadoc/2.1.0/com/fasterxml/jackson/annotation/JsonAutoDetect.Visibility.html?is-external=true" title="class or interface in com.fasterxml.jackson.annotation">JsonAutoDetect.Visibility</A> v)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect">VisibilityChecker.Std</A></CODE></FONT></TD>
<TD><CODE><B>VisibilityChecker.Std.</B><B><A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html#withVisibility(com.fasterxml.jackson.annotation.PropertyAccessor, com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility)">withVisibility</A></B>(<A HREF="http://fasterxml.github.com/jackson-annotations/javadoc/2.1.0/com/fasterxml/jackson/annotation/PropertyAccessor.html?is-external=true" title="class or interface in com.fasterxml.jackson.annotation">PropertyAccessor</A> method,
<A HREF="http://fasterxml.github.com/jackson-annotations/javadoc/2.1.0/com/fasterxml/jackson/annotation/JsonAutoDetect.Visibility.html?is-external=true" title="class or interface in com.fasterxml.jackson.annotation">JsonAutoDetect.Visibility</A> v)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/fasterxml/jackson/databind/introspect/VisibilityChecker.Std.html" title="class in com.fasterxml.jackson.databind.introspect"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?com/fasterxml/jackson/databind/introspect//class-useVisibilityChecker.Std.html" target="_top"><B>FRAMES</B></A>
<A HREF="VisibilityChecker.Std.html" target="_top"><B>NO FRAMES</B></A>
<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 © 2012 <a href="http://fasterxml.com/">FasterXML</a>. All Rights Reserved.
</BODY>
</HTML>
|
nutrif-web/lib/angular/docs/examples/example-example29/index-production.html
|
LADOSSIFPB/nutrif
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example29-production</title>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="FilterInControllerModule">
<div ng-controller="FilterController as ctrl">
<div>
All entries:
<span ng-repeat="entry in ctrl.array">{{entry.name}} </span>
</div>
<div>
Entries that contain an "a":
<span ng-repeat="entry in ctrl.filteredArray">{{entry.name}} </span>
</div>
</div>
</body>
</html>
|
index-community.html
|
xiaoping378/openshift-docs
|
<!DOCTYPE html>
<!--[if IE 8]><html class="ie8"><![endif]-->
<!--[if IE 9]><html class="ie9"><![endif]-->
<!--[if gt IE 9]><!-->
<html>
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="google-site-verification" content="9jyGvNki3NSELTYJ7t_XbF-YQZ8jjfm7LqQQGNq4SSg">
<title>Home | OpenShift Origin Documentation</title>
<link href="https://docs.openshift.org/" rel="canonical">
<link href="https://assets.openshift.net/content/subdomain/touch-icon-precomposed.png" rel="apple-touch-icon-precomposed" type="image/png">
<link href="https://assets.openshift.net/content/subdomain/favicon32x32.png" rel="shortcut icon" type="image/png">
<!--[if IE]><link rel="shortcut icon" href="https://assets.openshift.net/content/subdomain/favicon.ico"><![endif]-->
<link href="https://assets.openshift.net/content/subdomain.css" rel="stylesheet" media="screen, print">
<link href="_stylesheets/community-home.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://assets.openshift.net/content/html5shiv.js"></script>
<script src="https://assets.openshift.net/content/respond.js"></script>
<![endif]-->
<!-- IE8 requires jQuery and Bootstrap JS to load in head to prevent rendering bugs -->
<!-- IE8 requires jQuery v1.x -->
<script src="https://assets.openshift.net/content/subdomain.js"></script>
<script async src="//www.google-analytics.com/analytics.js" type="text/javascript"></script>
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-40375612-1', 'openshift.org');
ga('set', 'forceSSL', true);
ga('send', 'pageview');
</script>
</head>
<body class="hub hub-home">
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="masthead clearfix">
<div class="inner">
<a href="http://www.openshift.org"><img class="masthead-brand" src="_images/origin_logo.png" alt="OpenShift Logo" /></a>
<nav>
<ul class="nav masthead-nav">
<li><a href="https://www.openshift.org">Origin Home</a></li>
<li><a href="https://www.openshift.org/#contribute">Contribute</a></li>
</ul>
</nav>
</div>
</div>
<div class="inner cover">
<h1 class="cover-heading">Documentation</h1>
<p class="lead"><strong>OpenShift Origin</strong> is an application platform where developers and teams can build, test, deploy, and run their applications. OpenShift Origin also serves as the upstream code base upon which <a href="http://www.openshift.com">OpenShift Online</a> and <a href="https://www.openshift.com/container-platform/">OpenShift Container Platform</a> are built.</p>
<div class="btn-group">
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" aria-expanded="false">Select Version<span class="caret"></span></button>
<ul class="dropdown-menu" role="menu">
<li><a href="latest/"><i class="fa fa-arrow-circle-o-right"></i> Origin Latest</a></li>
<li><a href="1.2/"><i class="fa fa-arrow-circle-o-right"></i> Origin 1.2</a></li>
</ul>
</div>
</div>
<div class="mastfoot">
<div class="inner">
<p>
<a href="https://www.redhat.com/">
<img src="https://assets.openshift.net/app/assets/redhat.svg" alt="Red Hat">
</a>
<a href="https://hub.openshift.com/quickstarts/92-do-it-yourself-0-1" title="Powered by OpenShift Online with the DIY Cartridge">
<img src="https://www.openshift.com/sites/default/files/images/powered-transparent-white.png" alt="Powered by OpenShift Online">
</a>
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
|
assets/css/theme/metamorphosis.css
|
lalvarezcu/subjectsplus
|
/*
Document : metamorphosis
Created on : 13-Mar-2011, 1:34:28 PM
Author : agdarby
Description: One of the backgrounds for SubjectdPlus
*/
body {
background: url(../../images/admin/bug_bg.jpg) repeat;
}
|
src/nav.transparent.html
|
robcalcroft/YRM2015
|
<nav>
<div class="nav-left text-light"><a href='/'>YRM<span class='faded'>2015</span></a></div>
<div class="nav-right">
<ul>
<li><a href="schedule">Schedule</a></li>
<li><a href="location">Location</a></li>
<li><a href="speakers">Speakers</a></li>
<li id='nav-more'><a href="#more">More <i class="fa fa-navicon faded"></i></a></li>
<li><a href="register"><button class='register'>Register</button></a></li>
</ul>
</div>
</nav>
|
2.6.0.Final/apidocs/org/wildfly/swarm/config/logging/logging_profile/PeriodicRotatingFileHandlerSupplier.html
|
wildfly-swarm/wildfly-swarm-javadocs
|
<!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:04 MST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>PeriodicRotatingFileHandlerSupplier (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="PeriodicRotatingFileHandlerSupplier (BOM: * : All 2.6.0.Final 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/PeriodicRotatingFileHandlerSupplier.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.6.0.Final</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../org/wildfly/swarm/config/logging/logging_profile/PeriodicRotatingFileHandlerConsumer.html" title="interface in org.wildfly.swarm.config.logging.logging_profile"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../../org/wildfly/swarm/config/logging/logging_profile/RootLogger.html" title="class in org.wildfly.swarm.config.logging.logging_profile"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/logging/logging_profile/PeriodicRotatingFileHandlerSupplier.html" target="_top">Frames</a></li>
<li><a href="PeriodicRotatingFileHandlerSupplier.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </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.logging.logging_profile</div>
<h2 title="Interface PeriodicRotatingFileHandlerSupplier" class="title">Interface PeriodicRotatingFileHandlerSupplier<T extends <a href="../../../../../../org/wildfly/swarm/config/logging/logging_profile/PeriodicRotatingFileHandler.html" title="class in org.wildfly.swarm.config.logging.logging_profile">PeriodicRotatingFileHandler</a>></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">PeriodicRotatingFileHandlerSupplier<T extends <a href="../../../../../../org/wildfly/swarm/config/logging/logging_profile/PeriodicRotatingFileHandler.html" title="class in org.wildfly.swarm.config.logging.logging_profile">PeriodicRotatingFileHandler</a>></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"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </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/logging/logging_profile/PeriodicRotatingFileHandler.html" title="class in org.wildfly.swarm.config.logging.logging_profile">PeriodicRotatingFileHandler</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/logging/logging_profile/PeriodicRotatingFileHandlerSupplier.html#get--">get</a></span>()</code>
<div class="block">Constructed instance of PeriodicRotatingFileHandler 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/logging/logging_profile/PeriodicRotatingFileHandler.html" title="class in org.wildfly.swarm.config.logging.logging_profile">PeriodicRotatingFileHandler</a> get()</pre>
<div class="block">Constructed instance of PeriodicRotatingFileHandler 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/PeriodicRotatingFileHandlerSupplier.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.6.0.Final</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../../org/wildfly/swarm/config/logging/logging_profile/PeriodicRotatingFileHandlerConsumer.html" title="interface in org.wildfly.swarm.config.logging.logging_profile"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../../../org/wildfly/swarm/config/logging/logging_profile/RootLogger.html" title="class in org.wildfly.swarm.config.logging.logging_profile"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/wildfly/swarm/config/logging/logging_profile/PeriodicRotatingFileHandlerSupplier.html" target="_top">Frames</a></li>
<li><a href="PeriodicRotatingFileHandlerSupplier.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: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </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 © 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p>
</body>
</html>
|
html/cssgrid_02/ex04_master01/index.html
|
mertnuhoglu/study
|
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>RotaPlan</title>
</head>
<body>
<div class="container">
<header>
<nav class="navbar navbar-light bg-light navbar-expand-md">
<a class="navbar-brand" href="#">RotaPlan</a>
<ul class="navbar-nav">
<li class="nav-item"><a href="/plan" class="nav-link">Planla</a></li>
<li class="nav-item"><a href="/manage" class="nav-link">Yönet</a></li>
<li class="nav-item"><a href="/report" class="nav-link">Raporlama</a></li>
<li class="nav-item"><a href="/" class="nav-link">Çıkış</a></li>
</ul>
<a href="#" class="nav-link">#username</a>
</nav>
</header>
<aside class="sidebar">Sidebar</aside>
<article>Article</article>
<footer>Footer</footer>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>
</html>
|
surfers/wlt/srome.html
|
chicofilho/fst
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FST - Summer Romero</title>
<meta name="description" content="Keep track of the statistics from Summer Romero. Average heat score, heat wins, heat wins percentage, epic heats road to the final">
<meta name="author" content="">
<link rel="apple-touch-icon" sizes="57x57" href="/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta property="og:title" content="Fantasy Surfing tips"/>
<meta property="og:image" content="https://fantasysurfingtips.com/img/just_waves.png"/>
<meta property="og:description" content="See how great Summer Romero is surfing this year"/>
<!-- Bootstrap Core CSS - Uses Bootswatch Flatly Theme: https://bootswatch.com/flatly/ -->
<link href="https://fantasysurfingtips.com/css/bootstrap.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="https://fantasysurfingtips.com/css/freelancer.css" rel="stylesheet">
<link href="https://cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.css" rel="stylesheet" />
<!-- Custom Fonts -->
<link href="https://fantasysurfingtips.com/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.css">
<script src="https://code.jquery.com/jquery-2.x-git.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-ujs/1.2.1/rails.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.min.js"></script>
<script src="https://www.w3schools.com/lib/w3data.js"></script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-2675412311042802",
enable_page_level_ads: true
});
</script>
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.6";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<!-- Navigation -->
<div w3-include-html="https://fantasysurfingtips.com/layout/header.html"></div>
<!-- Header -->
<div w3-include-html="https://fantasysurfingtips.com/layout/sponsor.html"></div>
<section >
<div class="container">
<div class="row">
<div class="col-sm-3 ">
<div class="col-sm-2 ">
</div>
<div class="col-sm-8 ">
<!-- <img src="http://fantasysurfingtips.com/img/surfers/srome.png" class="img-responsive" alt=""> -->
<h3 style="text-align:center;">Summer Romero</h3>
<a href="https://twitter.com/share" class="" data-via="fansurfingtips"><i class="fa fa-twitter"></i> Share on Twitter</i></a> <br/>
<a class="fb-xfbml-parse-ignore" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Ffantasysurfingtips.com%2Fsurfers%2Fsrome&src=sdkpreparse"><i class="fa fa-facebook"></i> Share on Facebook</a>
</div>
<div class="col-sm-2 ">
</div>
</div>
<div class="col-sm-3 portfolio-item">
</div>
<div class="col-sm-3 portfolio-item">
<h6 style="text-align:center;">Avg Heat Score (FST DATA)</h6>
<h1 style="text-align:center;">11.93</h1>
</div>
</div>
<h4 style="text-align:center;" >Epic Battles</h4>
<div class="row">
<div class="col-sm-6 ">
<p style="text-align:center;">Surfed <b>1</b> heats against <a href="http://fantasysurfingtips.com/surfers/wlt/yshim.html"> Yuko Shimajiri</a> <br/> <b>won 1</b> and <b>lost 0</b></p>
</div>
<div class="col-sm-6 ">
<p style="text-align:center;">Surfed <b>2</b> heats against <a href="http://fantasysurfingtips.com/surfers/wlt/jdup.html"> Justine Dupont</a> <br/> <b>won 0</b> and <b>lost 2</b></p>
</div>
</div>
<hr/>
<h4 style="text-align:center;" >Heat Stats (FST data)</h4>
<div class="row">
<div class="col-sm-4 portfolio-item">
<h6 style="text-align:center;">Heats</h6>
<h2 style="text-align:center;">10</h2>
</div>
<div class="col-sm-4 portfolio-item">
<h6 style="text-align:center;">Heat wins</h6>
<h2 style="text-align:center;">5</h2>
</div>
<div class="col-sm-4 portfolio-item">
<h6 style="text-align:center;">HEAT WINS PERCENTAGE</h6>
<h2 style="text-align:center;">50.0%</h2>
</div>
</div>
<hr/>
<h4 style="text-align:center;">Avg Heat Score progression</h4>
<div id="avg_chart" style="height: 250px;"></div>
<hr/>
<h4 style="text-align:center;">Heat stats progression</h4>
<div id="heat_chart" style="height: 250px;"></div>
<hr/>
<style type="text/css">
.heats-all{
z-index: 3;
margin-left: 5px;
cursor: pointer;
}
</style>
<div class="container">
<div id="disqus_thread"></div>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
var disqus_config = function () {
this.page.url = "http://fantasysurfingtips.com/surfers/srome"; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = '5080'; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//fantasysurfingtips.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</div>
</section>
<script type="text/javascript">
$('.heats-all').click(function(){
$('.heats-all-stat').css('display', 'none')
$('#'+$(this).attr('id')+'-stat').css('display', 'block')
});
$('.heats-2016').click(function(){
$('.heats-2016-stat').css('display', 'none')
$('#'+$(this).attr('id')+'-stat').css('display', 'block')
});
$('document').ready(function(){
new Morris.Line({
// ID of the element in which to draw the chart.
element: 'avg_chart',
// Chart data records -- each entry in this array corresponds to a point on
// the chart.
data: [{"year":"2012","avg":11.86,"avg_all":11.93},{"year":"2013","avg":12.03,"avg_all":11.93}],
// The name of the data record attribute that contains x-values.
xkey: 'year',
// A list of names of data record attributes that contain y-values.
ykeys: ['avg', 'avg_all'],
// Labels for the ykeys -- will be displayed when you hover over the
// chart.
labels: ['Avg score in year', 'Avg score FST DATA']
});
new Morris.Bar({
// ID of the element in which to draw the chart.
element: 'heat_chart',
// Chart data records -- each entry in this array corresponds to a point on
// the chart.
data: [{"year":"2012","heats":6,"wins":4,"percs":"66.67%"},{"year":"2013","heats":4,"wins":1,"percs":"25.0%"}],
// The name of the data record attribute that contains x-values.
xkey: 'year',
// A list of names of data record attributes that contain y-values.
ykeys: ['heats', 'wins', 'percs'],
// Labels for the ykeys -- will be displayed when you hover over the
// chart.
labels: ['Heats surfed', 'Heats won', 'Winning percentage']
});
});
</script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<!-- Footer -->
<div w3-include-html="https://fantasysurfingtips.com/layout/footer.html"></div>
<script type="text/javascript">
(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-74337819-1', 'auto'); // Replace with your property ID.
ga('send', 'pageview');
</script>
<script>
w3IncludeHTML();
</script>
<!-- jQuery -->
<script src="https://fantasysurfingtips.com/js/jquery.js"></script>
<script src="https://cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="https://fantasysurfingtips.com/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script src="https://fantasysurfingtips.com/js/classie.js"></script>
<script src="https://fantasysurfingtips.com/js/cbpAnimatedHeader.js"></script>
<!-- Contact Form JavaScript -->
<script src="https://fantasysurfingtips.com/js/jqBootstrapValidation.js"></script>
<script src="https://fantasysurfingtips.com/js/contact_me.js"></script>
<!-- Custom Theme JavaScript -->
<script src="https://fantasysurfingtips.com/js/freelancer.js"></script>
<script type="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
<script type="https://cdn.datatables.net/1.10.12/js/dataTables.bootstrap.min.js"></script>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.