path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
src/test/resources/htmlmultipleselectorwithattribute/result006.html
attoparser/attoparser
html://head,[a='a']:meta,title,[a='a'] <head a="a" selectors="[html] -> [//head,[a='a']] -> [[a='a']]"><title selectors="[html] -> [//head,[a='a']] -> [title]"></title selectors="[html] -> [//head,[a='a']] -> [title]"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" selectors="[html] -> [//head,[a='a']] -> [meta]"/></head selectors="[html] -> [//head,[a='a']] -> [[a='a']]">
2009-07-create-ur-own-repo-for-centos-or-rpm-base-distro/index.html
linuxdict/linuxdict.github.io
<!DOCTYPE html> <html lang="en"><head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"><!-- Begin Jekyll SEO tag v2.5.0 --> <title>Create Ur own Repo for CentOS or RPM base distro | Linux in EnterPrise</title> <meta name="generator" content="Jekyll v3.8.3" /> <meta property="og:title" content="Create Ur own Repo for CentOS or RPM base distro" /> <meta name="author" content="edyliu" /> <meta property="og:locale" content="en_US" /> <meta name="description" content="create ur own packages, put it into www home directory. let clients can visit from network such as /var/www/html/my_repo http://my_ip/my_repo even ftp://my_ip/my_repo" /> <meta property="og:description" content="create ur own packages, put it into www home directory. let clients can visit from network such as /var/www/html/my_repo http://my_ip/my_repo even ftp://my_ip/my_repo" /> <link rel="canonical" href="http://192.168.1.77:4000/2009-07-create-ur-own-repo-for-centos-or-rpm-base-distro/" /> <meta property="og:url" content="http://192.168.1.77:4000/2009-07-create-ur-own-repo-for-centos-or-rpm-base-distro/" /> <meta property="og:site_name" content="Linux in EnterPrise" /> <meta property="og:type" content="article" /> <meta property="article:published_time" content="2009-07-02T21:02:10-04:00" /> <script type="application/ld+json"> {"description":"create ur own packages, put it into www home directory. let clients can visit from network such as /var/www/html/my_repo http://my_ip/my_repo even ftp://my_ip/my_repo","author":{"@type":"Person","name":"edyliu"},"@type":"BlogPosting","url":"http://192.168.1.77:4000/2009-07-create-ur-own-repo-for-centos-or-rpm-base-distro/","headline":"Create Ur own Repo for CentOS or RPM base distro","dateModified":"2009-07-02T21:02:10-04:00","datePublished":"2009-07-02T21:02:10-04:00","mainEntityOfPage":{"@type":"WebPage","@id":"http://192.168.1.77:4000/2009-07-create-ur-own-repo-for-centos-or-rpm-base-distro/"},"@context":"http://schema.org"}</script> <!-- End Jekyll SEO tag --> <link rel="stylesheet" href="/assets/main.css"><link type="application/atom+xml" rel="alternate" href="http://192.168.1.77:4000/feed.xml" title="Linux in EnterPrise" /></head> <body><header class="site-header" role="banner"> <div class="wrapper"><a class="site-title" rel="author" href="/">Linux in EnterPrise</a><nav class="site-nav"> <input type="checkbox" id="nav-trigger" class="nav-trigger" /> <label for="nav-trigger"> <span class="menu-icon"> <svg viewBox="0 0 18 15" width="18px" height="15px"> <path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/> </svg> </span> </label> <div class="trigger"><a class="page-link" href="/about.html">关于(About Me)</a><a class="page-link" href="/project.html">项目(Project)</a></div> </nav></div> </header> <main class="page-content" aria-label="Content"> <div class="wrapper"> <article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting"> <header class="post-header"> <h1 class="post-title p-name" itemprop="name headline">Create Ur own Repo for CentOS or RPM base distro</h1> <p class="post-meta"> <time class="dt-published" datetime="2009-07-02T21:02:10-04:00" itemprop="datePublished">Jul 2, 2009 </time>• <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span class="p-author h-card" itemprop="name">edyliu</span></span></p> </header> <div class="post-content e-content" itemprop="articleBody"> <ol> <li>create ur own packages, put it into www home directory. let clients can visit from network</li> </ol> <p>such as /var/www/html/my_repo</p> <p>http://my_ip/my_repo even ftp://my_ip/my_repo</p> <ol> <li>create u repo files on clients</li> </ol> <p>e.g.</p> <p>cat /etc/yum.repos.d/ceph.repo</p> <p>[ceph]</p> <p>name=My Cluster Repo $basearch</p> <p>baseurl=http://my_ip/my_repo</p> <p>enabled=1</p> <p>gpgcheck=0 # if u read further, we should change it to “1” for security.</p> <ol> <li>yum search some_pkgs</li> </ol> <p>u should get ur repo now.</p> <!--more--> <p>advanced for GPG signature.</p> <ol> <li>#gpg –gen-key</li> </ol> <p># if don’t have gpg , run yum install -y gnupg</p> <p>gpg (GnuPG) 1.4.5; Copyright (C) 2008 Free Software Foundation, Inc.</p> <p>This is free software: you are free to change and redistribute it.</p> <p>There is NO WARRANTY, to the extent permitted by law.</p> <p>Please select what kind of key you want:</p> <p>(1) DSA and Elgamal (default)</p> <p>(2) DSA (sign only)</p> <p>(5) RSA (sign only)</p> <p>Your selection? <strong>1</strong></p> <p>DSA keypair will have 1024 bits.</p> <p>ELG keys may be between 1024 and 4096 bits long.</p> <p>What keysize do you want? (2048) **<return>**</return></p> <p>Requested keysize is 2048 bits</p> <p>Please specify how long the key should be valid.</p> <p>0 = key does not expire</p> <n> = key expires in n days <n>w = key expires in n weeks <n>m = key expires in n months <n>y = key expires in n years Key is valid for? (0) **<return>** Key does not expire at all Is this correct? (y/N) **y** You need a user ID to identify your key; the software constructs the user ID from the Real Name, Comment and Email Address in this form: &#8220;Heinrich Heine (Der Dichter) &lt;heinrichh@duesseldorf.de&gt;&#8221; Real name: **Edy Liu** Email address: **xfsuper@gmail.com** Comment: Test the GPG sign You selected this USER-ID: &#8220;Edy Liu (Test the GPG sign) &lt;xfsuper@gmail.com&gt;&#8221; Change (N)ame, (C)omment, (E)mail or (O)kay/(Q)uit? **O** You need a Passphrase to protect your secret key. can&#8217;t connect to \`/root/.gnupg/S.gpg-agent&#8217;: No such file or directory gpg-agent[8794]: You may want to update to a newer pinentry gpg-agent[8794]: You may want to update to a newer pinentry We need to generate a lot of random bytes. It is a good idea to perform some other action (type on the keyboard, move the mouse, utilize the disks) during the prime generation; this gives the random number generator a better chance to gain enough entropy. **u can type the keyboard &#8230;&#8230;..wait a looooooong time.** gpg: key E69DC4CC marked as ultimately trusted public and secret key created and signed. gpg: checking the trustdb gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u pub 1024D/E69DC4CC 2009-07-03 Key fingerprint = DB61 772F 74D1 BC7A 2F10 E586 9390 14B2 E69D C4CC uid Edy Liu (Test the GPG sign) &lt;xfsuper@gmail.com&gt; sub 2048g/1CD071D3 2009-07-03 **Now we have our key, that we can use to sign RPM.** \# have a check gpg &#8211;list-keys /root/.gnupg/pubring.gpg &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; pub 1024D/E69DC4CC 2009-07-03 uid Edy Liu (Test the GPG sign) &lt;xfsuper@gmail.com&gt; sub 2048g/1CD071D3 2009-07-03 edit ~/.rpmmacros %_signature gpg %\_gpg\_path /root/.gnupg %\_gpg\_name Edy Liu (Test the GPG sign) &lt;xfsuper@gmail.com&gt; %_gpgbin /usr/bin/gpg cd /var/www/html/my_repo rpm &#8211;addsign *.rpm 5. Make an export of our public key, so users can import it for use with the Repository. gpg &#8211;export -a &#8220;Edy Liu&#8221; &gt; /var/www/html/RPM-GPG-KEY-ENLAMP rpm &#8211;import http://my_ip/RPM-GPG-KEY-ENLAMP ****\*\\*\*Very IMPORTANT\*\*\**** rm -rf /var/www/html/my_repo/repodata/ regenerate the repodata again: createrepo /var/www/html/my_repo** 6. Now yum install -y &#8230; Maybe some errors: Package does not match intended download yum clean all # on the clients. yum install -y &#8230; </return></n></n></n></n> </div><a class="u-url" href="/2009-07-create-ur-own-repo-for-centos-or-rpm-base-distro/" hidden></a> </article> </div> </main><footer class="site-footer h-card"> <data class="u-url" href="/"></data> <div class="wrapper"> <h2 class="footer-heading">Linux in EnterPrise</h2> <div class="footer-col-wrapper"> <div class="footer-col footer-col-1"> <ul class="contact-list"> <li class="p-name">Linux in EnterPrise</li></ul> </div> <div class="footer-col footer-col-2"><ul class="social-media-list"><li><a href="https://github.com/linuxdict"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#github"></use></svg> <span class="username">linuxdict</span></a></li></ul> </div> <div class="footer-col footer-col-3"> <p>Focus in Linux, LAMP, Mail, Cluster Arch(ENterprise Linux Apache MySQL Php)</p> </div> </div> </div> </footer> </body> </html>
share/doc/api/org/apache/hadoop/yarn/event/Event.html
ZhangXFeng/hadoop
<!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 Tue May 19 17:12:32 PDT 2015 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Event (Apache Hadoop Main 2.6.0-cdh5.4.2 API)</title> <meta name="date" content="2015-05-19"> <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="Event (Apache Hadoop Main 2.6.0-cdh5.4.2 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/Event.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/hadoop/yarn/event/Dispatcher.html" title="interface in org.apache.hadoop.yarn.event"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../org/apache/hadoop/yarn/event/EventHandler.html" title="interface in org.apache.hadoop.yarn.event"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/hadoop/yarn/event/Event.html" target="_top">Frames</a></li> <li><a href="Event.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.hadoop.yarn.event</div> <h2 title="Interface Event" class="title">Interface Event&lt;TYPE extends <a href="http://download.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a>&lt;TYPE&gt;&gt;</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Known Implementing Classes:</dt> <dd><a href="../../../../../org/apache/hadoop/yarn/event/AbstractEvent.html" title="class in org.apache.hadoop.yarn.event">AbstractEvent</a></dd> </dl> <hr> <br> <pre>@InterfaceAudience.Public @InterfaceStability.Evolving public interface <a href="../../../../../src-html/org/apache/hadoop/yarn/event/Event.html#line.30">Event</a>&lt;TYPE extends <a href="http://download.oracle.com/javase/7/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a>&lt;TYPE&gt;&gt;</pre> <div class="block">Interface defining events api.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>long</code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/yarn/event/Event.html#getTimestamp()">getTimestamp</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/hadoop/yarn/event/Event.html" title="type parameter in Event">TYPE</a></code></td> <td class="colLast"><code><strong><a href="../../../../../org/apache/hadoop/yarn/event/Event.html#getType()">getType</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="http://download.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="../../../../../org/apache/hadoop/yarn/event/Event.html#toString()">toString</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="getType()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getType</h4> <pre><a href="../../../../../org/apache/hadoop/yarn/event/Event.html" title="type parameter in Event">TYPE</a>&nbsp;<a href="../../../../../src-html/org/apache/hadoop/yarn/event/Event.html#line.32">getType</a>()</pre> </li> </ul> <a name="getTimestamp()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getTimestamp</h4> <pre>long&nbsp;<a href="../../../../../src-html/org/apache/hadoop/yarn/event/Event.html#line.33">getTimestamp</a>()</pre> </li> </ul> <a name="toString()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>toString</h4> <pre><a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../../../src-html/org/apache/hadoop/yarn/event/Event.html#line.34">toString</a>()</pre> <dl> <dt><strong>Overrides:</strong></dt> <dd><code><a href="http://download.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a></code>&nbsp;in class&nbsp;<code><a href="http://download.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></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/Event.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/hadoop/yarn/event/Dispatcher.html" title="interface in org.apache.hadoop.yarn.event"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../org/apache/hadoop/yarn/event/EventHandler.html" title="interface in org.apache.hadoop.yarn.event"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/hadoop/yarn/event/Event.html" target="_top">Frames</a></li> <li><a href="Event.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2015 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.</small></p> </body> </html>
tags/HTML5/index.html
panpan040828/panpan040828.github.io
<!doctype html> <html class="theme-next pisces use-motion"> <head> <meta charset="UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/> <meta http-equiv="Cache-Control" content="no-transform" /> <meta http-equiv="Cache-Control" content="no-siteapp" /> <link href="/vendors/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" /> <link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css"> <link href="/vendors/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" /> <link href="/css/main.css?v=5.1.0" rel="stylesheet" type="text/css" /> <meta name="keywords" content="Hexo, NexT" /> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" /> <meta name="description" content="在学习中不断进步"> <meta property="og:type" content="website"> <meta property="og:title" content="筱鱼兒"> <meta property="og:url" content="http://panpanfish.com/tags/HTML5/index.html"> <meta property="og:site_name" content="筱鱼兒"> <meta property="og:description" content="在学习中不断进步"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="筱鱼兒"> <meta name="twitter:description" content="在学习中不断进步"> <script type="text/javascript" id="hexo.configurations"> var NexT = window.NexT || {}; var CONFIG = { root: '/', scheme: 'Pisces', sidebar: {"position":"left","display":"post"}, fancybox: true, motion: true, duoshuo: { userId: 0, 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> <title> 标签: HTML5 | 筱鱼兒 </title> </head> <body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans"> <script type="text/javascript"> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "//hm.baidu.com/hm.js?e18d9ee1b355055e9a39ffec741beb44"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <div class="container one-collumn sidebar-position-left "> <div class="my-headband"></div> <header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"><div class="my-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">筱鱼兒</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> <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 /> 首页 </a> </li> <li class="menu-item menu-item-categories"> <a href="/categories" rel="section"> <i class="menu-item-icon fa fa-fw fa-th"></i> <br /> 分类 </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 /> 归档 </a> </li> <li class="menu-item menu-item-tags"> <a href="/tags" rel="section"> <i class="menu-item-icon fa fa-fw fa-tags"></i> <br /> 标签 </a> </li> <li class="menu-item menu-item-demo"> <a href="/categories/Demo/" rel="section"> <i class="menu-item-icon fa fa-fw fa-code"></i> <br /> demo </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-collapse"> <div class="collection-title"> <h2 > HTML5 <small>标签</small> </h2> </div> <article class="post post-type-normal" itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <h1 class="post-title"> <a class="post-title-link" href="/2016/06/07/2016-06-07-HTML5中的元素的拖放/" itemprop="url"> <span itemprop="name">HTML5中的元素的拖放</span> </a> </h1> <div class="post-meta"> <time class="post-time" itemprop="dateCreated" datetime="2016-06-07T00:00:00+08:00" content="2016-06-07" > 06-07 </time> </div> </header> </article> <article class="post post-type-normal" itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <h1 class="post-title"> <a class="post-title-link" href="/2016/06/01/2016-06-01-web sovkets协议/" itemprop="url"> <span itemprop="name">Web Sockets协议</span> </a> </h1> <div class="post-meta"> <time class="post-time" itemprop="dateCreated" datetime="2016-06-01T00:00:00+08:00" content="2016-06-01" > 06-01 </time> </div> </header> </article> <article class="post post-type-normal" itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <h1 class="post-title"> <a class="post-title-link" href="/2016/05/05/2016-05-05-HTNL5中的新特性/" itemprop="url"> <span itemprop="name">HTML5中的新特性</span> </a> </h1> <div class="post-meta"> <time class="post-time" itemprop="dateCreated" datetime="2016-05-05T00:00:00+08:00" content="2016-05-05" > 05-05 </time> </div> </header> </article> <article class="post post-type-normal" itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <h1 class="post-title"> <a class="post-title-link" href="/2016/04/28/2016-04-28-使用H5和canvas开发的一个小游戏——王牌特工 - 副本 - 副本/" itemprop="url"> <span itemprop="name">使用H5和canvas开发的一个小游戏——王牌特工</span> </a> </h1> <div class="post-meta"> <time class="post-time" itemprop="dateCreated" datetime="2016-04-28T00:00:00+08:00" content="2016-04-28" > 04-28 </time> </div> </header> </article> <article class="post post-type-normal" itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <h1 class="post-title"> <a class="post-title-link" href="/2016/04/26/2016-04-26-HTML5游戏开发/" itemprop="url"> <span itemprop="name">HTML5游戏开发</span> </a> </h1> <div class="post-meta"> <time class="post-time" itemprop="dateCreated" datetime="2016-04-26T00:00:00+08:00" content="2016-04-26" > 04-26 </time> </div> </header> </article> <article class="post post-type-normal" itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <h1 class="post-title"> <a class="post-title-link" href="/2016/04/25/2016-04-25-HTML5中的canvas/" itemprop="url"> <span itemprop="name">HTML5中的canvas</span> </a> </h1> <div class="post-meta"> <time class="post-time" itemprop="dateCreated" datetime="2016-04-25T00:00:00+08:00" content="2016-04-25" > 04-25 </time> </div> </header> </article> </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 sidebar-panel sidebar-panel-active "> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" src="/uploads/icon.jpg" alt="Yu Pan" /> <p class="site-author-name" itemprop="name">Yu Pan</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">81</span> <span class="site-state-item-name">日志</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories"> <span class="site-state-item-count">10</span> <span class="site-state-item-name">分类</span> </a> </div> <div class="site-state-item site-state-tags"> <a href="/tags"> <span class="site-state-item-count">16</span> <span class="site-state-item-name">标签</span> </a> </div> </nav> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/panpan040828" target="_blank" title="GitHub"> <i class="fa fa-fw fa-github"></i> GitHub </a> </span> <span class="links-of-author-item"> <a href="http://weibo.com" target="_blank" title="微博"> <i class="fa fa-fw fa-globe"></i> 微博 </a> </span> </div> </section> </div> </aside> </div> </main> <footer id="footer" class="footer"> <div class="footer-inner"> <div class="copyright" > &copy; <span itemprop="copyrightYear">2016</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">Yu Pan</span> </div> <!-- <div class="powered-by"> 由 <a class="theme-link" href="http://hexo.io">Hexo</a> 强力驱动 </div> <div class="theme-info"> 主题 - <a class="theme-link" href="https://github.com/iissnan/hexo-theme-next"> NexT.Pisces </a> </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="/vendors/jquery/index.js?v=2.1.3"></script> <script type="text/javascript" src="/vendors/fastclick/lib/fastclick.min.js?v=1.0.6"></script> <script type="text/javascript" src="/vendors/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script> <script type="text/javascript" src="/vendors/velocity/velocity.min.js?v=1.2.1"></script> <script type="text/javascript" src="/vendors/velocity/velocity.ui.min.js?v=1.2.1"></script> <script type="text/javascript" src="/vendors/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script> <script type="text/javascript" src="/js/src/utils.js?v=5.1.0"></script> <script type="text/javascript" src="/js/src/motion.js?v=5.1.0"></script> <script type="text/javascript" src="/js/src/affix.js?v=5.1.0"></script> <script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.1.0"></script> <script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.0"></script> <script type="text/javascript"> var duoshuoQuery = {short_name:"panpanfish"}; (function() { var ds = document.createElement('script'); ds.type = 'text/javascript';ds.async = true; ds.id = 'duoshuo-script'; 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> </body> </html>
src/main/webapp/WEB-INF/templates/tests/inline/inline21.html
thymol/thymol.js
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <title>inline example 01</title> </head> <script th:remove="all" type="text/javascript" src="${thInstall}/thymol.js" data-thymol-load="inline-data.js"></script> <body> <script th:inline="dart"> var foo1 = /*[[${foo}]]*/ 'hello!'; var foo2 = /*[[${foo}]]*/ 'hiya'; // some comment like "will be replaced by thymeleaf" </script> </body> </html> <!-- <script> var foo1 = 'fooo!'; var foo2 = 'fooo!'; // some comment like "will be replaced by thymeleaf" </script> -->
docs/apidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFile.BloomType.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:07 UTC 2014 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class org.apache.hadoop.hbase.regionserver.StoreFile.BloomType (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.regionserver.StoreFile.BloomType (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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/hadoop/hbase/regionserver//class-useStoreFile.BloomType.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="StoreFile.BloomType.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.hadoop.hbase.regionserver.StoreFile.BloomType</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/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.hbase"><B>org.apache.hadoop.hbase</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.hbase.regionserver"><B>org.apache.hadoop.hbase.regionserver</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.hbase.util"><B>org.apache.hadoop.hbase.util</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.hbase"><!-- --></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/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A> in <A HREF="../../../../../../org/apache/hadoop/hbase/package-summary.html">org.apache.hadoop.hbase</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../org/apache/hadoop/hbase/package-summary.html">org.apache.hadoop.hbase</A> that return <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A></CODE></FONT></TD> <TD><CODE><B>HColumnDescriptor.</B><B><A HREF="../../../../../../org/apache/hadoop/hbase/HColumnDescriptor.html#getBloomFilterType()">getBloomFilterType</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../org/apache/hadoop/hbase/package-summary.html">org.apache.hadoop.hbase</A> with parameters of type <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../org/apache/hadoop/hbase/HColumnDescriptor.html" title="class in org.apache.hadoop.hbase">HColumnDescriptor</A></CODE></FONT></TD> <TD><CODE><B>HColumnDescriptor.</B><B><A HREF="../../../../../../org/apache/hadoop/hbase/HColumnDescriptor.html#setBloomFilterType(org.apache.hadoop.hbase.regionserver.StoreFile.BloomType)">setBloomFilterType</A></B>(<A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A>&nbsp;bt)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.hbase.regionserver"><!-- --></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/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A> in <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/package-summary.html">org.apache.hadoop.hbase.regionserver</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/package-summary.html">org.apache.hadoop.hbase.regionserver</A> declared as <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A></CODE></FONT></TD> <TD><CODE><B>StoreFile.Reader.</B><B><A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.Reader.html#bloomFilterType">bloomFilterType</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/package-summary.html">org.apache.hadoop.hbase.regionserver</A> that return <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A></CODE></FONT></TD> <TD><CODE><B>StoreFile.Reader.</B><B><A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.Reader.html#getBloomFilterType()">getBloomFilterType</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A></CODE></FONT></TD> <TD><CODE><B>StoreFile.BloomType.</B><B><A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.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>&nbsp;name)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;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&nbsp;<A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A>[]</CODE></FONT></TD> <TD><CODE><B>StoreFile.BloomType.</B><B><A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html#values()">values</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an array containing the constants of this enum type, in the order they are declared.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/package-summary.html">org.apache.hadoop.hbase.regionserver</A> with parameters of type <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.WriterBuilder.html" title="class in org.apache.hadoop.hbase.regionserver">StoreFile.WriterBuilder</A></CODE></FONT></TD> <TD><CODE><B>StoreFile.WriterBuilder.</B><B><A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.WriterBuilder.html#withBloomType(org.apache.hadoop.hbase.regionserver.StoreFile.BloomType)">withBloomType</A></B>(<A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A>&nbsp;bloomType)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Constructors in <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/package-summary.html">org.apache.hadoop.hbase.regionserver</A> with parameters of type <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.html#StoreFile(org.apache.hadoop.fs.FileSystem, org.apache.hadoop.fs.Path, org.apache.hadoop.conf.Configuration, org.apache.hadoop.hbase.io.hfile.CacheConfig, org.apache.hadoop.hbase.regionserver.StoreFile.BloomType, org.apache.hadoop.hbase.io.hfile.HFileDataBlockEncoder)">StoreFile</A></B>(org.apache.hadoop.fs.FileSystem&nbsp;fs, org.apache.hadoop.fs.Path&nbsp;p, org.apache.hadoop.conf.Configuration&nbsp;conf, <A HREF="../../../../../../org/apache/hadoop/hbase/io/hfile/CacheConfig.html" title="class in org.apache.hadoop.hbase.io.hfile">CacheConfig</A>&nbsp;cacheConf, <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A>&nbsp;cfBloomType, <A HREF="../../../../../../org/apache/hadoop/hbase/io/hfile/HFileDataBlockEncoder.html" title="interface in org.apache.hadoop.hbase.io.hfile">HFileDataBlockEncoder</A>&nbsp;dataBlockEncoder)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructor, loads a reader and it's indices, etc.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.hbase.util"><!-- --></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/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A> in <A HREF="../../../../../../org/apache/hadoop/hbase/util/package-summary.html">org.apache.hadoop.hbase.util</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../org/apache/hadoop/hbase/util/package-summary.html">org.apache.hadoop.hbase.util</A> with parameters of type <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../org/apache/hadoop/hbase/util/BloomFilterWriter.html" title="interface in org.apache.hadoop.hbase.util">BloomFilterWriter</A></CODE></FONT></TD> <TD><CODE><B>BloomFilterFactory.</B><B><A HREF="../../../../../../org/apache/hadoop/hbase/util/BloomFilterFactory.html#createGeneralBloomAtWrite(org.apache.hadoop.conf.Configuration, org.apache.hadoop.hbase.io.hfile.CacheConfig, org.apache.hadoop.hbase.regionserver.StoreFile.BloomType, int, org.apache.hadoop.hbase.io.hfile.HFile.Writer)">createGeneralBloomAtWrite</A></B>(org.apache.hadoop.conf.Configuration&nbsp;conf, <A HREF="../../../../../../org/apache/hadoop/hbase/io/hfile/CacheConfig.html" title="class in org.apache.hadoop.hbase.io.hfile">CacheConfig</A>&nbsp;cacheConf, <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver">StoreFile.BloomType</A>&nbsp;bloomType, int&nbsp;maxKeys, <A HREF="../../../../../../org/apache/hadoop/hbase/io/hfile/HFile.Writer.html" title="interface in org.apache.hadoop.hbase.io.hfile">HFile.Writer</A>&nbsp;writer)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates a new general (Row or RowCol) Bloom filter at the time of <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.html" title="class in org.apache.hadoop.hbase.regionserver"><CODE>StoreFile</CODE></A> writing.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/hadoop/hbase/regionserver/StoreFile.BloomType.html" title="enum in org.apache.hadoop.hbase.regionserver"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/hadoop/hbase/regionserver//class-useStoreFile.BloomType.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="StoreFile.BloomType.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved. </BODY> </HTML>
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_16_testAbaNumberCheck_35241_good_8qa.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">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <a href="http://cardatechnologies.com" target="_top"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </a> </div> <div class="aui-page-header-main" > <h1> <a href="http://cardatechnologies.com" target="_top"> ABA Route Transit Number Validator 1.0.1-SNAPSHOT </a> </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li> <li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li> <li><a href="test-Test_AbaRouteValidator_16.html">Class Test_AbaRouteValidator_16</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_35241_good </h1> <table class="aui"> <thead> <tr> <th>Test</th> <th><label title="The test result. Either a Pass, Fail or Error.">Status</label></th> <th><label title="When the test execution was started">Start time</label></th> <th><label title="The total time in seconds taken to run this test.">Time (seconds)</label></th> <th><label title="A failure or error message if the test is not successful.">Message</label></th> </tr> </thead> <tbody> <tr> <td> <a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_16.html?line=5848#src-5848" >testAbaNumberCheck_35241_good</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:45:32 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</div> <table class="aui aui-table-sortable"> <thead> <tr> <th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th> <th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_35241_good</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=11314#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>
jsystem-core-projects/jsystemCore/src/main/java/jsystem/framework/scripts/package.html
Top-Q/jsystem
<HTML> <Body> The script package is used to extends the framework capabilities and to be able to add new type of tests like perl, tcl or ant. </Body> </HTML>
webex_2020.html
alienk703/alienk703.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <title>Works-Webex.com Digital</title> <!-- CSS --> <link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen"> <!-- Custom styles CSS --> <link href="assets/css/sass.css" rel="stylesheet" media="screen"> <script src="assets/js/modernizr.custom.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery.isotope/2.2.0/isotope.pkgd.js"></script> </head> <body id="page-top" class="index"> <!-- Preloader --> <!-- <div id="preloader"> <div id="status"></div> </div> --> <nav class="navbar navbar-custom" role="navigation"> <div class="container nav-head"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#custom-collapse"> <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 class="brand_a" src="assets/images/bg_a_2017.png"> </a> </div> <div class="collapse navbar-collapse" id="custom-collapse"> <ul class="nav navbar-nav navbar-right"> <li><a href="index.html">Works</a></li> <li><a href="about.html">About</a></li> <!-- <li><a href="index_1.0.html">Previous Version</a></li> --> </ul> </div> </div> </nav> <!-- Home start --> <header> <div class="container-fluid cisco_blue"> <div class="container container-small"> <div class="row"> <div class="col-md-12"> <section id="work-header" class="hero-sec product_site"> <div> <h2 class="home-title uppercase" id="gradient">WORKS</h2> <img class="cisco_logo" src="assets/images/product_site/cisco_logo.png"> <h1 class="uppercase">Cisco Digital Engagement Center<br/>Webex.com Digital</h1> <!-- <h5 class="work-desc">Branding for Giannis Antetoukoumpo's first signature shoes with Nike. Concept of being the First Giannis, and not following anyone else. Logo uses the Greek letters "G" and "A". First Ginannis Alpha.</h5> --> <!-- <img class="main-hero" src="assets/images/andy-hero_2017.png"> <img class="name_tag" src="assets/images/name_tag2.png"> --> </div> </section> </div> </div> </div> <div class="container work-stats container-small"> <div class="row product_site"> <div class="col-md-6"> <h3>Brief</h3> <p class="txt-box-pad-bot-20">Cisco Collaboration Technology Group's main focus is to help the partners with their sales of Webex product. The newly designed website will be easier to navigate and focus on presenting main features that the customers are looking to solve by using Webex. <!-- For the partners, the website will help with; <li>Enable partners to launch their digital presence for Webex Product website</li> <li>Support end-to-end journey of end user finding, learning, trying, and buying Webex</li> <li>Handle both direct traffic and campign traffic</li> <li>Partner brand-able, customizable, with content syndication from Cisco</li> --> </p> <h3>Created at:</h3> <p>Cisco Systems Collaboration Technology Group:</p> </div> <div class="col-md-6"> <h3>Project</h3> <p class="txt-box-pad-bot-20">Aside from webex.com, the Digital Engagement Team created webex suite website that is brandable with partner colors, logo and typeface. </p> <h3>Role</h3> <p class="txt-box-pad-bot-20">UI/UX Design, Wireframe, Web Design, Front-end Development</p> <h3>Credit</h3> <p>Copywrite: Sandy Leung<br/>Project Owner: DP Venkatash<br/>Development: Aki Perez</p> </div> </div> </div> </div> </header> <!-- Home end --> <div class="container-fluid"> <div class="row"> <div class="col-sm-12 work-stats"> <img class="img-center" src="assets/images/product_site/webex.com/nov_webex.com.jpg"> </div> </div> </div> <div class="container container-tiny"> <div class="row"> <div class="col-sm-6 content-panel"> <h1>Purpose</h1> <p>Referencing and using the existing Webex.com as the back bone, we narrowed down, chopped out and added necessary information needed for our target audience. We came up with a revised site-map with a new information architecture to fulfill the target needs. From the new site-map, we added and re-arranged the content on a newly revised wireframe for best User Experience and flow.</p> <p>The website will help with; <li>Enable partners to launch their digital presence for Webex Product website</li> <li>Support end-to-end journey of end user finding, learning, trying, and buying Webex</li> <li>Handle both direct traffic and campign traffic</li> <li>Partner brand-able, customizable, with content syndication from Cisco</li> </p> </div> <div class="col-sm-6 content-panel"> <h1>Target Audience</h1> <ul> <li>Prospective buyers and users</li> <li>Decision makers/IT buyers and business buyers</li> <li>Small/Medium/Large segments depending on partner focus</li> </ul> <ul> <li>Chief Security Officers: Security and encryption on communications and systems</li> <li>Chief Information Officers: Migrate to the cloud, upgrade phone systems, building call center and integrate with existing business applications</li> <li>Managers: Connecting remote teams/team members</li> <li>Small business owners: New/remote offices, connecting teams, lowering cost</li> </ul> </div> </div> </div> <div class="container-fluid"> <div class="row"> <div class="col-sm-12 work-stats"> <img class="img-center" src="assets/images/product_site/webex.com/webex_sitemap.jpg"> </div> </div> </div> <div class="container-fluid"> <div class="row"> <div class="col-sm-12 work-stats"> <img class="img-center" src="assets/images/product_site/webex.com/webex_wireframe.jpg"> </div> </div> </div> <div class="container container-tiny"> <div class="row"> <div class="col-sm-6 content-panel"> <h1>Simple and cleaner design</h1> <p>Final design was focused on clean and flat design, that will be easy to read through, and where no information on the page goes mission. By focusing on one color from the palette, it makes it easier for the users to follow through the story and the cleaner overall look is more engaging to the readers. </p> </div> <div class="col-sm-6 content-panel"> <h1>Partner Customization</h1> <p>Branding is important. Engagement Center websites provide customization experience for the Partners so they can include their logo, font and color palette.</p> </div> </div> </div> <div class="container-fluid"> <div class="row"> <div class="col-sm-12 work-stats"> <img class="img-center" src="assets/images/product_site/webex.com/nov_webex.com_products.jpg"> </div> </div> </div> <div class="container container-tiny"> <div class="row"> <div class="col-sm-6 div-center content-panel"> <h1>Responsive</h1> <p>Offering the most fluid and pleasant experience for the both mobile and tablet versions.</p> </div> </div> </div> <div class="container-fluid"> <div class="row"> <div class="col-sm-12 work-stats"> <img class="img-center" src="assets/images/product_site/webex.com/nov_mobile_webex.com_home.jpg"> </div> </div> </div> <!-- Scroll to top --> <div class="scroll-up"> <a href="#home"><i class="fa fa-angle-up"></i></a> </div> <!-- Scroll to top end--> <!-- Javascript files --> <script src="assets/js/jquery-1.11.1.min.js"></script> <script src="assets/bootstrap/js/bootstrap.min.js"></script> <script src="assets/js/jquery.parallax-1.1.3.js"></script> <script src="https://unpkg.com/scrollreveal/dist/scrollreveal.min.js"></script> <script src="assets/js/custom.js"></script> <!-- <script src="assets/js/imagesloaded.pkgd.js"></script> <script src="assets/js/jquery.sticky.js"></script> <script src="assets/js/smoothscroll.js"></script> <script src="assets/js/wow.min.js"></script> <script src="assets/js/jquery.easypiechart.js"></script> <script src="assets/js/waypoints.min.js"></script> <script src="assets/js/jquery.cbpQTRotator.js"></script> <script src="assets/js/isotope.pkgd.min.js"></script> <script src="assets/js/isotope.js"></script> --> </body> </html>
WebContent/historyServer.html
xuwangcheng14/LinuxResourceMonitorUtil
<!DOCTYPE> <html> <head> <title>历史记录查询</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css"/> <link rel="stylesheet" href="lib/datatables/css/dataTables.bootstrap.min.css"/> <link rel="stylesheet" href="css/index.css"/> <style type="text/css"> body { padding:25px; } </style> </head> <body> <div class="container"> <div class="tool-bar"> <button type="button" class="btn btn-success">批量启用</button> </div> <div> <table class="table table-bordered table-hover"> <thead> <tr> <th><input type="checkbox" class="checkbox td-left"></th> <th>#</th> <th>HOST</th> <th>端口</th> <th>用户名</th> <th>密码</th> <th>备注</th> <th>最后一次使用</th> <th>操作</th> </tr> </thead> <tbody> </tbody> </table> </div> </div> <script src="js/jquery.js"></script> <script src="lib/bootstrap/js/bootstrap.js"></script> <script src="lib/layer/layer.js"></script> <script src="lib/datatables/js/jquery.dataTables.min.js"></script> <script src="lib/datatables/js/dataTables.bootstrap.min.js"></script> <script src="js/historyServer.js"></script> </body> </html>
codeigniter/_functions/pg_query.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: pg_query()</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:31:09 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('pg_query'); // --> </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#pg_query">pg_query()</a></h2> <p><b>This function is provided by PHP directly.</b><br> You can lookup the documentation for it here: <br>&nbsp;&nbsp;[<A HREF="http://php.net/manual-lookup.php?function=pg_query">php.net</A>] [<A HREF="http://us2.php.net/manual-lookup.php?function=pg_query">us2.php.net</A>] [<A HREF="http://uk.php.net/manual-lookup.php?function=pg_query">uk.php.net</A>] [<A HREF="http://au.php.net/manual-lookup.php?function=pg_query">au.php.net</A>] [<A HREF="http://de.php.net/manual-lookup.php?function=pg_query">de.php.net</A>] </p> <b>Referenced 1 times:</b><ul> <li><a href="../system/database/drivers/postgre/postgre_driver.php.html">/system/database/drivers/postgre/postgre_driver.php</a> -> <a href="../system/database/drivers/postgre/postgre_driver.php.source.html#l176"> line 176</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:31:09 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>
DataStructure/doc/ds0509/TemperatureConversion.html
zhangzhaoyu/DataStructure
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="zh"> <head> <!-- Generated by javadoc (version 1.7.0_45) on Tue May 13 19:15:34 CST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>TemperatureConversion</title> <meta name="date" content="2014-05-13"> <link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="TemperatureConversion"; } //--> </script> <noscript> <div>您的浏览器已禁用 JavaScript。</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="../overview-summary.html">概览</a></li> <li><a href="package-summary.html">程序包</a></li> <li class="navBarCell1Rev">类</li> <li><a href="class-use/TemperatureConversion.html">使用</a></li> <li><a href="package-tree.html">树</a></li> <li><a href="../deprecated-list.html">已过时</a></li> <li><a href="../index-files/index-1.html">索引</a></li> <li><a href="../help-doc.html">帮助</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../ds0509/PrintSqrt.html" title="ds0509中的类"><span class="strong">上一个类</span></a></li> <li>下一个类</li> </ul> <ul class="navList"> <li><a href="../index.html?ds0509/TemperatureConversion.html" target="_top">框架</a></li> <li><a href="TemperatureConversion.html" target="_top">无框架</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../allclasses-noframe.html">所有类</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>概要:&nbsp;</li> <li>嵌套&nbsp;|&nbsp;</li> <li>字段&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">构造器</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">方法</a></li> </ul> <ul class="subNavList"> <li>详细资料:&nbsp;</li> <li>字段&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">构造器</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">方法</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">ds0509</div> <h2 title="类 TemperatureConversion" class="title">类 TemperatureConversion</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>ds0509.TemperatureConversion</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">TemperatureConversion</span> extends java.lang.Object</pre> <div class="block">ClassName:TemperatureConversion <br/> Function: TODO ADD FUNCTION. <br/> Reason: TODO ADD REASON. <br/> Date: 2014年5月9日 下午4:16:35 <br/></div> <dl><dt><span class="strong">从以下版本开始:</span></dt> <dd>JDK 1.7</dd> <dt><span class="strong">版本:</span></dt> <dd></dd> <dt><span class="strong">作者:</span></dt> <dd>zhangzhaoyu</dd> <dt><span class="strong">另请参阅:</span></dt><dd><code></code></dd></dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>构造器概要</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释"> <caption><span>构造器</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">构造器和说明</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../ds0509/TemperatureConversion.html#TemperatureConversion()">TemperatureConversion</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>方法概要</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释"> <caption><span>方法</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">限定符和类型</th> <th class="colLast" scope="col">方法和说明</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static double</code></td> <td class="colLast"><code><strong><a href="../ds0509/TemperatureConversion.html#celsiusToFahrenheit(double)">celsiusToFahrenheit</a></strong>(double&nbsp;celsius)</code> <div class="block">celsiusToFahrenheit:<br /> TODO</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static void</code></td> <td class="colLast"><code><strong><a href="../ds0509/TemperatureConversion.html#main(java.lang.String[])">main</a></strong>(java.lang.String[]&nbsp;args)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>从类继承的方法&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>构造器详细资料</h3> <a name="TemperatureConversion()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>TemperatureConversion</h4> <pre>public&nbsp;TemperatureConversion()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>方法详细资料</h3> <a name="main(java.lang.String[])"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>main</h4> <pre>public static&nbsp;void&nbsp;main(java.lang.String[]&nbsp;args)</pre> </li> </ul> <a name="celsiusToFahrenheit(double)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>celsiusToFahrenheit</h4> <pre>public static&nbsp;double&nbsp;celsiusToFahrenheit(double&nbsp;celsius)</pre> <div class="block">celsiusToFahrenheit:<br /> TODO</div> <dl><dt><span class="strong">参数:</span></dt><dd><code>celsius</code> - </dd> <dt><span class="strong">返回:</span></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="跳过导航链接"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="../overview-summary.html">概览</a></li> <li><a href="package-summary.html">程序包</a></li> <li class="navBarCell1Rev">类</li> <li><a href="class-use/TemperatureConversion.html">使用</a></li> <li><a href="package-tree.html">树</a></li> <li><a href="../deprecated-list.html">已过时</a></li> <li><a href="../index-files/index-1.html">索引</a></li> <li><a href="../help-doc.html">帮助</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../ds0509/PrintSqrt.html" title="ds0509中的类"><span class="strong">上一个类</span></a></li> <li>下一个类</li> </ul> <ul class="navList"> <li><a href="../index.html?ds0509/TemperatureConversion.html" target="_top">框架</a></li> <li><a href="TemperatureConversion.html" target="_top">无框架</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../allclasses-noframe.html">所有类</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>概要:&nbsp;</li> <li>嵌套&nbsp;|&nbsp;</li> <li>字段&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">构造器</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">方法</a></li> </ul> <ul class="subNavList"> <li>详细资料:&nbsp;</li> <li>字段&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">构造器</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">方法</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
2017.11.0/apidocs/org/wildfly/swarm/config/security/security_domain/mapping/class-use/MappingModuleConsumer.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.security.security_domain.mapping.MappingModuleConsumer (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.security.security_domain.mapping.MappingModuleConsumer (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/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.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 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/security/security_domain/mapping/class-use/MappingModuleConsumer.html" target="_top">Frames</a></li> <li><a href="MappingModuleConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.security.security_domain.mapping.MappingModuleConsumer" class="title">Uses of Interface<br>org.wildfly.swarm.config.security.security_domain.mapping.MappingModuleConsumer</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/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.mapping">MappingModuleConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.security.security_domain">org.wildfly.swarm.config.security.security_domain</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.security.security_domain.mapping">org.wildfly.swarm.config.security.security_domain.mapping</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.security.security_domain"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.mapping">MappingModuleConsumer</a> in <a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/package-summary.html">org.wildfly.swarm.config.security.security_domain</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/security/security_domain/package-summary.html">org.wildfly.swarm.config.security.security_domain</a> with parameters of type <a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.mapping">MappingModuleConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/ClassicMapping.html" title="type parameter in ClassicMapping">T</a></code></td> <td class="colLast"><span class="typeNameLabel">ClassicMapping.</span><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/ClassicMapping.html#mappingModule-java.lang.String-org.wildfly.swarm.config.security.security_domain.mapping.MappingModuleConsumer-">mappingModule</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;childKey, <a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.mapping">MappingModuleConsumer</a>&nbsp;consumer)</code> <div class="block">Create and configure a MappingModule object to the list of subresources</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.security.security_domain.mapping"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.mapping">MappingModuleConsumer</a> in <a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/package-summary.html">org.wildfly.swarm.config.security.security_domain.mapping</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/security/security_domain/mapping/package-summary.html">org.wildfly.swarm.config.security.security_domain.mapping</a> that return <a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.mapping">MappingModuleConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>default <a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.mapping">MappingModuleConsumer</a>&lt;<a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="type parameter in MappingModuleConsumer">T</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">MappingModuleConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html#andThen-org.wildfly.swarm.config.security.security_domain.mapping.MappingModuleConsumer-">andThen</a></span>(<a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.mapping">MappingModuleConsumer</a>&lt;<a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="type parameter in MappingModuleConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/package-summary.html">org.wildfly.swarm.config.security.security_domain.mapping</a> with parameters of type <a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.mapping">MappingModuleConsumer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>default <a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.mapping">MappingModuleConsumer</a>&lt;<a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="type parameter in MappingModuleConsumer">T</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">MappingModuleConsumer.</span><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html#andThen-org.wildfly.swarm.config.security.security_domain.mapping.MappingModuleConsumer-">andThen</a></span>(<a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.mapping">MappingModuleConsumer</a>&lt;<a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="type parameter in MappingModuleConsumer">T</a>&gt;&nbsp;after)</code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../org/wildfly/swarm/config/security/security_domain/mapping/MappingModuleConsumer.html" title="interface in org.wildfly.swarm.config.security.security_domain.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 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/security/security_domain/mapping/class-use/MappingModuleConsumer.html" target="_top">Frames</a></li> <li><a href="MappingModuleConsumer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
docs/solr-core/org/apache/solr/update/class-use/DirectUpdateHandler2.html
gibrantd/solr-4.2.0
<!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_09) on Wed Mar 06 22:32:35 PST 2013 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.apache.solr.update.DirectUpdateHandler2 (Solr 4.2.0 API)</title> <meta name="date" content="2013-03-06"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.solr.update.DirectUpdateHandler2 (Solr 4.2.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/apache/solr/update/DirectUpdateHandler2.html" title="class in org.apache.solr.update">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/update/class-use/DirectUpdateHandler2.html" target="_top">Frames</a></li> <li><a href="DirectUpdateHandler2.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.solr.update.DirectUpdateHandler2" class="title">Uses of Class<br>org.apache.solr.update.DirectUpdateHandler2</h2> </div> <div class="classUseContainer">No usage of org.apache.solr.update.DirectUpdateHandler2</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/update/DirectUpdateHandler2.html" title="class in org.apache.solr.update">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/update/class-use/DirectUpdateHandler2.html" target="_top">Frames</a></li> <li><a href="DirectUpdateHandler2.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &copy; 2000-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> </small></p> </body> </html>
modules/base/platform-resources-en/src/main/resources/tips/HierarchyBrowser.html
consulo/consulo
<html> <head> <link rel="stylesheet" type="text/css" href="css/tips.css"> </head> <body> <p>To see the inheritance hierarchy for a selected class, press <span class="shortcut">&shortcut:TypeHierarchy;</span> (<span class="control">View | Type Hierarchy</span>). You can also invoke the hierarchy view right from the editor to see the hierarchy for the currently edited class.</p> <p class="image"> <icon src="consulo.platform.base.tips.TipsIconGroup@hierarchy_browser" width="353" height="118"></icon></p> </body> </html>
codeigniter/_constants/FOPEN_READ_WRITE.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 : Constant Reference: FOPEN_READ_WRITE</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:31:09 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='_constants'; filename='index.html'; cookiekey='phpxref'; handleNavFrame(relbase, subdir, filename); logConstant('FOPEN_READ_WRITE'); // --> </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>Constant Cross Reference</h3> <h2><a href="index.html#FOPEN_READ_WRITE">FOPEN_READ_WRITE</a></h2> <b>Defined at:</b><ul> <li><a href="../application/config/constants.php.html#FOPEN_READ_WRITE">/application/config/constants.php</a> -> <a onClick="logConstant('FOPEN_READ_WRITE', '/application/config/constants.php.source.html#l31')" href="../application/config/constants.php.source.html#l31"> line 31</a></li> </ul> <br><b>Referenced 1 times:</b><ul> <li><a href="../application/config/constants.php.html">/application/config/constants.php</a> -> <a href="../application/config/constants.php.source.html#l31"> line 31</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:31:09 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>
docs/javadoc/2.12/com/fasterxml/jackson/annotation/class-use/JsonSubTypes.Type.html
FasterXML/jackson-annotations
<!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 16:36:09 PST 2020 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class com.fasterxml.jackson.annotation.JsonSubTypes.Type (Jackson-annotations 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.annotation.JsonSubTypes.Type (Jackson-annotations 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="../../../../../com/fasterxml/jackson/annotation/package-summary.html">Package</a></li> <li><a href="../../../../../com/fasterxml/jackson/annotation/JsonSubTypes.Type.html" title="annotation in com.fasterxml.jackson.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/annotation/class-use/JsonSubTypes.Type.html" target="_top">Frames</a></li> <li><a href="JsonSubTypes.Type.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.fasterxml.jackson.annotation.JsonSubTypes.Type" class="title">Uses of Class<br>com.fasterxml.jackson.annotation.JsonSubTypes.Type</h2> </div> <div class="classUseContainer">No usage of com.fasterxml.jackson.annotation.JsonSubTypes.Type</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="../../../../../com/fasterxml/jackson/annotation/package-summary.html">Package</a></li> <li><a href="../../../../../com/fasterxml/jackson/annotation/JsonSubTypes.Type.html" title="annotation in com.fasterxml.jackson.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/annotation/class-use/JsonSubTypes.Type.html" target="_top">Frames</a></li> <li><a href="JsonSubTypes.Type.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2008&#x2013;2020 <a href="http://fasterxml.com/">FasterXML</a>. All rights reserved.</small></p> </body> </html>
content/users/edging-service/nginx/index.html
lijasonvip/lijasonvip.github.io
<!doctype html> <!-- Minimal Mistakes Jekyll Theme 4.4.1 by Michael Rose Copyright 2017 Michael Rose - mademistakes.com | @mmistakes Free for personal and commercial use under the MIT license https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt --> <html lang="en" class="no-js"> <head> <meta charset="utf-8"> <!-- begin SEO --> <title>Using Confd and Nginx for Edge Service - Apache ServiceComb (incubating)</title> <meta name="description" content="Using Confd and Nginx for Edge Service"> <meta name="author" content=""> <meta property="og:locale" content="en"> <meta property="og:site_name" content="Apache ServiceComb (incubating)"> <meta property="og:title" content="Using Confd and Nginx for Edge Service"> <link rel="canonical" href="http://github.com/pages/apache/incubator-servicecomb-website/users/edging-service/nginx/"> <meta property="og:url" content="http://github.com/pages/apache/incubator-servicecomb-website/users/edging-service/nginx/"> <meta property="og:description" content="Using Confd and Nginx for Edge Service"> <meta name="twitter:site" content="@ServiceComb"> <meta name="twitter:title" content="Using Confd and Nginx for Edge Service"> <meta name="twitter:description" content="Using Confd and Nginx for Edge Service"> <meta name="twitter:url" content=""> <meta name="twitter:card" content="summary"> <script type="application/ld+json"> { "@context" : "http://schema.org", "@type" : "Person", "name" : "Apache ServiceComb (incubating)", "url" : "http://github.com/pages/apache/incubator-servicecomb-website", "sameAs" : null } </script> <meta name="google-site-verification" content="HvJjNd7vvJ-yjSTHlBiIWEYxp_Hrz-PYEY5Idz9LRcA" /> <!-- end SEO --> <link href="/feed.xml" type="application/atom+xml" rel="alternate" title="Apache ServiceComb (incubating) Feed"> <!-- http://t.co/dKP3o1e --> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script> document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + ' js '; </script> <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js"></script> <script src="/assets/vendor/prism/prism.js"></script> <script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML"> </script> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous"> <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.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script> <!-- For all browsers --> <link rel="stylesheet" href="/assets/css/main.css"> <link rel="stylesheet" href="/assets/vendor/prism/prism.css"> <!--[if lte IE 9]> <style> /* old IE unsupported flexbox fixes */ .greedy-nav .site-title { padding-right: 3em; } .greedy-nav button { position: absolute; top: 0; right: 0; height: 100%; } </style> <![endif]--> <meta http-equiv="cleartype" content="on"> <!-- start custom head snippets --> <!-- insert favicons. use http://realfavicongenerator.net/ --> <link href="https://fonts.cat.net/css?family=Roboto:400,500,700|Source+Code+Pro" rel="stylesheet"> <script src="/assets/js/custom.js"></script> <!-- end custom head snippets --> </head> <body class="layout--single"> <!--[if lt IE 9]> <div class="notice--danger align-center" style="margin: 0;">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</div> <![endif]--> <div class="masthead"> <div class="masthead__inner-wrap"> <div class="masthead__menu"> <nav id="site-nav" class="greedy-nav"> <a class="site-title active" href="/"><img src="/assets/images/ServiceComb-logo-1.png"></a> <ul class="visible-links"> <li class="masthead__menu-item"> <a href="/docs/quick-start/">Quick Start</a> </li> <li class="masthead__menu-item"> <a class="active" href="/users/">Users</a> </li> <li class="masthead__menu-item"> <a href="/developers/">Developers</a> </li> <li class="masthead__menu-item"> <a href="/year-archive/">Blogs</a> </li> <li class="masthead__menu-item"> <a href="/faqs/">FAQ</a> </li> <li class="masthead__menu-item"> <a href="/release/">Downloads</a> </li> </ul> <button><div class="navicon"></div></button> <ul class="hidden-links hidden"></ul> <div class="nav-lang"> <a href=/cn/users/edging-service/nginx/>中文</a> </div> </nav> </div> </div> </div> <div id="main" role="main"> <div class="sidebar sticky"> <div class="back-to-home">Home > <a href="/">ServiceComb</a></div> <nav class="nav__list"> <input id="ac-toc" name="accordion-toc" type="checkbox" /> <label for="ac-toc">Toggle Menu</label> <ul class="nav__items"> <li> <span class="nav__sub-title">User Guide</span> <ul> <li><a href="/users/" class="">Java Chassis Architecture</a></li> <li><a href="/users/setup-environment/" class="">Setup Environment</a></li> </ul> </li> <li> <span class="nav__sub-title">Develop Service Provider</span> <ul> <li><a href="/users/service-definition/" class="">Service Definition</a></li> <li><a href="/users/service-contract/" class="">Service Contract</a></li> <li><a href="/users/develop-with-springmvc/" class="">Develop Microservice with SpringMVC</a></li> <li><a href="/users/develop-with-jax-rs/" class="">Develop Microservice with JAX-RS</a></li> <li><a href="/users/develop-with-transparent-rpc/" class="">Develop Microservice with Transparent RPC</a></li> <li><a href="/users/develop-with-spring-boot-starter/" class="">Develop Microservice with Spring Boot Starter</a></li> <li><a href="/users/service-interface-constraints/" class="">Service Interface Constraints</a></li> <li><a href="/users/service-configurations/" class="">Service Configurations</a></li> <li><a href="/users/communicate-protocol/" class="">Communicate Protocol</a></li> <li><a href="/users/application-boot-process/" class="">Application Boot Up Process</a></li> <li><a href="/users/service-heartbeat/" class="">Service Heartbeat</a></li> </ul> </li> <li> <span class="nav__sub-title">Develop Service Consumer</span> <ul> <li><a href="/users/develop-with-rest-template/" class="">Develop with Rest Template</a></li> <li><a href="/users/develop-with-rpc/" class="">Develop with Transparent RPC</a></li> <li><a href="/users/use-service-contract/" class="">Use Service Contract</a></li> <li><a href="/users/invoke-control/" class="">Invoke Control</a></li> </ul> </li> <li> <span class="nav__sub-title">General Development</span> <ul> <li><a href="/users/local-develop-test/" class="">Develop and Test in Local Environment</a></li> <li><a href="/users/distributed-tracing/" class="">Distributed Tracing</a></li> <li><a href="/users/customized-tracing/" class="">Customized Tracing</a></li> </ul> </li> <li> <a href="/users/dynamic-config/"><span class="nav__sub-title nav__sub-title-with-url">Dynamic Configurations</span></a> </li> <li> <span class="nav__sub-title">Open Service Capabilities</span> <ul> <li><a href="/users/edging-service/nginx/" class="active">Confd and Nginx Edge Service</a></li> <li><a href="/users/edging-service/zuul/" class="">Zuul Edge Service</a></li> <li><a href="/users/edge-in-1.0.0-m1/" class="">ServiceComb Java Chassis Edge Service</a></li> <li><a href="/users/manage_springcloud_application_using_sc_and_gs/" class="">Using the Service Center and Governance Center to Manage the Spring Cloud Application</a></li> </ul> </li> <li> <span class="nav__sub-title">Monitor</span> <ul> <li><a href="/users/metrics-in-1.0.0-m1/" class="">Metrics-in-1.0.0-m1</a></li> <li><a href="/users/metrics-integration-with-prometheus-in-1.0.0-m1/" class="">Metrics-integration-with-prometheus-in-1.0.0-m1</a></li> </ul> </li> <li> <span class="nav__sub-title">Deployment</span> <ul> <li><a href="/users/run-mode/" class="">Run Mode</a></li> </ul> </li> <li> <span class="nav__sub-title">Security</span> <ul> <li><a href="/users/use-tls/" class="">Use TLS</a></li> </ul> </li> </ul> </nav> </div> <article class="page" itemscope itemtype="http://schema.org/CreativeWork"> <meta itemprop="headline" content="Using Confd and Nginx for Edge Service"> <meta itemprop="description" content="Using Confd and Nginx for Edge Service"> <meta itemprop="dateModified" content="August 15, 2017"> <div class="page__inner-wrap"> <header> <h1 class="page__title" itemprop="headline">Using Confd and Nginx for Edge Service </h1> </header> <section class="page__content" itemprop="text"> <aside class="sidebar__right"> <nav class="toc"> <!-- <header><h4 class="nav__title"><i class="fa fa-file-text"></i> On This Page</h4></header> --> <ul class="toc__menu" id="markdown-toc"> <li><a href="#concept-description" id="markdown-toc-concept-description">Concept Description</a> <ul> <li><a href="#confd" id="markdown-toc-confd"><strong>confd</strong></a></li> <li><a href="#nginx" id="markdown-toc-nginx"><strong>Nginx</strong></a></li> </ul> </li> <li><a href="#scenario" id="markdown-toc-scenario">Scenario</a></li> <li><a href="#interconnecting-with-the-service-center" id="markdown-toc-interconnecting-with-the-service-center">Interconnecting with the Service Center</a> <ul> <li><a href="#method-1-http-call" id="markdown-toc-method-1-http-call"><strong>Method 1: HTTP call</strong></a></li> <li><a href="#method-2-using-the-open-source-code-api" id="markdown-toc-method-2-using-the-open-source-code-api"><strong>Method 2: Using the open-source code API</strong></a></li> </ul> </li> </ul> </nav> </aside> <h2 id="concept-description">Concept Description</h2> <h3 id="confd"><strong>confd</strong></h3> <p>confd is a lightweight configuration management tool. The source code address is: https://github.com/kelseyhightower/confd](https://github.com/kelseyhightower/confd), It can store configuration information in etcd, consul, dynamodb, redis, and zookeeper. confd regularly pulls the latest configuration from storage nodes and then reloads services to complete updating the configuration file.</p> <h3 id="nginx"><strong>Nginx</strong></h3> <p>Nginx (engine x) is a high-performance HTTP and reverse proxy server that has the load balancing function. For details, see <a href="http://www.nginx.cn/doc/">http://www.nginx.cn/doc/</a>. This secton describes the HTTP proxy function of Nginx.</p> <h2 id="scenario">Scenario</h2> <p>This section describes how to use Nginx and confd to serve as edge services. Also, you can connect Nginx and confd to service center in the Java Chassis microservice framework and dynamically update configuration of Nginx using confd.</p> <p>For details about how to use the dynamic reverse proxy of Nginx and confd, see <a href="http://www.cnblogs.com/Anker/p/6112022.html">http://www.cnblogs.com/Anker/p/6112022.html</a>, This section describes how to interconnect Confd with the service center of the Java Chassis framework.</p> <h2 id="interconnecting-with-the-service-center">Interconnecting with the Service Center</h2> <p>This section describes how to enable confd to obtain service information from the service center. The service center provides the following APIs for external calls:</p> <h3 id="method-1-http-call"><strong>Method 1: HTTP call</strong></h3> <p>The tenant header information of “X-Tenant-Name:tenantName” needs to be added to the HTTP API in the Service Center. tenameName is the tenant name. The default value is default, such as X-Tenant-Name:default.</p> <ul> <li> <p>Check the health status of the service center</p> <div class="language-http highlighter-rouge"><pre class="highlight"><code><span class="err"> GET 127.0.0.1:9980/health </span></code></pre> </div> </li> <li> <p>Obtain all microservice information</p> <div class="language-http highlighter-rouge"><pre class="highlight"><code><span class="err"> GET 127.0.0.1:9980/registry/v3/microservices </span></code></pre> </div> </li> <li> <p>Obtain the microservice information with a specified ID</p> </li> </ul> <blockquote> <ol> <li> <p>Obtain the service ID based on the microservice information</p> <div class="language-http highlighter-rouge"><pre class="highlight"><code><span class="err">GET 127.0.0.1:9980/registry/v3/existence?type=microservice&amp;appId={appId}&amp;serviceName={serviceName}&amp;version={version} </span></code></pre> </div> </li> <li> <p>Obtain complete microservice information based on the service ID returned by API</p> <div class="language-http highlighter-rouge"><pre class="highlight"><code><span class="err">GET 127.0.0.1:9980/registry/v3/microservices/{serviceId} </span></code></pre> </div> </li> </ol> </blockquote> <ul> <li> <p>Obtain all instance information from specified microservice</p> <div class="language-http highlighter-rouge"><pre class="highlight"><code><span class="err"> GET 127.0.0.1:9980/registry/v3/microservices/{serviceId}/instances </span></code></pre> </div> <p>Add the following information to the header file:</p> <p>“X-ConsumerId:{serviceId}”</p> </li> <li> <p>Searching microservice instance information</p> <div class="language-http highlighter-rouge"><pre class="highlight"><code><span class="err"> GET 127.0.0.1:9980/registry/v3/instances?appId={appId}&amp;serviceName={serviceName}&amp;version={version} </span></code></pre> </div> <p>Add the following information to the header file:</p> <p>“X-ConsumerId:{serviceId}”</p> </li> </ul> <p>NOTE: The preceding service center address is provides as example only. Set the variables enclosed in curly brackets ({}) as needed. The data returned via HTTP is in JSON format.</p> <h3 id="method-2-using-the-open-source-code-api"><strong>Method 2: Using the open-source code API</strong></h3> <p>During the development of the microservice application, you only need to call the API provided by the tool RegistryUtil.java in the ServiceComb framework code to obtain the information in the Service Center. The API is described as follows:</p> <ul> <li>Obtain all microservice information <div class="language-java highlighter-rouge"><pre class="highlight"><code> <span class="n">List</span><span class="o">&lt;</span><span class="n">Microservice</span><span class="o">&gt;</span> <span class="nf">getAllMicroservices</span><span class="o">();</span> </code></pre> </div> </li> <li>Obtain the unique ID of the microservice. <div class="language-java highlighter-rouge"><pre class="highlight"><code> <span class="n">String</span> <span class="nf">getMicroserviceId</span><span class="o">(</span><span class="n">String</span> <span class="n">appId</span><span class="o">,</span> <span class="n">String</span> <span class="n">microserviceName</span><span class="o">,</span> <span class="n">String</span> <span class="n">versionRule</span><span class="o">);</span> </code></pre> </div> </li> <li>Query the microservice static information based on the unique ID of the microservice. <div class="language-java highlighter-rouge"><pre class="highlight"><code> <span class="n">Microservice</span> <span class="nf">getMicroservice</span><span class="o">(</span><span class="n">String</span> <span class="n">microserviceId</span><span class="o">);</span> </code></pre> </div> </li> <li>Query all the microservice instance information based on the unique IDs of the microservices. <div class="language-java highlighter-rouge"><pre class="highlight"><code> <span class="n">List</span><span class="o">&lt;</span><span class="n">MicroserviceInstance</span><span class="o">&gt;</span> <span class="nf">getMicroserviceInstance</span><span class="o">(</span><span class="n">String</span> <span class="n">consumerId</span><span class="o">,</span> <span class="n">String</span> <span class="n">providerId</span><span class="o">);</span> </code></pre> </div> </li> <li>Query the instance end points information based on the application, interface, and version. <div class="language-java highlighter-rouge"><pre class="highlight"><code> <span class="n">List</span><span class="o">&lt;</span><span class="n">MicroserviceInstance</span><span class="o">&gt;</span> <span class="nf">findServiceInstance</span><span class="o">(</span><span class="n">String</span> <span class="n">consumerId</span><span class="o">,</span> <span class="n">String</span> <span class="n">appId</span><span class="o">,</span> <span class="n">String</span> <span class="n">serviceName</span><span class="o">,</span><span class="n">String</span> <span class="n">versionRule</span><span class="o">);</span> </code></pre> </div> </li> </ul> <p>You can obtain information about the microservice and instance of the Service Center using the HTTP API to dynamically update the Nginx configuration using confd.</p> </section> <footer class="page__meta"> </footer> </div> </article> </div> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <div align="center" style="margin: 0 0;"> <ins class="adsbygoogle" style="display:block; border-bottom: initial;" data-ad-client="ca-pub-7328585512091257" data-ad-slot="3049671934" data-ad-format="auto"></ins> </div> <div class="page__footer"> <footer> <!-- start custom footer snippets --> <!-- end custom footer snippets --> <div class="container"> <div class="row justify-content-md-center"> <div class="col"> <ul> <p class="header">Resources</p> <li><a href="/docs/quick-start/">Quick Start</a></li> <li><a href="/users/user-guide/">User Guide</a></li> <li><a href="/slides/">Slides</a></li> <li><a href="/users/faq/">Common Questions</a></li> </ul> </div> <div class="col"> <ul> <p class="header">Contribute</p> <li><a href="https://github.com/apache/incubator-servicecomb-website/issues/new?title=Issue with _users/nginx.md">Report a Doc Issue</a></li> <li><a href="https://github.com/apache/incubator-servicecomb-website/edit/master/_users/nginx.md">Edit This Page on Github</a></li> <li><a href="/developers/submit-codes/">Code Submit Guide</a></li> </ul> </div> <div class="col"> <ul class="social-icons"> <p class="header">Community</p> <li> <a href="mailto:dev-subscribe@servicecomb.incubator.apache.org" rel="nofollow"><span class="mail">Mailing List</span></a> </li> <li> <a href="https://github.com/apache?q=ServiceComb" target="_blank"><span class="github">Github</span></a> </li> <li> <a href="https://twitter.com/ServiceComb" target="_blank"><span class="twitter">Twitter</span></a> </li> <li> <a href="/feed.xml" target="_blank"><span class="rss">Feed</span></a> </li> </ul> </div> </div> </div> <div class="page__footer-bottom"> <div>&copy; 2018 Apache ServiceComb (incubating). Powered by <a href="http://jekyllrb.com" rel="nofollow">Jekyll</a> &amp; <a href="https://mademistakes.com/work/minimal-mistakes-jekyll-theme/" rel="nofollow">Minimal Mistakes</a>.</div> </div> </footer> </div> <script src="/assets/js/main.min.js"></script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-101622733-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
bonfire/_functions/testjumptonamedpagereplacesjustthatframe.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: testjumptonamedpagereplacesjustthatframe()</title> <link rel="stylesheet" href="../sample.css" type="text/css"> <link rel="stylesheet" href="../sample-print.css" type="text/css" media="print"> <style id="hilight" type="text/css"></style> <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> </head> <body bgcolor="#ffffff" text="#000000" link="#801800" vlink="#300540" alink="#ffffff"> <table class="pagetitle" width="100%"> <tr> <td valign="top" class="pagetitle"> [ <a href="../index.html">Index</a> ] </td> <td align="right" class="pagetitle"> <h2 style="margin-bottom: 0px">PHP Cross Reference of Unnamed Project</h2> </td> </tr> </table> <!-- Generated by PHPXref 0.7.1 at Thu Oct 23 18:57:41 2014 --> <!-- PHPXref (c) 2000-2010 Gareth Watts - gareth@omnipotent.net --> <!-- http://phpxref.sourceforge.net/ --> <script src="../phpxref.js" type="text/javascript"></script> <script language="JavaScript" type="text/javascript"> <!-- ext='.html'; relbase='../'; subdir='_functions'; filename='index.html'; cookiekey='phpxref'; handleNavFrame(relbase, subdir, filename); logFunction('testjumptonamedpagereplacesjustthatframe'); // --> </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#testjumptonamedpagereplacesjustthatframe">testjumptonamedpagereplacesjustthatframe()</a></h2> <b>Defined at:</b><ul> <li><a href="../tests/simpletest/test/acceptance_test.php.html#testjumptonamedpagereplacesjustthatframe">/tests/simpletest/test/acceptance_test.php</a> -> <a onClick="logFunction('testjumptonamedpagereplacesjustthatframe', '/tests/simpletest/test/acceptance_test.php.source.html#l1484')" href="../tests/simpletest/test/acceptance_test.php.source.html#l1484"> line 1484</a></li> </ul> <b>No references found.</b><br><br> </ul> <!-- A link to the phpxref site in your customized footer file is appreciated ;-) --> <br><hr> <table width="100%"> <tr><td>Generated: Thu Oct 23 18:57:41 2014</td> <td align="right"><i>Cross-referenced by <a href="http://phpxref.sourceforge.net/">PHPXref 0.7.1</a></i></td> </tr> </table> </body></html>
templates/manage/api/requests/remove.html
nicolabricot/MoodPicker
<!doctype html> <html> <head> {include="../../../inc/head"} </head> <body class="index"> {include="../../../inc/navbar"} <div class="container"> <ol class="breadcrumb espace-bottom"> <li><a href="{$URL}">{$app_name}</a></li> <li><a href="{$URL}manage">Manage</a></li> <li><a href="{$URL}manage/api">API</a></li> <li><a href="{$URL}manage/api/requests">Requests</a></li> <li class="active">Remove</li> </ol> <div class="page-header no-espace-top espace-bottom"> <h1>Remove <small>API requests</small></h1> </div> <form class="form-horizontal" role="form" method="post"> {if="isset($form_error)"} <div class="alert alert-danger col-sm-8 col-sm-offset-2"><strong>Oups!</strong> {$form_error}</div> <div class="clearfix"></div> {/if} <div class="form-group"> <div class="col-sm-offset-2 col-sm-8"> <div class="checkbox"> <label for="delete"> <input type="checkbox" name="delete" id="delete" autofocus /> Yes I’m absolutly sure I want to remove the API request of <strong>{$request.email}</strong>. </label> </div> </div> </div> {if="$request.isApiActive"} <div class="form-group"> <div class="col-sm-offset-2 col-sm-8"> <div class="checkbox"> <label for="delete_api"> <input type="checkbox" name="delete_api" id="delete_api" {if="isset($form_data.delete_api) && $form_data.delete_api"}checked{/if} /> Delete the related API credentials too. </label> </div> </div> </div> {/if} <input type="hidden" value="{$token}" name="token" /> <input type="hidden" value="{$request.id}" name="request_id" /> <div class="form-group form-controls"> <div class="col-sm-offset-2 col-sm-8"> <button type="submit" class="btn btn-danger">Remove</button> <a href="{$URL}manage/api/requests" class="btn btn-default tip" title="Return to API requests list" data-placement="right">Back to safety</a> </div> </div> </form> </div> {include="../../../inc/footer"} {include="../../../inc/script"} </body> </html>
app/views/login.html
johnnyluu/DementiaSmartWatch-web
<div id='login' class="container"> <h2>Please log in</h2> <form method="post" ng-submit = "login()" id="loginForm"> <input type="text" name="user" id="user" required title="2 characters minimum" placeholder="username" ng-model='user'> <input type="password" name="pass" id="pass" required title="2 characters minimum" placeholder="password" ng-model='pass'> <input type="submit" value="Login" id="subbut"> </form> </div>
2017.10.2/apidocs/org/wildfly/swarm/config/transactions/class-use/CommitMarkableResourceSupplier.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 Interface org.wildfly.swarm.config.transactions.CommitMarkableResourceSupplier (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 Interface org.wildfly.swarm.config.transactions.CommitMarkableResourceSupplier (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/transactions/CommitMarkableResourceSupplier.html" title="interface in org.wildfly.swarm.config.transactions">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/transactions/class-use/CommitMarkableResourceSupplier.html" target="_top">Frames</a></li> <li><a href="CommitMarkableResourceSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.transactions.CommitMarkableResourceSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.transactions.CommitMarkableResourceSupplier</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/transactions/CommitMarkableResourceSupplier.html" title="interface in org.wildfly.swarm.config.transactions">CommitMarkableResourceSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/transactions/CommitMarkableResourceSupplier.html" title="interface in org.wildfly.swarm.config.transactions">CommitMarkableResourceSupplier</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/transactions/CommitMarkableResourceSupplier.html" title="interface in org.wildfly.swarm.config.transactions">CommitMarkableResourceSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/Transactions.html" title="type parameter in Transactions">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Transactions.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Transactions.html#commitMarkableResource-org.wildfly.swarm.config.transactions.CommitMarkableResourceSupplier-">commitMarkableResource</a></span>(<a href="../../../../../../org/wildfly/swarm/config/transactions/CommitMarkableResourceSupplier.html" title="interface in org.wildfly.swarm.config.transactions">CommitMarkableResourceSupplier</a>&nbsp;supplier)</code> <div class="block">Install a supplied CommitMarkableResource 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/transactions/CommitMarkableResourceSupplier.html" title="interface in org.wildfly.swarm.config.transactions">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/transactions/class-use/CommitMarkableResourceSupplier.html" target="_top">Frames</a></li> <li><a href="CommitMarkableResourceSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
2.4.1.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/management/security_realm/class-use/LdapAuthentication.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 Jul 17 09:40:06 MST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.config.management.security_realm.LdapAuthentication (BOM: * : All 2.4.1.Final-SNAPSHOT API)</title> <meta name="date" content="2019-07-17"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.wildfly.swarm.config.management.security_realm.LdapAuthentication (BOM: * : All 2.4.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/management/security_realm/LdapAuthentication.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">Thorntail API, 2.4.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/management/security_realm/class-use/LdapAuthentication.html" target="_top">Frames</a></li> <li><a href="LdapAuthentication.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.config.management.security_realm.LdapAuthentication" class="title">Uses of Class<br>org.wildfly.swarm.config.management.security_realm.LdapAuthentication</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/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.management">org.wildfly.swarm.config.management</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.management.security_realm">org.wildfly.swarm.config.management.security_realm</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.management"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</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> that return <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</a></code></td> <td class="colLast"><span class="typeNameLabel">SecurityRealm.SecurityRealmResources.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/management/SecurityRealm.SecurityRealmResources.html#ldapAuthentication--">ldapAuthentication</a></span>()</code> <div class="block">Configuration to use LDAP as the user repository.</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/management/package-summary.html">org.wildfly.swarm.config.management</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/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#ldapAuthentication-org.wildfly.swarm.config.management.security_realm.LdapAuthentication-">ldapAuthentication</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</a>&nbsp;value)</code> <div class="block">Configuration to use LDAP as the user repository.</div> </td> </tr> </tbody> </table> </li> <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/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</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 classes, and an explanation"> <caption><span>Classes in <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/package-summary.html">org.wildfly.swarm.config.management.security_realm</a> with type parameters of type <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</a>&lt;T extends <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</a>&lt;T&gt;&gt;</span></code> <div class="block">Configuration to use LDAP as the user repository.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthenticationConsumer.html" title="interface in org.wildfly.swarm.config.management.security_realm">LdapAuthenticationConsumer</a>&lt;T extends <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</a>&lt;T&gt;&gt;</span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthenticationSupplier.html" title="interface in org.wildfly.swarm.config.management.security_realm">LdapAuthenticationSupplier</a>&lt;T extends <a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</a>&gt;</span></code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../org/wildfly/swarm/config/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/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthentication.html" title="class in org.wildfly.swarm.config.management.security_realm">LdapAuthentication</a></code></td> <td class="colLast"><span class="typeNameLabel">LdapAuthenticationSupplier.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/management/security_realm/LdapAuthenticationSupplier.html#get--">get</a></span>()</code> <div class="block">Constructed instance of LdapAuthentication 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/management/security_realm/LdapAuthentication.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">Thorntail API, 2.4.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/management/security_realm/class-use/LdapAuthentication.html" target="_top">Frames</a></li> <li><a href="LdapAuthentication.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
lib/poi-3.16-beta1/docs/apidocs/org/apache/poi/hwmf/record/class-use/HwmfDraw.WmfPolyline.html
Aarhus-BSS/Aarhus-Research-Rebuilt
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>Uses of Class org.apache.poi.hwmf.record.HwmfDraw.WmfPolyline (POI API Documentation)</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.poi.hwmf.record.HwmfDraw.WmfPolyline (POI API Documentation)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/poi/hwmf/record/HwmfDraw.WmfPolyline.html" title="class in org.apache.poi.hwmf.record">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/poi/hwmf/record//class-useHwmfDraw.WmfPolyline.html" target="_top">FRAMES</a></li> <li><a href="HwmfDraw.WmfPolyline.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.poi.hwmf.record.HwmfDraw.WmfPolyline" class="title">Uses of Class<br>org.apache.poi.hwmf.record.HwmfDraw.WmfPolyline</h2> </div> <div class="classUseContainer">No usage of org.apache.poi.hwmf.record.HwmfDraw.WmfPolyline</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/poi/hwmf/record/HwmfDraw.WmfPolyline.html" title="class in org.apache.poi.hwmf.record">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/poi/hwmf/record//class-useHwmfDraw.WmfPolyline.html" target="_top">FRAMES</a></li> <li><a href="HwmfDraw.WmfPolyline.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 2016 The Apache Software Foundation or its licensors, as applicable.</i> </small></p> </body> </html>
tags/arch-linux/page/9/index.html
lvguowei/lvguowei.github.io
<!DOCTYPE HTML> <html> <head> <title>Arch Linux - Guowei Lv</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="generator" content="Hugo 0.25.1" /> <link rel="apple-touch-icon-precomposed" href='https://www.lvguowei.me/favicon/apple-touch-icon-precomposed.png'> <link rel="icon" href='https://www.lvguowei.me/favicon/favicon.png'> <meta name="msapplication-TileColor" content="#da532c"> <meta name="msapplication-TileImage" content='/favicon/mstile.png'> <meta name="description" content="Guowei Lv"> <meta property="og:title" content="Arch Linux" /> <meta property="og:description" content="Guowei Lv" /> <meta property="og:type" content="website" /> <meta property="og:url" content="https://www.lvguowei.me/tags/arch-linux/" /> <meta property="og:updated_time" content="2016-12-23T12:25:51&#43;02:00"/> <meta itemprop="name" content="Arch Linux"> <meta itemprop="description" content="Guowei Lv"> <link rel="stylesheet" href="https://www.lvguowei.me/css/google-font.css" /> <link rel="stylesheet" href="https://www.lvguowei.me/css/font-awesome.min.css" /> <link rel="stylesheet" href="https://www.lvguowei.me/css/main.css" /> <link rel="stylesheet" href="https://www.lvguowei.me/css/add-on.css" /> <link rel="stylesheet" href="https://www.lvguowei.me/css/monokai-sublime.css"> <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-71831707-2', 'auto'); ga('send', 'pageview'); </script> </head> <body> <div id="wrapper"> <header id="header"> <h2><a href="https://www.lvguowei.me/">Guowei Lv</i></a></h2> <nav class="links"> <ul> <li> <a href="https://www.lvguowei.me/post"> <i class="fa fa-newspaper-o">&nbsp;</i>Blog </a> </li> <li> <a href="https://www.lvguowei.me/categories"> Categories </a> </li> <li> <a href="https://www.lvguowei.me/about"> About </a> </li> </ul> </nav> <nav class="main"> <ul> <li class="search"> <a class="fa-search" href="#search">Search</a> <form id="search" method="get" action="//google.com/search"> <input type="text" name="q" placeholder="Search" /> <input type="hidden" name="as_sitesearch" value="https://www.lvguowei.me/"> </form> </li> <li class="menu"> <a class="fa-bars" href="#menu">Menu</a> </li> </ul> </nav> </header> <section id="menu"> <section> <form class="search" method="get" action="//google.com/search"> <input type="text" name="q" placeholder="Search" /> <input type="hidden" name="q" value="site:https://www.lvguowei.me/"> </form> </section> <section> <ul class="links"> <li> <a href="https://www.lvguowei.me/post"> <h3> <i class="fa fa-newspaper-o">&nbsp;</i> Blog </h3> </a> </li> <li> <a href="https://www.lvguowei.me/categories"> <h3> Categories </h3> </a> </li> <li> <a href="https://www.lvguowei.me/about"> <h3> About </h3> </a> </li> </ul> </section> <section> <ul class="links"> <header> <h3>Recent Posts</h3> </header> <li> <a href="https://www.lvguowei.me/post/all-you-need-to-know-about-android-espresso-testing-4/"><p>All You Need To Know About Android Espresso Testing (Part IV)</p></a> </li> <li> <a href="https://www.lvguowei.me/post/all-you-need-to-know-about-android-espresso-testing-3/"><p>All You Need To Know About Android Espresso Testing (Part III)</p></a> </li> <li> <a href="https://www.lvguowei.me/post/all-you-need-to-know-about-android-espresso-testing-2/"><p>All You Need To Know About Android Espresso Testing (Part II)</p></a> </li> <li> <a href="https://www.lvguowei.me/post/how-to-follow-hand-made-hero-on-linux/"><p>How To Follow Hand Made Hero On Linux</p></a> </li> <li> <a href="https://www.lvguowei.me/post/all-you-need-to-know-about-android-espresso-testing/"><p>All You Need To Know About Android Espresso Testing (Part I)</p></a> </li> </ul> </section> </section> <div id="main"> <article class="post"> <header> <div class="title"> <h2><a href="https://www.lvguowei.me/post/first-android-lib/">My first Android library!</a></h2> </div> <div class="meta"> <time class="published" datetime='2016-12-23'> December 23, 2016</time> <span class="author"></span> <p>1 minute read</p> </div> </header> <p>I published my first android library for creating customized progressbar. Go check here!</p> <footer> <ul class="actions"> <li><a href="https://www.lvguowei.me/post/first-android-lib/" class="button big">Continue Reading</a></li> </ul> <ul class="stats"> <li> Category </li> <li><a href='https://www.lvguowei.me/categories/android-library'>Android Library</a></li> </ul> </footer> </article> <article class="post"> <header> <div class="title"> <h2><a href="https://www.lvguowei.me/post/stub-and-mock-harmful/">Are Stubs and Mocks Harmful?</a></h2> </div> <div class="meta"> <time class="published" datetime='2016-12-18'> December 18, 2016</time> <span class="author"></span> <p>5 minute read</p> </div> </header> <p>I stumbled upon this video, and boy it is so amazing! (if you ignore the annoying audience asking non-stop some annoying questions). This is clearly one of the most inspiring videos I have ever watched. So I must take some notes down and spread the idea as well. I deeply believe that it is actually easy to make things complicated, on the contrary, it is hard to make things simple and elegant.</p> <footer> <ul class="actions"> <li><a href="https://www.lvguowei.me/post/stub-and-mock-harmful/" class="button big">Continue Reading</a></li> </ul> <ul class="stats"> <li> Category </li> <li><a href='https://www.lvguowei.me/categories/test-driven-development'>Test Driven Development</a></li> </ul> </footer> </article> <article class="post"> <header> <div class="title"> <h2><a href="https://www.lvguowei.me/post/coffee-maker/">Coffee Maker - An OOD case study</a></h2> </div> <div class="meta"> <time class="published" datetime='2016-12-18'> December 18, 2016</time> <span class="author"></span> <p>3 minute read</p> </div> </header> <p>This case study is to show case how to design classes that interact with each other to form a component. The problem is to implement a software component that controls a coffee maker. Requirement The Mark IV Special makes up to 12 cups of coffee at a time. The user places a filter in the filter holder, fills the filter with coffee grounds, and slides the filter holder into its receptacle.</p> <footer> <ul class="actions"> <li><a href="https://www.lvguowei.me/post/coffee-maker/" class="button big">Continue Reading</a></li> </ul> <ul class="stats"> <li> Category </li> <li><a href='https://www.lvguowei.me/categories//object-oriented-design'>Object Oriented Design</a></li> </ul> </footer> </article> <article class="post"> <header> <div class="title"> <h2><a href="https://www.lvguowei.me/post/interface-segregation-principle-android-logger/">Use Interface Segregation Principle to Implement an Android Logger</a></h2> </div> <div class="meta"> <time class="published" datetime='2016-12-08'> December 8, 2016</time> <span class="author"></span> <p>1 minute read</p> </div> </header> <p>Recently at work we has been talking about implementing some kind of Analytic interface for all the analytic libraries we are using, like Localytics and Firebase and so on. Basically it is just a fat interface with a long list of event logging functions, like logSignIn(), logSignOut(), logSellProduct(), logOpenMap() and so on. There are about 40 such methods in that interface. So this is how we implemented it in the first place.</p> <footer> <ul class="actions"> <li><a href="https://www.lvguowei.me/post/interface-segregation-principle-android-logger/" class="button big">Continue Reading</a></li> </ul> <ul class="stats"> <li> Category </li> <li><a href='https://www.lvguowei.me/categories/object-oriented-design'>Object Oriented Design</a></li> </ul> </footer> </article> <article class="post"> <header> <div class="title"> <h2><a href="https://www.lvguowei.me/post/expense-report-case-study/">Expense Report Case Study</a></h2> </div> <div class="meta"> <time class="published" datetime='2016-12-06'> December 6, 2016</time> <span class="author"></span> <p>2 minute read</p> </div> </header> <p>One day, I was watching another Uncle Bob&rsquo;s video (yes, they are addictive), when I see one example he gave when talking about open closed principle, it ringed a bell in my head. This looked familiar! The type in some data classes, some switchs or ifs, some &amp;&amp;s and ||s all dancing around in the class. I can almost hear them teasing: &ldquo;Come and catch me! Come and catch me!&rdquo;.</p> <footer> <ul class="actions"> <li><a href="https://www.lvguowei.me/post/expense-report-case-study/" class="button big">Continue Reading</a></li> </ul> <ul class="stats"> <li> Category </li> <li><a href='https://www.lvguowei.me/categories/object-oriented-design'>Object Oriented Design</a></li> </ul> </footer> </article> <ul class="actions pagination"> <li><a href="https://www.lvguowei.me/tags/arch-linux/page/8/" class="button big previous">Previous Page</a></li> <li><a href="https://www.lvguowei.me/tags/arch-linux/page/10/" class="button big next">Next Page</a></li> </ul> </div> <section id="sidebar"> <section id="intro"> <a href="https://www.lvguowei.me/" class="logo"><img src="https://www.lvguowei.me/img/logo.jpg" alt="Guowei Lv" /></a> <header> <h2>Guowei Lv</h2> <p>Keep sane and code</p> </header> <ul class="icons"> <li><a href="https://www.lvguowei.me/tags/arch-linux/index.xml" type="application/rss+xml" target="_blank" title="RSS" class="fa fa-rss"></a></li> <li><a href="//github.com/lvguowei" target="_blank" title="GitHub" class="fa fa-github"></a></li> <li><a href="//lvguowei.deviantart.com/" target="_blank" title="DeviantArt" class="fa fa-deviantart"></a></li> <li><a href="//linkedin.com/in/lvguowei" target="_blank" title="LinkedIn" class="fa fa-linkedin"></a></li> <li><a href="mailto:lvguowei1002@gmail.com" title="Email" class="fa fa-envelope"></a></li> </ul> </section> <section id="recent-posts"> <ul class="posts"> <header> <h3>Recent Posts</h3> </header> <li> <article> <header> <h3><a href="https://www.lvguowei.me/post/all-you-need-to-know-about-android-espresso-testing-4/">All You Need To Know About Android Espresso Testing (Part IV)</a></h3> <time class="published" datetime= '2017-07-21'> July 21, 2017</time> </header> </article> </li> <li> <article> <header> <h3><a href="https://www.lvguowei.me/post/all-you-need-to-know-about-android-espresso-testing-3/">All You Need To Know About Android Espresso Testing (Part III)</a></h3> <time class="published" datetime= '2017-07-21'> July 21, 2017</time> </header> </article> </li> <li> <article> <header> <h3><a href="https://www.lvguowei.me/post/all-you-need-to-know-about-android-espresso-testing-2/">All You Need To Know About Android Espresso Testing (Part II)</a></h3> <time class="published" datetime= '2017-07-21'> July 21, 2017</time> </header> </article> </li> <li> <article> <header> <h3><a href="https://www.lvguowei.me/post/how-to-follow-hand-made-hero-on-linux/">How To Follow Hand Made Hero On Linux</a></h3> <time class="published" datetime= '2017-07-20'> July 20, 2017</time> </header> </article> </li> <li> <article> <header> <h3><a href="https://www.lvguowei.me/post/all-you-need-to-know-about-android-espresso-testing/">All You Need To Know About Android Espresso Testing (Part I)</a></h3> <time class="published" datetime= '2017-07-13'> July 13, 2017</time> </header> </article> </li> <li> <ul class="actions"> <li><a href= "/post/" class="button">View more posts</a></li> </ul> </li> </ul> </section> <section id="categories"> <ul class="posts"> <header> <h3><a href="https://www.lvguowei.me/categories/">Categories</a></h3> </header> <li> <article> <header> <a href="https://www.lvguowei.me/categories/programming-kata/">programming kata</a> <span style="float:right;">15</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/android-development/">Android Development</a> <span style="float:right;">12</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/finnish-learning/">Finnish Learning</a> <span style="float:right;">10</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/object-oriented-design/">Object Oriented Design</a> <span style="float:right;">7</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/android-library/">Android Library</a> <span style="float:right;">3</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/c&#43;&#43;-primer/">C&#43;&#43; Primer</a> <span style="float:right;">3</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/clojure/">Clojure</a> <span style="float:right;">3</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/painting/">Painting</a> <span style="float:right;">3</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/ranting/">Ranting</a> <span style="float:right;">3</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/refactoring/">Refactoring</a> <span style="float:right;">3</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/hand-made-hero/">Hand Made Hero</a> <span style="float:right;">2</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/sicp/">SICP</a> <span style="float:right;">2</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/test-driven-development/">Test Driven Development</a> <span style="float:right;">2</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/android-programming/">Android Programming</a> <span style="float:right;">1</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/books/">Books</a> <span style="float:right;">1</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/concurrent-programming/">Concurrent Programming</a> <span style="float:right;">1</span> </header> </article> </li> <li> <article> <header> <a href="https://www.lvguowei.me/categories/perfume/">Perfume</a> <span style="float:right;">1</span> </header> </article> </li> </ul> </section> <section class="blurb"> <h2>About</h2> <p>Welcome to my personal website. In here, I talk about programming in general and other cool stuff. Stay tuned!</p> <ul class="actions"> <li><a href="https://www.lvguowei.me/about/" class="button">Learn More</a></li> </ul> </section> <section id="footer"> <ul class="icons"> <li><a href="https://www.lvguowei.me/tags/arch-linux/index.xml" type="application/rss+xml" target="_blank" title="RSS" class="fa fa-rss"></a></li> <li><a href="//github.com/lvguowei" target="_blank" title="GitHub" class="fa fa-github"></a></li> <li><a href="//lvguowei.deviantart.com/" target="_blank" title="DeviantArt" class="fa fa-deviantart"></a></li> <li><a href="//linkedin.com/in/lvguowei" target="_blank" title="LinkedIn" class="fa fa-linkedin"></a></li> <li><a href="mailto:lvguowei1002@gmail.com" title="Email" class="fa fa-envelope"></a></li> </ul> <p class="copyright">&copy; Guowei Lv. </p> </section> </section> </div> <a id="back-to-top" href="#" class="fa fa-arrow-up fa-border fa-2x"></a> <script src="https://www.lvguowei.me/js/jquery.min.js"></script> <script src="https://www.lvguowei.me/js/skel.min.js"></script> <script src="https://www.lvguowei.me/js/util.js"></script> <script src="https://www.lvguowei.me/js/main.js"></script> <script src="https://www.lvguowei.me/js/backToTop.js"></script> <script src="https://www.lvguowei.me/js/highlight.pack.js"></script> <script>hljs.initHighlightingOnLoad();</script> </body> </html>
web/src/main/webapp/resources/css/vendor/jstree.min.css
mpi2/PhenotypeData
.jstree-node,.jstree-children,.jstree-container-ul{display:block;margin:0;padding:0;list-style-type:none;list-style-image:none} .jstree-node{white-space:nowrap} .jstree-anchor{display:inline-block;color:#000;white-space:nowrap;padding:0 4px 0 1px;margin:0;vertical-align:top} .jstree-anchor:focus{outline:0} .jstree-anchor,.jstree-anchor:link,.jstree-anchor:visited,.jstree-anchor:hover,.jstree-anchor:active{text-decoration:none;color:inherit} .jstree-icon{display:inline-block;text-decoration:none;margin:0;padding:0;vertical-align:top;text-align:center} .jstree-icon:empty{display:inline-block;text-decoration:none;margin:0;padding:0;vertical-align:top;text-align:center} .jstree-ocl{cursor:pointer} .jstree-leaf>.jstree-ocl{cursor:default} .jstree .jstree-open>.jstree-children{display:block} .jstree .jstree-closed>.jstree-children,.jstree .jstree-leaf>.jstree-children{display:none} .jstree-anchor>.jstree-themeicon{margin-right:2px} .jstree-no-icons .jstree-themeicon,.jstree-anchor>.jstree-themeicon-hidden{display:none} .jstree-hidden,.jstree-node.jstree-hidden{display:none} .jstree-rtl .jstree-anchor{padding:0 1px 0 4px} .jstree-rtl .jstree-anchor>.jstree-themeicon{margin-left:2px;margin-right:0} .jstree-rtl .jstree-node{margin-left:0} .jstree-rtl .jstree-container-ul>.jstree-node{margin-right:0} .jstree-wholerow-ul{position:relative;display:inline-block;min-width:100%} .jstree-wholerow-ul .jstree-leaf>.jstree-ocl{cursor:pointer} .jstree-wholerow-ul .jstree-anchor,.jstree-wholerow-ul .jstree-icon{position:relative} .jstree-wholerow-ul .jstree-wholerow{width:100%;cursor:pointer;position:absolute;left:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none} .vakata-context{display:none} .vakata-context,.vakata-context ul{margin:0;padding:2px;position:absolute;background:#f5f5f5;border:1px solid #979797;box-shadow:2px 2px 2px #999} .vakata-context ul{list-style:none;left:100%;margin-top:-2.7em;margin-left:-4px} .vakata-context .vakata-context-right ul{left:auto;right:100%;margin-left:auto;margin-right:-4px} .vakata-context li{list-style:none} .vakata-context li>a{display:block;padding:0 2em;text-decoration:none;width:auto;color:#000;white-space:nowrap;line-height:2.4em;text-shadow:1px 1px 0 #fff;border-radius:1px} .vakata-context li>a:hover{position:relative;background-color:#e8eff7;box-shadow:0 0 2px #0a6aa1} .vakata-context li>a.vakata-context-parent{background-image:url(data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==);background-position:right center;background-repeat:no-repeat} .vakata-context li>a:focus{outline:0} .vakata-context .vakata-context-hover>a{position:relative;background-color:#e8eff7;box-shadow:0 0 2px #0a6aa1} .vakata-context .vakata-context-separator>a,.vakata-context .vakata-context-separator>a:hover{background:#fff;border:0;border-top:1px solid #e2e3e3;height:1px;min-height:1px;max-height:1px;padding:0;margin:0 0 0 2.4em;border-left:1px solid #e0e0e0;text-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent;border-radius:0} .vakata-context .vakata-contextmenu-disabled a,.vakata-context .vakata-contextmenu-disabled a:hover{color:silver;background-color:transparent;border:0;box-shadow:0 0 0} .vakata-context li>a>i{text-decoration:none;display:inline-block;width:2.4em;height:2.4em;background:0 0;margin:0 0 0 -2em;vertical-align:top;text-align:center;line-height:2.4em} .vakata-context li>a>i:empty{width:2.4em;line-height:2.4em} .vakata-context li>a .vakata-contextmenu-sep{display:inline-block;width:1px;height:2.4em;background:#fff;margin:0 .5em 0 0;border-left:1px solid #e2e3e3} .vakata-context .vakata-contextmenu-shortcut{font-size:.8em;color:silver;opacity:.5;display:none} .vakata-context-rtl ul{left:auto;right:100%;margin-left:auto;margin-right:-4px} .vakata-context-rtl li>a.vakata-context-parent{background-image:url(data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7);background-position:left center;background-repeat:no-repeat} .vakata-context-rtl .vakata-context-separator>a{margin:0 2.4em 0 0;border-left:0;border-right:1px solid #e2e3e3} .vakata-context-rtl .vakata-context-left ul{right:auto;left:100%;margin-left:-4px;margin-right:auto} .vakata-context-rtl li>a>i{margin:0 -2em 0 0} .vakata-context-rtl li>a .vakata-contextmenu-sep{margin:0 0 0 .5em;border-left-color:#fff;background:#e2e3e3} #jstree-marker{position:absolute;top:0;left:0;margin:-5px 0 0 0;padding:0;border-right:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid;width:0;height:0;font-size:0;line-height:0} #jstree-dnd{line-height:16px;margin:0;padding:4px} #jstree-dnd .jstree-icon,#jstree-dnd .jstree-copy{display:inline-block;text-decoration:none;margin:0 2px 0 0;padding:0;width:16px;height:16px} #jstree-dnd .jstree-ok{background:green} #jstree-dnd .jstree-er{background:red} #jstree-dnd .jstree-copy{margin:0 2px} .jstree-default .jstree-node,.jstree-default .jstree-icon{background-repeat:no-repeat;background-color:transparent} .jstree-default .jstree-anchor,.jstree-default .jstree-wholerow{transition:background-color .15s,box-shadow .15s} .jstree-default .jstree-hovered{background:#e7f4f9;border-radius:2px;box-shadow:inset 0 0 1px #ccc} .jstree-default .jstree-context{background:#e7f4f9;border-radius:2px;box-shadow:inset 0 0 1px #ccc} .jstree-default .jstree-clicked{background:#beebff;border-radius:2px;box-shadow:inset 0 0 1px #999} .jstree-default .jstree-no-icons .jstree-anchor>.jstree-themeicon{display:none} .jstree-default .jstree-disabled{background:0 0;color:#666} .jstree-default .jstree-disabled.jstree-hovered{background:0 0;box-shadow:none} .jstree-default .jstree-disabled.jstree-clicked{background:#efefef} .jstree-default .jstree-disabled>.jstree-icon{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)} .jstree-default .jstree-search{font-style:italic;color:#8b0000;font-weight:700} .jstree-default .jstree-no-checkboxes .jstree-checkbox{display:none!important} .jstree-default.jstree-checkbox-no-clicked .jstree-clicked{background:0 0;box-shadow:none} .jstree-default.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered{background:#e7f4f9} .jstree-default.jstree-checkbox-no-clicked>.jstree-wholerow-ul .jstree-wholerow-clicked{background:0 0} .jstree-default.jstree-checkbox-no-clicked>.jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered{background:#e7f4f9} .jstree-default>.jstree-striped{min-width:100%;display:inline-block;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==) left top repeat} .jstree-default>.jstree-wholerow-ul .jstree-hovered,.jstree-default>.jstree-wholerow-ul .jstree-clicked{background:0 0;box-shadow:none;border-radius:0} .jstree-default .jstree-wholerow{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box} .jstree-default .jstree-wholerow-hovered{background:#e7f4f9} .jstree-default .jstree-wholerow-clicked{background:#beebff;background:-webkit-linear-gradient(top,#beebff 0,#a8e4ff 100%);background:linear-gradient(to bottom,#beebff 0,#a8e4ff 100%)} .jstree-default .jstree-node{min-height:24px;line-height:24px;margin-left:24px;min-width:24px} .jstree-default .jstree-anchor{line-height:24px;height:24px} .jstree-default .jstree-icon{width:24px;height:24px;line-height:24px} .jstree-default .jstree-icon:empty{width:24px;height:24px;line-height:24px} .jstree-default.jstree-rtl .jstree-node{margin-right:24px} .jstree-default .jstree-wholerow{height:24px} .jstree-default .jstree-node,.jstree-default .jstree-icon{background-image:url(../../img/jstree/32px.png)} .jstree-default .jstree-node{background-position:-292px -4px;background-repeat:repeat-y} .jstree-default .jstree-last{background:0 0} .jstree-default .jstree-open>.jstree-ocl{background-position:-132px -4px} .jstree-default .jstree-closed>.jstree-ocl{background-position:-100px -4px} .jstree-default .jstree-leaf>.jstree-ocl{background-position:-68px -4px} .jstree-default .jstree-themeicon{background-position:-260px -4px} .jstree-default>.jstree-no-dots .jstree-node,.jstree-default>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:0 0} .jstree-default>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-36px -4px} .jstree-default>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-4px -4px} .jstree-default .jstree-disabled{background:0 0} .jstree-default .jstree-disabled.jstree-hovered{background:0 0} .jstree-default .jstree-disabled.jstree-clicked{background:#efefef} .jstree-default .jstree-checkbox{background-position:-164px -4px} .jstree-default .jstree-checkbox:hover{background-position:-164px -36px} .jstree-default.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default .jstree-checked>.jstree-checkbox{background-position:-228px -4px} .jstree-default.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default .jstree-checked>.jstree-checkbox:hover{background-position:-228px -36px} .jstree-default .jstree-anchor>.jstree-undetermined{background-position:-196px -4px} .jstree-default .jstree-anchor>.jstree-undetermined:hover{background-position:-196px -36px} .jstree-default .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)} .jstree-default>.jstree-striped{background-size:auto 48px} .jstree-default.jstree-rtl .jstree-node{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==);background-position:100% 1px;background-repeat:repeat-y} .jstree-default.jstree-rtl .jstree-last{background:0 0} .jstree-default.jstree-rtl .jstree-open>.jstree-ocl{background-position:-132px -36px} .jstree-default.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-100px -36px} .jstree-default.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-68px -36px} .jstree-default.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:0 0} .jstree-default.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-36px -36px} .jstree-default.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-4px -36px} .jstree-default .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0} .jstree-default>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url(throbber.gif) center center no-repeat} .jstree-default .jstree-file{background:url(32px.png) -100px -68px no-repeat} .jstree-default .jstree-folder{background:url(32px.png) -260px -4px no-repeat} .jstree-default>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0} #jstree-dnd.jstree-default{line-height:24px;padding:0 4px} #jstree-dnd.jstree-default .jstree-ok,#jstree-dnd.jstree-default .jstree-er{background-image:url(32px.png);background-repeat:no-repeat;background-color:transparent} #jstree-dnd.jstree-default i{background:0 0;width:24px;height:24px;line-height:24px} #jstree-dnd.jstree-default .jstree-ok{background-position:-4px -68px} #jstree-dnd.jstree-default .jstree-er{background-position:-36px -68px} .jstree-default.jstree-rtl .jstree-node{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==)} .jstree-default.jstree-rtl .jstree-last{background:0 0} .jstree-default-small .jstree-node{min-height:18px;line-height:18px;margin-left:18px;min-width:18px} .jstree-default-small .jstree-anchor{line-height:18px;height:18px} .jstree-default-small .jstree-icon{width:18px;height:18px;line-height:18px} .jstree-default-small .jstree-icon:empty{width:18px;height:18px;line-height:18px} .jstree-default-small.jstree-rtl .jstree-node{margin-right:18px} .jstree-default-small .jstree-wholerow{height:18px} .jstree-default-small .jstree-node,.jstree-default-small .jstree-icon{background-image:url(32px.png)} .jstree-default-small .jstree-node{background-position:-295px -7px;background-repeat:repeat-y} .jstree-default-small .jstree-last{background:0 0} .jstree-default-small .jstree-open>.jstree-ocl{background-position:-135px -7px} .jstree-default-small .jstree-closed>.jstree-ocl{background-position:-103px -7px} .jstree-default-small .jstree-leaf>.jstree-ocl{background-position:-71px -7px} .jstree-default-small .jstree-themeicon{background-position:-263px -7px} .jstree-default-small>.jstree-no-dots .jstree-node,.jstree-default-small>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:0 0} .jstree-default-small>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-39px -7px} .jstree-default-small>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-7px -7px} .jstree-default-small .jstree-disabled{background:0 0} .jstree-default-small .jstree-disabled.jstree-hovered{background:0 0} .jstree-default-small .jstree-disabled.jstree-clicked{background:#efefef} .jstree-default-small .jstree-checkbox{background-position:-167px -7px} .jstree-default-small .jstree-checkbox:hover{background-position:-167px -39px} .jstree-default-small.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-small .jstree-checked>.jstree-checkbox{background-position:-231px -7px} .jstree-default-small.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-small .jstree-checked>.jstree-checkbox:hover{background-position:-231px -39px} .jstree-default-small .jstree-anchor>.jstree-undetermined{background-position:-199px -7px} .jstree-default-small .jstree-anchor>.jstree-undetermined:hover{background-position:-199px -39px} .jstree-default-small .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)} .jstree-default-small>.jstree-striped{background-size:auto 36px} .jstree-default-small.jstree-rtl .jstree-node{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==);background-position:100% 1px;background-repeat:repeat-y} .jstree-default-small.jstree-rtl .jstree-last{background:0 0} .jstree-default-small.jstree-rtl .jstree-open>.jstree-ocl{background-position:-135px -39px} .jstree-default-small.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-103px -39px} .jstree-default-small.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-71px -39px} .jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:0 0} .jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-39px -39px} .jstree-default-small.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:-7px -39px} .jstree-default-small .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0} .jstree-default-small>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url(throbber.gif) center center no-repeat} .jstree-default-small .jstree-file{background:url(32px.png) -103px -71px no-repeat} .jstree-default-small .jstree-folder{background:url(32px.png) -263px -7px no-repeat} .jstree-default-small>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0} #jstree-dnd.jstree-default-small{line-height:18px;padding:0 4px} #jstree-dnd.jstree-default-small .jstree-ok,#jstree-dnd.jstree-default-small .jstree-er{background-image:url(32px.png);background-repeat:no-repeat;background-color:transparent} #jstree-dnd.jstree-default-small i{background:0 0;width:18px;height:18px;line-height:18px} #jstree-dnd.jstree-default-small .jstree-ok{background-position:-7px -71px} #jstree-dnd.jstree-default-small .jstree-er{background-position:-39px -71px} .jstree-default-small.jstree-rtl .jstree-node{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==)} .jstree-default-small.jstree-rtl .jstree-last{background:0 0} .jstree-default-large .jstree-node{min-height:32px;line-height:32px;margin-left:32px;min-width:32px} .jstree-default-large .jstree-anchor{line-height:32px;height:32px} .jstree-default-large .jstree-icon{width:32px;height:32px;line-height:32px} .jstree-default-large .jstree-icon:empty{width:32px;height:32px;line-height:32px} .jstree-default-large.jstree-rtl .jstree-node{margin-right:32px} .jstree-default-large .jstree-wholerow{height:32px} .jstree-default-large .jstree-node,.jstree-default-large .jstree-icon{background-image:url(32px.png)} .jstree-default-large .jstree-node{background-position:-288px 0;background-repeat:repeat-y} .jstree-default-large .jstree-last{background:0 0} .jstree-default-large .jstree-open>.jstree-ocl{background-position:-128px 0} .jstree-default-large .jstree-closed>.jstree-ocl{background-position:-96px 0} .jstree-default-large .jstree-leaf>.jstree-ocl{background-position:-64px 0} .jstree-default-large .jstree-themeicon{background-position:-256px 0} .jstree-default-large>.jstree-no-dots .jstree-node,.jstree-default-large>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:0 0} .jstree-default-large>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-32px 0} .jstree-default-large>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:0 0} .jstree-default-large .jstree-disabled{background:0 0} .jstree-default-large .jstree-disabled.jstree-hovered{background:0 0} .jstree-default-large .jstree-disabled.jstree-clicked{background:#efefef} .jstree-default-large .jstree-checkbox{background-position:-160px 0} .jstree-default-large .jstree-checkbox:hover{background-position:-160px -32px} .jstree-default-large.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-large .jstree-checked>.jstree-checkbox{background-position:-224px 0} .jstree-default-large.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-large .jstree-checked>.jstree-checkbox:hover{background-position:-224px -32px} .jstree-default-large .jstree-anchor>.jstree-undetermined{background-position:-192px 0} .jstree-default-large .jstree-anchor>.jstree-undetermined:hover{background-position:-192px -32px} .jstree-default-large .jstree-checkbox-disabled{opacity:.8;filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");filter:gray;-webkit-filter:grayscale(100%)} .jstree-default-large>.jstree-striped{background-size:auto 64px} .jstree-default-large.jstree-rtl .jstree-node{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==);background-position:100% 1px;background-repeat:repeat-y} .jstree-default-large.jstree-rtl .jstree-last{background:0 0} .jstree-default-large.jstree-rtl .jstree-open>.jstree-ocl{background-position:-128px -32px} .jstree-default-large.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-96px -32px} .jstree-default-large.jstree-rtl .jstree-leaf>.jstree-ocl{background-position:-64px -32px} .jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-node,.jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-leaf>.jstree-ocl{background:0 0} .jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-open>.jstree-ocl{background-position:-32px -32px} .jstree-default-large.jstree-rtl>.jstree-no-dots .jstree-closed>.jstree-ocl{background-position:0 -32px} .jstree-default-large .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0} .jstree-default-large>.jstree-container-ul .jstree-loading>.jstree-ocl{background:url(throbber.gif) center center no-repeat} .jstree-default-large .jstree-file{background:url(32px.png) -96px -64px no-repeat} .jstree-default-large .jstree-folder{background:url(32px.png) -256px 0 no-repeat} .jstree-default-large>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0} #jstree-dnd.jstree-default-large{line-height:32px;padding:0 4px} #jstree-dnd.jstree-default-large .jstree-ok,#jstree-dnd.jstree-default-large .jstree-er{background-image:url(32px.png);background-repeat:no-repeat;background-color:transparent} #jstree-dnd.jstree-default-large i{background:0 0;width:32px;height:32px;line-height:32px} #jstree-dnd.jstree-default-large .jstree-ok{background-position:0 -64px} #jstree-dnd.jstree-default-large .jstree-er{background-position:-32px -64px} .jstree-default-large.jstree-rtl .jstree-node{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==)} .jstree-default-large.jstree-rtl .jstree-last{background:0 0} @media (max-width:768px){#jstree-dnd.jstree-dnd-responsive{line-height:40px;font-weight:700;font-size:1.1em;text-shadow:1px 1px #fff} #jstree-dnd.jstree-dnd-responsive>i{background:0 0;width:40px;height:40px} #jstree-dnd.jstree-dnd-responsive>.jstree-ok{background-image:url(40px.png);background-position:0 -200px;background-size:120px 240px} #jstree-dnd.jstree-dnd-responsive>.jstree-er{background-image:url(40px.png);background-position:-40px -200px;background-size:120px 240px} #jstree-marker.jstree-dnd-responsive{border-left-width:10px;border-top-width:10px;border-bottom-width:10px;margin-top:-10px} } @media (max-width:768px){.jstree-default-responsive .jstree-icon{background-image:url(40px.png)} .jstree-default-responsive .jstree-node,.jstree-default-responsive .jstree-leaf>.jstree-ocl{background:0 0} .jstree-default-responsive .jstree-node{min-height:40px;line-height:40px;margin-left:40px;min-width:40px;white-space:nowrap} .jstree-default-responsive .jstree-anchor{line-height:40px;height:40px} .jstree-default-responsive .jstree-icon,.jstree-default-responsive .jstree-icon:empty{width:40px;height:40px;line-height:40px} .jstree-default-responsive>.jstree-container-ul>.jstree-node{margin-left:0} .jstree-default-responsive.jstree-rtl .jstree-node{margin-left:0;margin-right:40px} .jstree-default-responsive.jstree-rtl .jstree-container-ul>.jstree-node{margin-right:0} .jstree-default-responsive .jstree-ocl,.jstree-default-responsive .jstree-themeicon,.jstree-default-responsive .jstree-checkbox{background-size:120px 240px} .jstree-default-responsive .jstree-leaf>.jstree-ocl{background:0 0} .jstree-default-responsive .jstree-open>.jstree-ocl{background-position:0 0!important} .jstree-default-responsive .jstree-closed>.jstree-ocl{background-position:0 -40px!important} .jstree-default-responsive.jstree-rtl .jstree-closed>.jstree-ocl{background-position:-40px 0!important} .jstree-default-responsive .jstree-themeicon{background-position:-40px -40px} .jstree-default-responsive .jstree-checkbox,.jstree-default-responsive .jstree-checkbox:hover{background-position:-40px -80px} .jstree-default-responsive.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox,.jstree-default-responsive.jstree-checkbox-selection .jstree-clicked>.jstree-checkbox:hover,.jstree-default-responsive .jstree-checked>.jstree-checkbox,.jstree-default-responsive .jstree-checked>.jstree-checkbox:hover{background-position:0 -80px} .jstree-default-responsive .jstree-anchor>.jstree-undetermined,.jstree-default-responsive .jstree-anchor>.jstree-undetermined:hover{background-position:0 -120px} .jstree-default-responsive .jstree-anchor{font-weight:700;font-size:1.1em;text-shadow:1px 1px #fff} .jstree-default-responsive>.jstree-striped{background:0 0} .jstree-default-responsive .jstree-wholerow{border-top:1px solid rgba(255,255,255,.7);border-bottom:1px solid rgba(64,64,64,.2);background:#ebebeb;height:40px} .jstree-default-responsive .jstree-wholerow-hovered{background:#e7f4f9} .jstree-default-responsive .jstree-wholerow-clicked{background:#beebff} .jstree-default-responsive .jstree-children .jstree-last>.jstree-wholerow{box-shadow:inset 0 -6px 3px -5px #666} .jstree-default-responsive .jstree-children .jstree-open>.jstree-wholerow{box-shadow:inset 0 6px 3px -5px #666;border-top:0} .jstree-default-responsive .jstree-children .jstree-open+.jstree-open{box-shadow:none} .jstree-default-responsive .jstree-node,.jstree-default-responsive .jstree-icon,.jstree-default-responsive .jstree-node>.jstree-ocl,.jstree-default-responsive .jstree-themeicon,.jstree-default-responsive .jstree-checkbox{background-image:url(40px.png);background-size:120px 240px} .jstree-default-responsive .jstree-node{background-position:-80px 0;background-repeat:repeat-y} .jstree-default-responsive .jstree-last{background:0 0} .jstree-default-responsive .jstree-leaf>.jstree-ocl{background-position:-40px -120px} .jstree-default-responsive .jstree-last>.jstree-ocl{background-position:-40px -160px} .jstree-default-responsive .jstree-themeicon-custom{background-color:transparent;background-image:none;background-position:0 0} .jstree-default-responsive .jstree-file{background:url(40px.png) 0 -160px no-repeat;background-size:120px 240px} .jstree-default-responsive .jstree-folder{background:url(40px.png) -40px -40px no-repeat;background-size:120px 240px} .jstree-default-responsive>.jstree-container-ul>.jstree-node{margin-left:0;margin-right:0} }
public/scaladoc/3.0.4/org/scalactic/Every.html
scalatest/scalactic-website
<!DOCTYPE html > <html> <head> <title>Every - Scalactic 3.0.4 - org.scalactic.Every</title> <meta name="description" content="Every - Scalactic 3.0.4 - org.scalactic.Every" /> <meta name="keywords" content="Every Scalactic 3.0.4 org.scalactic.Every" /> <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.Every'; 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.scalactic.org [javascript] --> <script type="text/javascript"> var rnd = window.rnd || Math.floor(Math.random()*10e6); var pid204569 = window.pid204569 || rnd; var plc204569 = window.plc204569 || 0; var abkw = window.abkw || ''; var absrc = 'http://ab167933.adbutler-ikon.com/adserve/;ID=167933;size=468x60;setID=204569;type=js;sw='+screen.width+';sh='+screen.height+';spr='+window.devicePixelRatio+';kw='+abkw+';pid='+pid204569+';place='+(plc204569++)+';rnd='+rnd+';click=CLICK_MACRO_PLACEHOLDER'; document.write('<scr'+'ipt src="'+absrc+'" type="text/javascript"></scr'+'ipt>'); </script> <div id="definition"> <a href="Every$.html" title="See companion object"><img alt="Class/Object" src="../../lib/class_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="Every$.html" title="See companion object">Every</a></h1><h3><span class="morelinks"><div> Related Docs: <a href="Every$.html" title="See companion object">object Every</a> | <a href="package.html" class="extype" name="org.scalactic">package scalactic</a> </div></span></h3><span class="permalink"> <a href="../../index.html#org.scalactic.Every" 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">sealed abstract </span> <span class="kind">class</span> </span> <span class="symbol"> <span class="name">Every</span><span class="tparams">[<span name="T">+T</span>]</span><span class="result"> extends <span class="extype" name="scala.PartialFunction">PartialFunction</span>[<span class="extype" name="scala.Int">Int</span>, <span class="extype" name="org.scalactic.Every.T">T</span>] with <span class="extype" name="scala.Product">Product</span> with <span class="extype" name="scala.Serializable">Serializable</span></span> </span> </h4> <div id="comment" class="fullcommenttop"><div class="comment cmt"><p>An ordered, immutable, non-empty collection of elements.</p><p>Class <code>Every</code> has two and only two subtypes: <a href="One.html"><code>One</code></a> and <a href="Many.html"><code>Many</code></a>. A <code>One</code> contains exactly one element. A <code>Many</code> contains two or more elements. Thus no way exists for an <code>Every</code> to contain zero elements.</p><h4> Constructing <code>Every</code>s </h4><p>You can construct an <code>Every</code> by passing one or more elements to the <code>Every.apply</code> factory method:</p><p><pre class="stHighlighted"> <span class="stType">Every</span>(<span class="stLiteral">1</span>) <span class="stType">Every</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>) <span class="stType">Every</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>) </pre></p><p>Alternatively you can pass one element to the <code>One.apply</code> factory method, or two or more elements to <code>Many.apply</code>:</p><p><pre class="stHighlighted"> <span class="stType">One</span>(<span class="stLiteral">1</span>) <span class="stType">Many</span>(<span class="stLiteral">1</span>, <span class="stLiteral">3</span>) <span class="stType">Many</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>) </pre></p><h4> Working with <code>Every</code>s </h4><p><code>Every</code> does not extend Scala's <code>Seq</code> or <code>Traversable</code> traits because these require that implementations may be empty. For example, if you invoke <code>tail</code> on a <code>Seq</code> that contains just one element, you'll get an empty <code>Seq</code>:</p><p><pre class="stREPL"> scala&gt; List(1).tail res6: List[Int] = List() </pre></p><p>On the other hand, many useful methods exist on <code>Seq</code> that when invoked on a non-empty <code>Seq</code> are guaranteed to not result in an empty <code>Seq</code>. For convenience, <code>Every</code> defines a method corresponding to every such <code>Seq</code> method. Here are some examples:</p><p><pre class="stHighlighted"> <span class="stType">Many</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>).map(_ + <span class="stLiteral">1</span>) <span class="stLineComment">// Result: Many(2, 3, 4)</span> <span class="stType">One</span>(<span class="stLiteral">1</span>).map(_ + <span class="stLiteral">1</span>) <span class="stLineComment">// Result: One(2)</span> <span class="stType">Every</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>).containsSlice(<span class="stType">Every</span>(<span class="stLiteral">2</span>, <span class="stLiteral">3</span>)) <span class="stLineComment">// Result: true</span> <span class="stType">Every</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>).containsSlice(<span class="stType">Every</span>(<span class="stLiteral">3</span>, <span class="stLiteral">4</span>)) <span class="stLineComment">// Result: false</span> <span class="stType">Every</span>(-<span class="stLiteral">1</span>, -<span class="stLiteral">2</span>, <span class="stLiteral">3</span>, <span class="stLiteral">4</span>, <span class="stLiteral">5</span>).minBy(_.abs) <span class="stLineComment">// Result: -1</span> </pre></p><p><code>Every</code> does <em>not</em> currently define any methods corresponding to <code>Seq</code> methods that could result in an empty <code>Seq</code>. However, an implicit converison from <code>Every</code> to <code>collection.immutable.IndexedSeq</code> is defined in the <code>Every</code> companion object that will be applied if you attempt to call one of the missing methods. As a result, you can invoke <code>filter</code> on an <code>Every</code>, even though <code>filter</code> could result in an empty sequence&mdash;but the result type will be <code>collection.immutable.IndexedSeq</code> instead of <code>Every</code>:</p><p><pre class="stHighlighted"> <span class="stType">Every</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>).filter(_ &lt; <span class="stLiteral">10</span>) <span class="stLineComment">// Result: Vector(1, 2, 3)</span> <span class="stType">Every</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>).filter(_ &gt; <span class="stLiteral">10</span>) <span class="stLineComment">// Result: Vector()</span> </pre></p><p>You can use <code>Every</code>s in <code>for</code> expressions. The result will be an <code>Every</code> unless you use a filter (an <code>if</code> clause). Because filters are desugared to invocations of <code>filter</code>, the result type will switch to a <code>collection.immutable.IndexedSeq</code> at that point. Here are some examples:</p><p><pre class="stREPL"> scala&gt; import org.scalactic._ import org.scalactic._ scala&gt; for (i &lt;- Every(1, 2, 3)) yield i + 1 res0: org.scalactic.Every[Int] = Many(2, 3, 4) scala&gt; for (i &lt;- Every(1, 2, 3) if i &lt; 10) yield i + 1 res1: scala.collection.immutable.IndexedSeq[Int] = Vector(2, 3, 4) scala&gt; for { | i &lt;- Every(1, 2, 3) | j &lt;- Every('a', 'b', 'c') | } yield (i, j) res3: org.scalactic.Every[(Int, Char)] = Many((1,a), (1,b), (1,c), (2,a), (2,b), (2,c), (3,a), (3,b), (3,c)) scala&gt; for { | i &lt;- Every(1, 2, 3) if i &lt; 10 | j &lt;- Every('a', 'b', 'c') | } yield (i, j) res6: scala.collection.immutable.IndexedSeq[(Int, Char)] = Vector((1,a), (1,b), (1,c), (2,a), (2,b), (2,c), (3,a), (3,b), (3,c)) </pre></p><h4> Motivation for <code>Every</code>s </h4><p>Although <code>Every</code> is a general-purpose, non-empty ordered collection, it was motivated by the desire to enable easy accumulation of errors in <a href="Or.html"><code>Or</code></a>s. For examples of <code>Every</code> used in that use case, see the <a href="Or.html#accumulatingErrors">Accumulating errors with <code>Or</code></a> section in the main documentation for <code>Or</code>.</p></div><dl class="paramcmts block"><dt class="tparam">T</dt><dd class="cmt"><p>the type of elements contained in this <code>Every</code></p></dd></dl><dl class="attributes block"> <dt>Source</dt><dd><a href="https://github.com/scalatest/scalatest/tree/release-3.0.4/scalactic//src/main/scala/org/scalactic/Every.scala" target="_blank">Every.scala</a></dd></dl><div class="toggleContainer block"> <span class="toggle">Linear Supertypes</span> <div class="superTypes hiddenContent"><span class="extype" name="scala.Serializable">Serializable</span>, <span class="extype" name="java.io.Serializable">Serializable</span>, <span class="extype" name="scala.Product">Product</span>, <span class="extype" name="scala.Equals">Equals</span>, <span class="extype" name="scala.PartialFunction">PartialFunction</span>[<span class="extype" name="scala.Int">Int</span>, <span class="extype" name="org.scalactic.Every.T">T</span>], (<span class="extype" name="scala.Int">Int</span>) ⇒ <span class="extype" name="org.scalactic.Every.T">T</span>, <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="Many.html" class="extype" name="org.scalactic.Many">Many</a>, <a href="One.html" class="extype" name="org.scalactic.One">One</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.Every"><span>Every</span></li><li class="in" name="scala.Serializable"><span>Serializable</span></li><li class="in" name="java.io.Serializable"><span>Serializable</span></li><li class="in" name="scala.Product"><span>Product</span></li><li class="in" name="scala.Equals"><span>Equals</span></li><li class="in" name="scala.PartialFunction"><span>PartialFunction</span></li><li class="in" name="scala.Function1"><span>Function1</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="values" class="values members"> <h3>Abstract Value Members</h3> <ol><li name="org.scalactic.Every#++" visbl="pub" data-isabs="true" fullComment="yes" group="Ungrouped"> <a id="++[U&gt;:T](other:scala.collection.GenTraversableOnce[U]):org.scalactic.Every[U]"></a> <a id="++[U&gt;:T](GenTraversableOnce[U]):Every[U]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">abstract </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $plus$plus" class="name">++</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="other">other: <span class="extype" name="scala.collection.GenTraversableOnce">GenTraversableOnce</span>[<span class="extype" name="org.scalactic.Every.++.U">U</span>]</span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.++.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@++[U&gt;:T](other:scala.collection.GenTraversableOnce[U]):org.scalactic.Every[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns a new <code>Many</code> containing the elements of this <code>Every</code> followed by the elements of the passed <code>GenTraversableOnce</code>.</code></code></code></p><div class="fullcomment"><div class="comment cmt"><p>Returns a new <code>Many</code> containing the elements of this <code>Every</code> followed by the elements of the passed <code>GenTraversableOnce</code>. The element type of the resulting <code>Many</code> is the most specific superclass encompassing the element types of this <code>Every</code> and the passed <code>GenTraversableOnce</code>. </p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>the element type of the returned <code>Many</code></p></dd><dt class="param">other</dt><dd class="cmt"><p>the <code>Every</code> to append</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Many</code> that contains all the elements of this <code>Every</code> followed by all elements of <code>other</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#++" visbl="pub" data-isabs="true" fullComment="yes" group="Ungrouped"> <a id="++[U&gt;:T](other:org.scalactic.Every[U]):org.scalactic.Many[U]"></a> <a id="++[U&gt;:T](Every[U]):Many[U]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">abstract </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $plus$plus" class="name">++</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="other">other: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.++.U">U</span>]</span>)</span><span class="result">: <a href="Many.html" class="extype" name="org.scalactic.Many">Many</a>[<span class="extype" name="org.scalactic.Every.++.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@++[U&gt;:T](other:org.scalactic.Every[U]):org.scalactic.Many[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns a new <code>Many</code> containing the elements of this <code>Every</code> followed by the elements of the passed <code>Every</code>.</code></code></code></p><div class="fullcomment"><div class="comment cmt"><p>Returns a new <code>Many</code> containing the elements of this <code>Every</code> followed by the elements of the passed <code>Every</code>. The element type of the resulting <code>Many</code> is the most specific superclass encompassing the element types of this and the passed <code>Every</code>. </p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>the element type of the returned <code>Many</code></p></dd><dt class="param">other</dt><dd class="cmt"><p>the <code>Every</code> to append</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Many</code> that contains all the elements of this <code>Every</code> followed by all elements of <code>other</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#:+" visbl="pub" data-isabs="true" fullComment="yes" group="Ungrouped"> <a id=":+[U&gt;:T](element:U):org.scalactic.Many[U]"></a> <a id=":+[U&gt;:T](U):Many[U]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">abstract </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $colon$plus" class="name">:+</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="element">element: <span class="extype" name="org.scalactic.Every.:+.U">U</span></span>)</span><span class="result">: <a href="Many.html" class="extype" name="org.scalactic.Many">Many</a>[<span class="extype" name="org.scalactic.Every.:+.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@:+[U&gt;:T](element:U):org.scalactic.Many[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns a new <code>Every</code> with the given element appended.</code></p><div class="fullcomment"><div class="comment cmt"><p>Returns a new <code>Every</code> with the given element appended.</p><p>Note a mnemonic for <code>+:</code> <em>vs.</em> <code>:+</code> is: the COLon goes on the COLlection side.</p></div><dl class="paramcmts block"><dt class="param">element</dt><dd class="cmt"><p>the element to append to this <code>Every</code></p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> consisting of all elements of this <code>Every</code> followed by <code>element</code>.</p></dd></dl></div> </li><li name="scala.Equals#canEqual" visbl="pub" data-isabs="true" fullComment="yes" group="Ungrouped"> <a id="canEqual(that:Any):Boolean"></a> <a id="canEqual(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">abstract </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">canEqual</span><span class="params">(<span name="that">that: <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.scalactic.Every@canEqual(that: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>Equals</dd></dl></div> </li><li name="scala.Product#productArity" visbl="pub" data-isabs="true" fullComment="yes" group="Ungrouped"> <a id="productArity:Int"></a> <a id="productArity:Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">abstract </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">productArity</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@productArity: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>Product</dd></dl></div> </li><li name="scala.Product#productElement" visbl="pub" data-isabs="true" fullComment="yes" group="Ungrouped"> <a id="productElement(n:Int):Any"></a> <a id="productElement(Int):Any"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">abstract </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">productElement</span><span class="params">(<span name="n">n: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Any">Any</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@productElement(n:Int):Any" 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>Product</dd></dl></div> </li><li name="org.scalactic.Every#stringPrefix" visbl="pub" data-isabs="true" fullComment="yes" group="Ungrouped"> <a id="stringPrefix:String"></a> <a id="stringPrefix:String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">abstract </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">stringPrefix</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@stringPrefix:String" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">The prefix of this object's <code>toString</code> representation.</code></p><div class="fullcomment"><div class="comment cmt"><p>The prefix of this object's <code>toString</code> representation. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a string representation which starts the result of <code>toString</code> applied to this <code>Every</code>, which will be <code>"One"</code> if this <code>Every</code> is a <code>One</code>, or <code>"Many"</code> if it is a <code>Many</code>.</p></dd></dl></div> </li></ol> </div> <div id="values" class="values members"> <h3>Concrete 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.scalactic.Every@!=(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.scalactic.Every@##():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.scalactic.Every#+:" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="+:[U&gt;:T](element:U):org.scalactic.Many[U]"></a> <a id="+:[U&gt;:T](U):Many[U]"></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: $plus$colon" class="name">+:</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="element">element: <span class="extype" name="org.scalactic.Every.+:.U">U</span></span>)</span><span class="result">: <a href="Many.html" class="extype" name="org.scalactic.Many">Many</a>[<span class="extype" name="org.scalactic.Every.+:.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@+:[U&gt;:T](element:U):org.scalactic.Many[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns a new <code>Every</code> with the given element prepended.</code></p><div class="fullcomment"><div class="comment cmt"><p>Returns a new <code>Every</code> with the given element prepended.</p><p>Note that :-ending operators are right associative. A mnemonic for <code>+:</code> <em>vs.</em> <code>:+</code> is: the COLon goes on the COLlection side.</p></div><dl class="paramcmts block"><dt class="param">element</dt><dd class="cmt"><p>the element to prepend to this <code>Every</code></p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> consisting of <code>element</code> followed by all elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#/:" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="/:[B](z:B)(op:(B,T)=&gt;B):B"></a> <a id="/:[B](B)((B,T)⇒B):B"></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: $div$colon" class="name">/:</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="z">z: <span class="extype" name="org.scalactic.Every./:.B">B</span></span>)</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every./:.B">B</span>, <span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="org.scalactic.Every./:.B">B</span></span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every./:.B">B</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@/:[B](z:B)(op:(B,T)=&gt;B):B" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Fold left: applies a binary operator to a start value, <code>z</code>, and all elements of this <code>Every</code>, going left to right.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Fold left: applies a binary operator to a start value, <code>z</code>, and all elements of this <code>Every</code>, going left to right.</p><p>Note: <code>/:</code> is alternate syntax for the <code>foldLeft</code> method; <code>z</code> <code>/:</code> <code>every</code> is the same as <code>every</code> <code>foldLeft</code> <code>z</code>.</p></div><dl class="paramcmts block"><dt class="tparam">B</dt><dd class="cmt"><p>the result of the binary operator</p></dd><dt class="param">z</dt><dd class="cmt"><p>the start value</p></dd><dt class="param">op</dt><dd class="cmt"><p>the binary operator</p></dd><dt>returns</dt><dd class="cmt"><p>the result of inserting <code>op</code> between consecutive elements of this <code>Every</code>, going left to right, with the start value, <code>z</code>, on the left: <pre> op(...op(op(z, x_1), x_2), ..., x_n) </pre> where x<sub>1</sub>, ..., x<sub>n</sub> are the elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#:\" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id=":\[B](z:B)(op:(T,B)=&gt;B):B"></a> <a id=":\[B](B)((T,B)⇒B):B"></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: $colon$bslash" class="name">:\</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="z">z: <span class="extype" name="org.scalactic.Every.:\.B">B</span></span>)</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.T">T</span>, <span class="extype" name="org.scalactic.Every.:\.B">B</span>) ⇒ <span class="extype" name="org.scalactic.Every.:\.B">B</span></span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.:\.B">B</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@:\[B](z:B)(op:(T,B)=&gt;B):B" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Fold right: applies a binary operator to all elements of this <code>Every</code> and a start value, going right to left.</code></p><div class="fullcomment"><div class="comment cmt"><p>Fold right: applies a binary operator to all elements of this <code>Every</code> and a start value, going right to left.</p><p>Note: <code>:\</code> is alternate syntax for the <code>foldRight</code> method; <code>every</code> <code>:\</code> <code>z</code> is the same as <code>every</code> <code>foldRight</code> <code>z</code>.</p></div><dl class="paramcmts block"><dt class="tparam">B</dt><dd class="cmt"><p>the result of the binary operator</p></dd><dt class="param">z</dt><dd class="cmt"><p>the start value</p></dd><dt class="param">op</dt><dd class="cmt"><p>the binary operator</p></dd><dt>returns</dt><dd class="cmt"><p>the result of inserting <code>op</code> between consecutive elements of this <code>Every</code>, going right to left, with the start value, <code>z</code>, on the right: <pre> op(x_1, op(x_2, ... op(x_n, z)...)) </pre> where x<sub>1</sub>, ..., x<sub>n</sub> are the elements of this <code>Every</code>.</p></dd></dl></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.scalactic.Every@==(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="org.scalactic.Every#addString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="addString(sb:StringBuilder,start:String,sep:String,end:String):StringBuilder"></a> <a id="addString(StringBuilder,String,String,String):StringBuilder"></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">addString</span><span class="params">(<span name="sb">sb: <span class="extype" name="scala.StringBuilder">StringBuilder</span></span>, <span name="start">start: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="sep">sep: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="end">end: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.StringBuilder">StringBuilder</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@addString(sb:StringBuilder,start:String,sep:String,end:String):StringBuilder" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Appends all elements of this <code>Every</code> to a string builder using start, end, and separator strings.</code></p><div class="fullcomment"><div class="comment cmt"><p>Appends all elements of this <code>Every</code> to a string builder using start, end, and separator strings. The written text will consist of a concatenation of the string <code>start</code>; the result of invoking <code>toString</code> on all elements of this <code>Every</code>, separated by the string <code>sep</code>; and the string <code>end</code> </p></div><dl class="paramcmts block"><dt class="param">sb</dt><dd class="cmt"><p>the string builder to which elements will be appended</p></dd><dt class="param">start</dt><dd class="cmt"><p>the ending string</p></dd><dt class="param">sep</dt><dd class="cmt"><p>the separator string</p></dd><dt>returns</dt><dd class="cmt"><p>the string builder, <code>sb</code>, to which elements were appended.</p></dd></dl></div> </li><li name="org.scalactic.Every#addString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="addString(sb:StringBuilder,sep:String):StringBuilder"></a> <a id="addString(StringBuilder,String):StringBuilder"></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">addString</span><span class="params">(<span name="sb">sb: <span class="extype" name="scala.StringBuilder">StringBuilder</span></span>, <span name="sep">sep: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.StringBuilder">StringBuilder</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@addString(sb:StringBuilder,sep:String):StringBuilder" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Appends all elements of this <code>Every</code> to a string builder using a separator string.</code></p><div class="fullcomment"><div class="comment cmt"><p>Appends all elements of this <code>Every</code> to a string builder using a separator string. The written text will consist of a concatenation of the result of invoking <code>toString</code> on of every element of this <code>Every</code>, separated by the string <code>sep</code>. </p></div><dl class="paramcmts block"><dt class="param">sb</dt><dd class="cmt"><p>the string builder to which elements will be appended</p></dd><dt class="param">sep</dt><dd class="cmt"><p>the separator string</p></dd><dt>returns</dt><dd class="cmt"><p>the string builder, <code>sb</code>, to which elements were appended.</p></dd></dl></div> </li><li name="org.scalactic.Every#addString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="addString(sb:StringBuilder):StringBuilder"></a> <a id="addString(StringBuilder):StringBuilder"></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">addString</span><span class="params">(<span name="sb">sb: <span class="extype" name="scala.StringBuilder">StringBuilder</span></span>)</span><span class="result">: <span class="extype" name="scala.StringBuilder">StringBuilder</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@addString(sb:StringBuilder):StringBuilder" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Appends all elements of this <code>Every</code> to a string builder.</code></p><div class="fullcomment"><div class="comment cmt"><p>Appends all elements of this <code>Every</code> to a string builder. The written text will consist of a concatenation of the result of invoking <code>toString</code> on of every element of this <code>Every</code>, without any separator string. </p></div><dl class="paramcmts block"><dt class="param">sb</dt><dd class="cmt"><p>the string builder to which elements will be appended</p></dd><dt>returns</dt><dd class="cmt"><p>the string builder, <code>sb</code>, to which elements were appended.</p></dd></dl></div> </li><li name="scala.PartialFunction#andThen" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="andThen[C](k:B=&gt;C):PartialFunction[A,C]"></a> <a id="andThen[C]((T)⇒C):PartialFunction[Int,C]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">andThen</span><span class="tparams">[<span name="C">C</span>]</span><span class="params">(<span name="k">k: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.PartialFunction.andThen.C">C</span></span>)</span><span class="result">: <span class="extype" name="scala.PartialFunction">PartialFunction</span>[<span class="extype" name="scala.Int">Int</span>, <span class="extype" name="scala.PartialFunction.andThen.C">C</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@andThen[C](k:B=&gt;C):PartialFunction[A,C]" 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>PartialFunction → Function1</dd></dl></div> </li><li name="org.scalactic.Every#apply" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="apply(idx:Int):T"></a> <a id="apply(Int):T"></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">apply</span><span class="params">(<span name="idx">idx: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.T">T</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@apply(idx:Int):T" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Selects an element by its index in the <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>Selects an element by its index in the <code>Every</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the element of this <code>Every</code> at index <code>idx</code>, where 0 indicates the first element.</p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="" class="extype" name="org.scalactic.Every">Every</a> → Function1</dd></dl></div> </li><li name="scala.PartialFunction#applyOrElse" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="applyOrElse[A1&lt;:A,B1&gt;:B](x:A1,default:A1=&gt;B1):B1"></a> <a id="applyOrElse[A1&lt;:Int,B1&gt;:T](A1,(A1)⇒B1):B1"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">applyOrElse</span><span class="tparams">[<span name="A1">A1 &lt;: <span class="extype" name="scala.Int">Int</span></span>, <span name="B1">B1 &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="x">x: <span class="extype" name="scala.PartialFunction.applyOrElse.A1">A1</span></span>, <span name="default">default: (<span class="extype" name="scala.PartialFunction.applyOrElse.A1">A1</span>) ⇒ <span class="extype" name="scala.PartialFunction.applyOrElse.B1">B1</span></span>)</span><span class="result">: <span class="extype" name="scala.PartialFunction.applyOrElse.B1">B1</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@applyOrElse[A1&lt;:A,B1&gt;:B](x:A1,default:A1=&gt;B1):B1" 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>PartialFunction</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.scalactic.Every@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.scalactic.Every@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="org.scalactic.Every#collectFirst" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="collectFirst[U](pf:PartialFunction[T,U]):Option[U]"></a> <a id="collectFirst[U](PartialFunction[T,U]):Option[U]"></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">collectFirst</span><span class="tparams">[<span name="U">U</span>]</span><span class="params">(<span name="pf">pf: <span class="extype" name="scala.PartialFunction">PartialFunction</span>[<span class="extype" name="org.scalactic.Every.T">T</span>, <span class="extype" name="org.scalactic.Every.collectFirst.U">U</span>]</span>)</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="org.scalactic.Every.collectFirst.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@collectFirst[U](pf:PartialFunction[T,U]):Option[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds the first element of the <code>Every</code> for which the given partial function is defined, if any, and applies the partial function to it.</code></p><div class="fullcomment"><div class="comment cmt"><p>Finds the first element of the <code>Every</code> for which the given partial function is defined, if any, and applies the partial function to it. </p></div><dl class="paramcmts block"><dt class="param">pf</dt><dd class="cmt"><p>the partial function</p></dd><dt>returns</dt><dd class="cmt"><p>an <code>Option</code> containing <code>pf</code> applied to the first element for which it is defined, or <code>None</code> if the partial function was not defined for any element.</p></dd></dl></div> </li><li name="scala.Function1#compose" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="compose[A](g:A=&gt;T1):A=&gt;R"></a> <a id="compose[A]((A)⇒Int):(A)⇒T"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">compose</span><span class="tparams">[<span name="A">A</span>]</span><span class="params">(<span name="g">g: (<span class="extype" name="scala.Function1.compose.A">A</span>) ⇒ <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: (<span class="extype" name="scala.Function1.compose.A">A</span>) ⇒ <span class="extype" name="org.scalactic.Every.T">T</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@compose[A](g:A=&gt;T1):A=&gt;R" 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>Function1</dd><dt>Annotations</dt><dd> <span class="name">@unspecialized</span><span class="args">()</span> </dd></dl></div> </li><li name="org.scalactic.Every#contains" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="contains(elem:Any):Boolean"></a> <a id="contains(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 class="name">contains</span><span class="params">(<span name="elem">elem: <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.scalactic.Every@contains(elem:Any):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether this <code>Every</code> contains a given value as an element.</code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Every</code> contains a given value as an element. </p></div><dl class="paramcmts block"><dt class="param">elem</dt><dd class="cmt"><p>the element to look for</p></dd><dt>returns</dt><dd class="cmt"><p>true if this <code>Every</code> has an element that is equal (as determined by <code>==)</code> to <code>elem</code>, false otherwise.</p></dd></dl></div> </li><li name="org.scalactic.Every#containsSlice" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="containsSlice[B](that:org.scalactic.Every[B]):Boolean"></a> <a id="containsSlice[B](Every[B]):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">containsSlice</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="that">that: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.containsSlice.B">B</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.scalactic.Every@containsSlice[B](that:org.scalactic.Every[B]):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether this <code>Every</code> contains a given <code>Every</code> as a slice.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Every</code> contains a given <code>Every</code> as a slice. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>Every</code> slice to look for</p></dd><dt>returns</dt><dd class="cmt"><p>true if this <code>Every</code> contains a slice with the same elements as <code>that</code>, otherwise <code>false</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#containsSlice" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="containsSlice[B](that:scala.collection.GenSeq[B]):Boolean"></a> <a id="containsSlice[B](GenSeq[B]):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">containsSlice</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="that">that: <span class="extype" name="scala.collection.GenSeq">GenSeq</span>[<span class="extype" name="org.scalactic.Every.containsSlice.B">B</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.scalactic.Every@containsSlice[B](that:scala.collection.GenSeq[B]):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether this <code>Every</code> contains a given <code>GenSeq</code> as a slice.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Every</code> contains a given <code>GenSeq</code> as a slice. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>GenSeq</code> slice to look for</p></dd><dt>returns</dt><dd class="cmt"><p>true if this <code>Every</code> contains a slice with the same elements as <code>that</code>, otherwise <code>false</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#copyToArray" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="copyToArray[U&gt;:T](arr:Array[U],start:Int,len:Int):Unit"></a> <a id="copyToArray[U&gt;:T](Array[U],Int,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">copyToArray</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="arr">arr: <span class="extype" name="scala.Array">Array</span>[<span class="extype" name="org.scalactic.Every.copyToArray.U">U</span>]</span>, <span name="start">start: <span class="extype" name="scala.Int">Int</span></span>, <span name="len">len: <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.scalactic.Every@copyToArray[U&gt;:T](arr:Array[U],start:Int,len:Int):Unit" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Copies values of this <code>Every</code> to an array.</code></p><div class="fullcomment"><div class="comment cmt"><p>Copies values of this <code>Every</code> to an array. Fills the given array <code>arr</code> with at most <code>len</code> elements of this <code>Every</code>, beginning at index <code>start</code>. Copying will stop once either the end of the current <code>Every</code> is reached, the end of the array is reached, or <code>len</code> elements have been copied. </p></div><dl class="paramcmts block"><dt class="param">arr</dt><dd class="cmt"><p>the array to fill</p></dd><dt class="param">start</dt><dd class="cmt"><p>the starting index</p></dd><dt class="param">len</dt><dd class="cmt"><p>the maximum number of elements to copy</p></dd></dl></div> </li><li name="org.scalactic.Every#copyToArray" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="copyToArray[U&gt;:T](arr:Array[U],start:Int):Unit"></a> <a id="copyToArray[U&gt;:T](Array[U],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">copyToArray</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="arr">arr: <span class="extype" name="scala.Array">Array</span>[<span class="extype" name="org.scalactic.Every.copyToArray.U">U</span>]</span>, <span name="start">start: <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.scalactic.Every@copyToArray[U&gt;:T](arr:Array[U],start:Int):Unit" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Copies values of this <code>Every</code> to an array.</code></p><div class="fullcomment"><div class="comment cmt"><p>Copies values of this <code>Every</code> to an array. Fills the given array <code>arr</code> with values of this <code>Every</code>, beginning at index <code>start</code>. Copying will stop once either the end of the current <code>Every</code> is reached, or the end of the array is reached. </p></div><dl class="paramcmts block"><dt class="param">arr</dt><dd class="cmt"><p>the array to fill</p></dd><dt class="param">start</dt><dd class="cmt"><p>the starting index</p></dd></dl></div> </li><li name="org.scalactic.Every#copyToArray" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="copyToArray[U&gt;:T](arr:Array[U]):Unit"></a> <a id="copyToArray[U&gt;:T](Array[U]):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">copyToArray</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="arr">arr: <span class="extype" name="scala.Array">Array</span>[<span class="extype" name="org.scalactic.Every.copyToArray.U">U</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.scalactic.Every@copyToArray[U&gt;:T](arr:Array[U]):Unit" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Copies values of this <code>Every</code> to an array.</code></p><div class="fullcomment"><div class="comment cmt"><p>Copies values of this <code>Every</code> to an array. Fills the given array <code>arr</code> with values of this <code>Every</code>. Copying will stop once either the end of the current <code>Every</code> is reached, or the end of the array is reached. </p></div><dl class="paramcmts block"><dt class="param">arr</dt><dd class="cmt"><p>the array to fill</p></dd></dl></div> </li><li name="org.scalactic.Every#copyToBuffer" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="copyToBuffer[U&gt;:T](buf:scala.collection.mutable.Buffer[U]):Unit"></a> <a id="copyToBuffer[U&gt;:T](Buffer[U]):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">copyToBuffer</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="buf">buf: <span class="extype" name="scala.collection.mutable.Buffer">Buffer</span>[<span class="extype" name="org.scalactic.Every.copyToBuffer.U">U</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.scalactic.Every@copyToBuffer[U&gt;:T](buf:scala.collection.mutable.Buffer[U]):Unit" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Copies all elements of this <code>Every</code> to a buffer.</code></p><div class="fullcomment"><div class="comment cmt"><p>Copies all elements of this <code>Every</code> to a buffer. </p></div><dl class="paramcmts block"><dt class="param">buf</dt><dd class="cmt"><p>the buffer to which elements are copied</p></dd></dl></div> </li><li name="org.scalactic.Every#corresponds" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="corresponds[B](that:org.scalactic.Every[B])(p:(T,B)=&gt;Boolean):Boolean"></a> <a id="corresponds[B](Every[B])((T,B)⇒Boolean):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">corresponds</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="that">that: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.corresponds.B">B</span>]</span>)</span><span class="params">(<span name="p">p: (<span class="extype" name="org.scalactic.Every.T">T</span>, <span class="extype" name="org.scalactic.Every.corresponds.B">B</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</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.scalactic.Every@corresponds[B](that:org.scalactic.Every[B])(p:(T,B)=&gt;Boolean):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether every element of this <code>Every</code> relates to the corresponding element of a given <code>Every</code> by satisfying a given predicate.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether every element of this <code>Every</code> relates to the corresponding element of a given <code>Every</code> by satisfying a given predicate. </p></div><dl class="paramcmts block"><dt class="tparam">B</dt><dd class="cmt"><p>the type of the elements of <code>that</code></p></dd><dt class="param">that</dt><dd class="cmt"><p>the <code>Every</code> to compare for correspondence</p></dd><dt class="param">p</dt><dd class="cmt"><p>the predicate, which relates elements from this and the passed <code>Every</code></p></dd><dt>returns</dt><dd class="cmt"><p>true if this and the passed <code>Every</code> have the same length and <code>p(x, y)</code> is <code>true</code> for all corresponding elements <code>x</code> of this <code>Every</code> and <code>y</code> of that, otherwise <code>false</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#corresponds" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="corresponds[B](that:scala.collection.GenSeq[B])(p:(T,B)=&gt;Boolean):Boolean"></a> <a id="corresponds[B](GenSeq[B])((T,B)⇒Boolean):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">corresponds</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="that">that: <span class="extype" name="scala.collection.GenSeq">GenSeq</span>[<span class="extype" name="org.scalactic.Every.corresponds.B">B</span>]</span>)</span><span class="params">(<span name="p">p: (<span class="extype" name="org.scalactic.Every.T">T</span>, <span class="extype" name="org.scalactic.Every.corresponds.B">B</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</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.scalactic.Every@corresponds[B](that:scala.collection.GenSeq[B])(p:(T,B)=&gt;Boolean):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether every element of this <code>Every</code> relates to the corresponding element of a given <code>GenSeq</code> by satisfying a given predicate.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether every element of this <code>Every</code> relates to the corresponding element of a given <code>GenSeq</code> by satisfying a given predicate. </p></div><dl class="paramcmts block"><dt class="tparam">B</dt><dd class="cmt"><p>the type of the elements of <code>that</code></p></dd><dt class="param">that</dt><dd class="cmt"><p>the <code>GenSeq</code> to compare for correspondence</p></dd><dt class="param">p</dt><dd class="cmt"><p>the predicate, which relates elements from this <code>Every</code> and the passed <code>GenSeq</code></p></dd><dt>returns</dt><dd class="cmt"><p>true if this <code>Every</code> and the passed <code>GenSeq</code> have the same length and <code>p(x, y)</code> is <code>true</code> for all corresponding elements <code>x</code> of this <code>Every</code> and <code>y</code> of that, otherwise <code>false</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#count" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="count(p:T=&gt;Boolean):Int"></a> <a id="count((T)⇒Boolean):Int"></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">count</span><span class="params">(<span name="p">p: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@count(p:T=&gt;Boolean):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Counts the number of elements in the <code>Every</code> that satisfy a predicate.</code></p><div class="fullcomment"><div class="comment cmt"><p>Counts the number of elements in the <code>Every</code> that satisfy a predicate. </p></div><dl class="paramcmts block"><dt class="param">p</dt><dd class="cmt"><p>the predicate used to test elements.</p></dd><dt>returns</dt><dd class="cmt"><p>the number of elements satisfying the predicate <code>p</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#distinct" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="distinct:org.scalactic.Every[T]"></a> <a id="distinct:Every[T]"></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">distinct</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@distinct:org.scalactic.Every[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Builds a new <code>Every</code> from this <code>Every</code> without any duplicate elements.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Builds a new <code>Every</code> from this <code>Every</code> without any duplicate elements. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>A new <code>Every</code> that contains the first occurrence of every element of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#endsWith" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="endsWith[B](that:org.scalactic.Every[B]):Boolean"></a> <a id="endsWith[B](Every[B]):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">endsWith</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="that">that: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.endsWith.B">B</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.scalactic.Every@endsWith[B](that:org.scalactic.Every[B]):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether this <code>Every</code> ends with the given <code>Every</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Every</code> ends with the given <code>Every</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p><code>true</code> if this <code>Every</code> has <code>that</code> as a suffix, <code>false</code> otherwise.</p></dd></dl></div> </li><li name="org.scalactic.Every#endsWith" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="endsWith[B](that:scala.collection.GenSeq[B]):Boolean"></a> <a id="endsWith[B](GenSeq[B]):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">endsWith</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="that">that: <span class="extype" name="scala.collection.GenSeq">GenSeq</span>[<span class="extype" name="org.scalactic.Every.endsWith.B">B</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.scalactic.Every@endsWith[B](that:scala.collection.GenSeq[B]):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether this <code>Every</code> ends with the given <code>GenSeq</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Every</code> ends with the given <code>GenSeq</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p><code>true</code> if this <code>Every</code> has <code>that</code> as a suffix, <code>false</code> otherwise.</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><span class="permalink"> <a href="../../index.html#org.scalactic.Every@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.scalactic.Every@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="org.scalactic.Every#exists" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="exists(p:T=&gt;Boolean):Boolean"></a> <a id="exists((T)⇒Boolean):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">exists</span><span class="params">(<span name="p">p: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</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.scalactic.Every@exists(p:T=&gt;Boolean):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether a predicate holds for at least one of the elements of this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether a predicate holds for at least one of the elements of this <code>Every</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p><code>true</code> if the given predicate <code>p</code> holds for some of the elements of this <code>Every</code>, otherwise <code>false</code>.</p></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.scalactic.Every@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="org.scalactic.Every#find" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="find(p:T=&gt;Boolean):Option[T]"></a> <a id="find((T)⇒Boolean):Option[T]"></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">find</span><span class="params">(<span name="p">p: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</span></span>)</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@find(p:T=&gt;Boolean):Option[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds the first element of this <code>Every</code> that satisfies the given predicate, if any.</code></p><div class="fullcomment"><div class="comment cmt"><p>Finds the first element of this <code>Every</code> that satisfies the given predicate, if any. </p></div><dl class="paramcmts block"><dt class="param">p</dt><dd class="cmt"><p>the predicate used to test elements</p></dd><dt>returns</dt><dd class="cmt"><p>an <code>Some</code> containing the first element in this <code>Every</code> that satisfies <code>p</code>, or <code>None</code> if none exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#flatMap" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="flatMap[U](f:T=&gt;org.scalactic.Every[U]):org.scalactic.Every[U]"></a> <a id="flatMap[U]((T)⇒Every[U]):Every[U]"></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">flatMap</span><span class="tparams">[<span name="U">U</span>]</span><span class="params">(<span name="f">f: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.flatMap.U">U</span>]</span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.flatMap.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@flatMap[U](f:T=&gt;org.scalactic.Every[U]):org.scalactic.Every[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Builds a new <code>Every</code> by applying a function to all elements of this <code>Every</code> and using the elements of the resulting <code>Every</code>s.</code></code></code></p><div class="fullcomment"><div class="comment cmt"><p>Builds a new <code>Every</code> by applying a function to all elements of this <code>Every</code> and using the elements of the resulting <code>Every</code>s. </p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>the element type of the returned <code>Every</code></p></dd><dt class="param">f</dt><dd class="cmt"><p>the function to apply to each element.</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> containing elements obtained by applying the given function <code>f</code> to each element of this <code>Every</code> and concatenating the elements of resulting <code>Every</code>s.</p></dd></dl></div> </li><li name="org.scalactic.Every#flatten" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="flatten[B](implicitev:&lt;:&lt;[T,org.scalactic.Every[B]]):org.scalactic.Every[B]"></a> <a id="flatten[B](&lt;:&lt;[T,Every[B]]):Every[B]"></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">flatten</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span class="implicit">implicit </span><span name="ev">ev: <span class="extype" name="scala.Predef.&lt;:&lt;">&lt;:&lt;</span>[<span class="extype" name="org.scalactic.Every.T">T</span>, <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.flatten.B">B</span>]]</span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.flatten.B">B</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@flatten[B](implicitev:&lt;:&lt;[T,org.scalactic.Every[B]]):org.scalactic.Every[B]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> of <code>Every</code>s into an <code>Every</code> formed by the elements of the nested <code>Every</code>s.</code></code></code></code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> of <code>Every</code>s into an <code>Every</code> formed by the elements of the nested <code>Every</code>s.</p><p>Note: You cannot use this <code>flatten</code> method on an <code>Every</code> that contains a <code>GenTraversableOnce</code>s, because if all the nested <code>GenTraversableOnce</code>s were empty, you'd end up with an empty <code>Every</code>.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> resulting from concatenating all nested <code>Every</code>s.</p></dd></dl></div> </li><li name="org.scalactic.Every#fold" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="fold[U&gt;:T](z:U)(op:(U,U)=&gt;U):U"></a> <a id="fold[U&gt;:T](U)((U,U)⇒U):U"></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">fold</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="z">z: <span class="extype" name="org.scalactic.Every.fold.U">U</span></span>)</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.fold.U">U</span>, <span class="extype" name="org.scalactic.Every.fold.U">U</span>) ⇒ <span class="extype" name="org.scalactic.Every.fold.U">U</span></span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.fold.U">U</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@fold[U&gt;:T](z:U)(op:(U,U)=&gt;U):U" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Folds the elements of this <code>Every</code> using the specified associative binary operator.</code></p><div class="fullcomment"><div class="comment cmt"><p>Folds the elements of this <code>Every</code> using the specified associative binary operator.</p><p>The order in which operations are performed on elements is unspecified and may be nondeterministic.</p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>a type parameter for the binary operator, a supertype of T.</p></dd><dt class="param">z</dt><dd class="cmt"><p>a neutral element for the fold operation; may be added to the result an arbitrary number of times, and must not change the result (<em>e.g.</em>, <code>Nil</code> for list concatenation, 0 for addition, or 1 for multiplication.)</p></dd><dt class="param">op</dt><dd class="cmt"><p>a binary operator that must be associative</p></dd><dt>returns</dt><dd class="cmt"><p>the result of applying fold operator <code>op</code> between all the elements and <code>z</code></p></dd></dl></div> </li><li name="org.scalactic.Every#foldLeft" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="foldLeft[B](z:B)(op:(B,T)=&gt;B):B"></a> <a id="foldLeft[B](B)((B,T)⇒B):B"></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">foldLeft</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="z">z: <span class="extype" name="org.scalactic.Every.foldLeft.B">B</span></span>)</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.foldLeft.B">B</span>, <span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="org.scalactic.Every.foldLeft.B">B</span></span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.foldLeft.B">B</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@foldLeft[B](z:B)(op:(B,T)=&gt;B):B" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Applies a binary operator to a start value and all elements of this <code>Every</code>, going left to right.</code></p><div class="fullcomment"><div class="comment cmt"><p>Applies a binary operator to a start value and all elements of this <code>Every</code>, going left to right. </p></div><dl class="paramcmts block"><dt class="tparam">B</dt><dd class="cmt"><p>the result type of the binary operator.</p></dd><dt class="param">z</dt><dd class="cmt"><p>the start value.</p></dd><dt class="param">op</dt><dd class="cmt"><p>the binary operator.</p></dd><dt>returns</dt><dd class="cmt"><p>the result of inserting <code>op</code> between consecutive elements of this <code>Every</code>, going left to right, with the start value, <code>z</code>, on the left: <pre> op(...op(op(z, x_1), x_2), ..., x_n) </pre> where x<sub>1</sub>, ..., x<sub>n</sub> are the elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#foldRight" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="foldRight[B](z:B)(op:(T,B)=&gt;B):B"></a> <a id="foldRight[B](B)((T,B)⇒B):B"></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">foldRight</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="z">z: <span class="extype" name="org.scalactic.Every.foldRight.B">B</span></span>)</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.T">T</span>, <span class="extype" name="org.scalactic.Every.foldRight.B">B</span>) ⇒ <span class="extype" name="org.scalactic.Every.foldRight.B">B</span></span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.foldRight.B">B</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@foldRight[B](z:B)(op:(T,B)=&gt;B):B" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Applies a binary operator to all elements of this <code>Every</code> and a start value, going right to left.</code></p><div class="fullcomment"><div class="comment cmt"><p>Applies a binary operator to all elements of this <code>Every</code> and a start value, going right to left. </p></div><dl class="paramcmts block"><dt class="tparam">B</dt><dd class="cmt"><p>the result of the binary operator</p></dd><dt class="param">z</dt><dd class="cmt"><p>the start value</p></dd><dt class="param">op</dt><dd class="cmt"><p>the binary operator</p></dd><dt>returns</dt><dd class="cmt"><p>the result of inserting <code>op</code> between consecutive elements of this <code>Every</code>, going right to left, with the start value, <code>z</code>, on the right: <pre> op(x_1, op(x_2, ... op(x_n, z)...)) </pre> where x<sub>1</sub>, ..., x<sub>n</sub> are the elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#forall" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="forall(p:T=&gt;Boolean):Boolean"></a> <a id="forall((T)⇒Boolean):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">forall</span><span class="params">(<span name="p">p: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</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.scalactic.Every@forall(p:T=&gt;Boolean):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether a predicate holds for all elements of this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether a predicate holds for all elements of this <code>Every</code>. </p></div><dl class="paramcmts block"><dt class="param">p</dt><dd class="cmt"><p>the predicate used to test elements.</p></dd><dt>returns</dt><dd class="cmt"><p><code>true</code> if the given predicate <code>p</code> holds for all elements of this <code>Every</code>, otherwise <code>false</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#foreach" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="foreach(f:T=&gt;Unit):Unit"></a> <a id="foreach((T)⇒Unit):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">foreach</span><span class="params">(<span name="f">f: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <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.scalactic.Every@foreach(f:T=&gt;Unit):Unit" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Applies a function <code>f</code> to all elements of this <code>Every</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Applies a function <code>f</code> to all elements of this <code>Every</code>. </p></div><dl class="paramcmts block"><dt class="param">f</dt><dd class="cmt"><p>the function that is applied for its side-effect to every element. The result of function <code>f</code> is discarded.</p></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.scalactic.Every@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="org.scalactic.Every#groupBy" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="groupBy[K](f:T=&gt;K):Map[K,org.scalactic.Every[T]]"></a> <a id="groupBy[K]((T)⇒K):Map[K,Every[T]]"></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">groupBy</span><span class="tparams">[<span name="K">K</span>]</span><span class="params">(<span name="f">f: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="org.scalactic.Every.groupBy.K">K</span></span>)</span><span class="result">: <span class="extype" name="scala.Predef.Map">Map</span>[<span class="extype" name="org.scalactic.Every.groupBy.K">K</span>, <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.T">T</span>]]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@groupBy[K](f:T=&gt;K):Map[K,org.scalactic.Every[T]]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Partitions this <code>Every</code> into a map of <code>Every</code>s according to some discriminator function.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Partitions this <code>Every</code> into a map of <code>Every</code>s according to some discriminator function. </p></div><dl class="paramcmts block"><dt class="tparam">K</dt><dd class="cmt"><p>the type of keys returned by the discriminator function.</p></dd><dt class="param">f</dt><dd class="cmt"><p>the discriminator function.</p></dd><dt>returns</dt><dd class="cmt"><p>A map from keys to <code>Every</code>s such that the following invariant holds: <pre> (every.toVector partition f)(k) = xs filter (x =&gt; f(x) == k) </pre> That is, every key <code>k</code> is bound to an <code>Every</code> of those elements <code>x</code> for which <code>f(x)</code> equals <code>k</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#grouped" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="grouped(size:Int):Iterator[org.scalactic.Every[T]]"></a> <a id="grouped(Int):Iterator[Every[T]]"></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">grouped</span><span class="params">(<span name="size">size: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Iterator">Iterator</span>[<a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.T">T</span>]]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@grouped(size:Int):Iterator[org.scalactic.Every[T]]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Partitions elements into fixed size <code>Every</code>s.</code></p><div class="fullcomment"><div class="comment cmt"><p>Partitions elements into fixed size <code>Every</code>s. </p></div><dl class="paramcmts block"><dt class="param">size</dt><dd class="cmt"><p>the number of elements per group</p></dd><dt>returns</dt><dd class="cmt"><p>An iterator producing <code>Every</code>s of size <code>size</code>, except the last will be truncated if the elements don't divide evenly.</p></dd></dl></div> </li><li name="org.scalactic.Every#hasDefiniteSize" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="hasDefiniteSize:Boolean"></a> <a id="hasDefiniteSize: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">hasDefiniteSize</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@hasDefiniteSize:Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns <code>true</code> to indicate this <code>Every</code> has a definite size, since all <code>Every</code>s are strict collections.</code></code></code></p><div class="fullcomment"><div class="comment cmt"><p>Returns <code>true</code> to indicate this <code>Every</code> has a definite size, since all <code>Every</code>s are strict collections. </p></div></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.scalactic.Every@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.scalactic.Every#head" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="head:T"></a> <a id="head:T"></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">head</span><span class="result">: <span class="extype" name="org.scalactic.Every.T">T</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@head:T" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Selects the first element of this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>Selects the first element of this <code>Every</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the first element of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#headOption" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="headOption:Option[T]"></a> <a id="headOption:Option[T]"></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">headOption</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@headOption:Option[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Selects the first element of this <code>Every</code> and returns it wrapped in a <code>Some</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Selects the first element of this <code>Every</code> and returns it wrapped in a <code>Some</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the first element of this <code>Every</code>, wrapped in a <code>Some</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#indexOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="indexOf[U&gt;:T](elem:U,from:Int):Int"></a> <a id="indexOf[U&gt;:T](U,Int):Int"></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">indexOf</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="elem">elem: <span class="extype" name="org.scalactic.Every.indexOf.U">U</span></span>, <span name="from">from: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@indexOf[U&gt;:T](elem:U,from:Int):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds index of first occurrence of some value in this <code>Every</code> after or at some start index.</code></p><div class="fullcomment"><div class="comment cmt"><p>Finds index of first occurrence of some value in this <code>Every</code> after or at some start index. </p></div><dl class="paramcmts block"><dt class="param">elem</dt><dd class="cmt"><p>the element value to search for.</p></dd><dt class="param">from</dt><dd class="cmt"><p>the start index</p></dd><dt>returns</dt><dd class="cmt"><p>the index <code>&gt;=</code> <code>from</code> of the first element of this <code>Every</code> that is equal (as determined by <code>==</code>) to <code>elem</code>, or <code>-1</code>, if none exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#indexOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="indexOf[U&gt;:T](elem:U):Int"></a> <a id="indexOf[U&gt;:T](U):Int"></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">indexOf</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="elem">elem: <span class="extype" name="org.scalactic.Every.indexOf.U">U</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@indexOf[U&gt;:T](elem:U):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds index of first occurrence of some value in this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>Finds index of first occurrence of some value in this <code>Every</code>. </p></div><dl class="paramcmts block"><dt class="param">elem</dt><dd class="cmt"><p>the element value to search for.</p></dd><dt>returns</dt><dd class="cmt"><p>the index of the first element of this <code>Every</code> that is equal (as determined by <code>==</code>) to <code>elem</code>, or <code>-1</code>, if none exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#indexOfSlice" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="indexOfSlice[U&gt;:T](that:org.scalactic.Every[U],from:Int):Int"></a> <a id="indexOfSlice[U&gt;:T](Every[U],Int):Int"></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">indexOfSlice</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.indexOfSlice.U">U</span>]</span>, <span name="from">from: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@indexOfSlice[U&gt;:T](that:org.scalactic.Every[U],from:Int):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds first index after or at a start index where this <code>Every</code> contains a given <code>Every</code> as a slice.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Finds first index after or at a start index where this <code>Every</code> contains a given <code>Every</code> as a slice. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>Every<code> defining the slice to look for</p></dd><dt class="param">from</dt><dd class="cmt"><p>the start index</p></dd><dt>returns</dt><dd class="cmt"><p>the first index <code>&gt;=</code> <code>from</code> such that the elements of this <code>Every</code> starting at this index match the elements of <code>Every</code> <code>that</code>, or <code>-1</code> of no such subsequence exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#indexOfSlice" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="indexOfSlice[U&gt;:T](that:org.scalactic.Every[U]):Int"></a> <a id="indexOfSlice[U&gt;:T](Every[U]):Int"></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">indexOfSlice</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.indexOfSlice.U">U</span>]</span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@indexOfSlice[U&gt;:T](that:org.scalactic.Every[U]):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds first index where this <code>Every</code> contains a given <code>Every</code> as a slice.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Finds first index where this <code>Every</code> contains a given <code>Every</code> as a slice. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>Every<code> defining the slice to look for</p></dd><dt>returns</dt><dd class="cmt"><p>the first index such that the elements of this <code>Every</code> starting at this index match the elements of <code>Every</code> <code>that</code>, or <code>-1</code> of no such subsequence exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#indexOfSlice" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="indexOfSlice[U&gt;:T](that:scala.collection.GenSeq[U],from:Int):Int"></a> <a id="indexOfSlice[U&gt;:T](GenSeq[U],Int):Int"></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">indexOfSlice</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <span class="extype" name="scala.collection.GenSeq">GenSeq</span>[<span class="extype" name="org.scalactic.Every.indexOfSlice.U">U</span>]</span>, <span name="from">from: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@indexOfSlice[U&gt;:T](that:scala.collection.GenSeq[U],from:Int):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds first index after or at a start index where this <code>Every</code> contains a given <code>GenSeq</code> as a slice.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Finds first index after or at a start index where this <code>Every</code> contains a given <code>GenSeq</code> as a slice. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>GenSeq<code> defining the slice to look for</p></dd><dt class="param">from</dt><dd class="cmt"><p>the start index</p></dd><dt>returns</dt><dd class="cmt"><p>the first index <code>&gt;=</code> <code>from</code> at which the elements of this <code>Every</code> starting at that index match the elements of <code>GenSeq</code> <code>that</code>, or <code>-1</code> of no such subsequence exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#indexOfSlice" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="indexOfSlice[U&gt;:T](that:scala.collection.GenSeq[U]):Int"></a> <a id="indexOfSlice[U&gt;:T](GenSeq[U]):Int"></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">indexOfSlice</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <span class="extype" name="scala.collection.GenSeq">GenSeq</span>[<span class="extype" name="org.scalactic.Every.indexOfSlice.U">U</span>]</span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@indexOfSlice[U&gt;:T](that:scala.collection.GenSeq[U]):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds first index where this <code>Every</code> contains a given <code>GenSeq</code> as a slice.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Finds first index where this <code>Every</code> contains a given <code>GenSeq</code> as a slice. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>GenSeq<code> defining the slice to look for</p></dd><dt>returns</dt><dd class="cmt"><p>the first index at which the elements of this <code>Every</code> starting at that index match the elements of <code>GenSeq</code> <code>that</code>, or <code>-1</code> of no such subsequence exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#indexWhere" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="indexWhere(p:T=&gt;Boolean,from:Int):Int"></a> <a id="indexWhere((T)⇒Boolean,Int):Int"></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">indexWhere</span><span class="params">(<span name="p">p: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</span></span>, <span name="from">from: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@indexWhere(p:T=&gt;Boolean,from:Int):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds index of the first element satisfying some predicate after or at some start index.</p><div class="fullcomment"><div class="comment cmt"><p>Finds index of the first element satisfying some predicate after or at some start index. </p></div><dl class="paramcmts block"><dt class="param">p</dt><dd class="cmt"><p>the predicate used to test elements.</p></dd><dt class="param">from</dt><dd class="cmt"><p>the start index</p></dd><dt>returns</dt><dd class="cmt"><p>the index <code>&gt;=</code> <code>from</code> of the first element of this <code>Every</code> that satisfies the predicate <code>p</code>, or <code>-1</code>, if none exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#indexWhere" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="indexWhere(p:T=&gt;Boolean):Int"></a> <a id="indexWhere((T)⇒Boolean):Int"></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">indexWhere</span><span class="params">(<span name="p">p: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@indexWhere(p:T=&gt;Boolean):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds index of the first element satisfying some predicate.</p><div class="fullcomment"><div class="comment cmt"><p>Finds index of the first element satisfying some predicate. </p></div><dl class="paramcmts block"><dt class="param">p</dt><dd class="cmt"><p>the predicate used to test elements.</p></dd><dt>returns</dt><dd class="cmt"><p>the index of the first element of this <code>Every</code> that satisfies the predicate <code>p</code>, or <code>-1</code>, if none exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#indices" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="indices:Range"></a> <a id="indices:Range"></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">indices</span><span class="result">: <span class="extype" name="scala.Range">Range</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@indices:Range" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Produces the range of all indices of this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>Produces the range of all indices of this <code>Every</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a <code>Range</code> value from <code>0</code> to one less than the length of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#isDefinedAt" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isDefinedAt(idx:Int):Boolean"></a> <a id="isDefinedAt(Int):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">isDefinedAt</span><span class="params">(<span name="idx">idx: <span class="extype" name="scala.Int">Int</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.scalactic.Every@isDefinedAt(idx:Int):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Tests whether this <code>Every</code> contains given index.</code></p><div class="fullcomment"><div class="comment cmt"><p>Tests whether this <code>Every</code> contains given index. </p></div><dl class="paramcmts block"><dt class="param">idx</dt><dd class="cmt"><p>the index to test</p></dd><dt>returns</dt><dd class="cmt"><p>true if this <code>Every</code> contains an element at position <code>idx</code>, <code>false</code> otherwise.</p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="" class="extype" name="org.scalactic.Every">Every</a> → PartialFunction</dd></dl></div> </li><li name="org.scalactic.Every#isEmpty" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isEmpty:Boolean"></a> <a id="isEmpty: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">isEmpty</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@isEmpty:Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns <code>false</code> to indicate this <code>Every</code>, like all <code>Every<code>s, is non-empty. </code></code></code></p><div class="fullcomment"><div class="comment cmt"><p>Returns <code>false</code> to indicate this <code>Every</code>, like all <code>Every<code>s, is non-empty. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>false</p></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><span class="permalink"> <a href="../../index.html#org.scalactic.Every@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="org.scalactic.Every#isTraversableAgain" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isTraversableAgain:Boolean"></a> <a id="isTraversableAgain: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">isTraversableAgain</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@isTraversableAgain:Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns <code>true</code> to indicate this <code>Every</code>, like all <code>Every<code>s, can be traversed repeatedly. </code></code></code></p><div class="fullcomment"><div class="comment cmt"><p>Returns <code>true</code> to indicate this <code>Every</code>, like all <code>Every<code>s, can be traversed repeatedly. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>true</p></dd></dl></div> </li><li name="org.scalactic.Every#iterator" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="iterator:Iterator[T]"></a> <a id="iterator:Iterator[T]"></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">iterator</span><span class="result">: <span class="extype" name="scala.Iterator">Iterator</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@iterator:Iterator[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Creates and returns a new iterator over all elements contained in this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>Creates and returns a new iterator over all elements contained in this <code>Every</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the new iterator</p></dd></dl></div> </li><li name="org.scalactic.Every#last" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="last:T"></a> <a id="last:T"></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">last</span><span class="result">: <span class="extype" name="org.scalactic.Every.T">T</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@last:T" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Selects the last element of this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>Selects the last element of this <code>Every</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the last element of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#lastIndexOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastIndexOf[U&gt;:T](elem:U,end:Int):Int"></a> <a id="lastIndexOf[U&gt;:T](U,Int):Int"></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">lastIndexOf</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="elem">elem: <span class="extype" name="org.scalactic.Every.lastIndexOf.U">U</span></span>, <span name="end">end: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@lastIndexOf[U&gt;:T](elem:U,end:Int):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds the index of the last occurrence of some value in this <code>Every</code> before or at a given <code>end</code> index.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Finds the index of the last occurrence of some value in this <code>Every</code> before or at a given <code>end</code> index. </p></div><dl class="paramcmts block"><dt class="param">elem</dt><dd class="cmt"><p>the element value to search for.</p></dd><dt class="param">end</dt><dd class="cmt"><p>the end index.</p></dd><dt>returns</dt><dd class="cmt"><p>the index <code>&gt;=</code> <code>end</code> of the last element of this <code>Every</code> that is equal (as determined by <code>==</code>) to <code>elem</code>, or <code>-1</code>, if none exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#lastIndexOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastIndexOf[U&gt;:T](elem:U):Int"></a> <a id="lastIndexOf[U&gt;:T](U):Int"></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">lastIndexOf</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="elem">elem: <span class="extype" name="org.scalactic.Every.lastIndexOf.U">U</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@lastIndexOf[U&gt;:T](elem:U):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds the index of the last occurrence of some value in this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>Finds the index of the last occurrence of some value in this <code>Every</code>. </p></div><dl class="paramcmts block"><dt class="param">elem</dt><dd class="cmt"><p>the element value to search for.</p></dd><dt>returns</dt><dd class="cmt"><p>the index of the last element of this <code>Every</code> that is equal (as determined by <code>==</code>) to <code>elem</code>, or <code>-1</code>, if none exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#lastIndexOfSlice" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastIndexOfSlice[U&gt;:T](that:org.scalactic.Every[U],end:Int):Int"></a> <a id="lastIndexOfSlice[U&gt;:T](Every[U],Int):Int"></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">lastIndexOfSlice</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.lastIndexOfSlice.U">U</span>]</span>, <span name="end">end: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@lastIndexOfSlice[U&gt;:T](that:org.scalactic.Every[U],end:Int):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds the last index before or at a given end index where this <code>Every</code> contains a given <code>Every</code> as a slice.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Finds the last index before or at a given end index where this <code>Every</code> contains a given <code>Every</code> as a slice. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>Every</code> defining the slice to look for</p></dd><dt class="param">end</dt><dd class="cmt"><p>the end index</p></dd><dt>returns</dt><dd class="cmt"><p>the last index <code>&gt;=</code> <code>end</code> at which the elements of this <code>Every</code> starting at that index match the elements of <code>Every</code> <code>that</code>, or <code>-1</code> of no such subsequence exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#lastIndexOfSlice" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastIndexOfSlice[U&gt;:T](that:org.scalactic.Every[U]):Int"></a> <a id="lastIndexOfSlice[U&gt;:T](Every[U]):Int"></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">lastIndexOfSlice</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.lastIndexOfSlice.U">U</span>]</span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@lastIndexOfSlice[U&gt;:T](that:org.scalactic.Every[U]):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds the last index where this <code>Every</code> contains a given <code>Every</code> as a slice.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Finds the last index where this <code>Every</code> contains a given <code>Every</code> as a slice. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>Every</code> defining the slice to look for</p></dd><dt>returns</dt><dd class="cmt"><p>the last index at which the elements of this <code>Every</code> starting at that index match the elements of <code>Every</code> <code>that</code>, or <code>-1</code> of no such subsequence exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#lastIndexOfSlice" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastIndexOfSlice[U&gt;:T](that:scala.collection.GenSeq[U],end:Int):Int"></a> <a id="lastIndexOfSlice[U&gt;:T](GenSeq[U],Int):Int"></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">lastIndexOfSlice</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <span class="extype" name="scala.collection.GenSeq">GenSeq</span>[<span class="extype" name="org.scalactic.Every.lastIndexOfSlice.U">U</span>]</span>, <span name="end">end: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@lastIndexOfSlice[U&gt;:T](that:scala.collection.GenSeq[U],end:Int):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds the last index before or at a given end index where this <code>Every</code> contains a given <code>GenSeq</code> as a slice.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Finds the last index before or at a given end index where this <code>Every</code> contains a given <code>GenSeq</code> as a slice. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>GenSeq</code> defining the slice to look for</p></dd><dt class="param">end</dt><dd class="cmt"><p>the end index</p></dd><dt>returns</dt><dd class="cmt"><p>the last index <code>&gt;=</code> <code>end</code> at which the elements of this <code>Every</code> starting at that index match the elements of <code>GenSeq</code> <code>that</code>, or <code>-1</code> of no such subsequence exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#lastIndexOfSlice" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastIndexOfSlice[U&gt;:T](that:scala.collection.GenSeq[U]):Int"></a> <a id="lastIndexOfSlice[U&gt;:T](GenSeq[U]):Int"></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">lastIndexOfSlice</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <span class="extype" name="scala.collection.GenSeq">GenSeq</span>[<span class="extype" name="org.scalactic.Every.lastIndexOfSlice.U">U</span>]</span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@lastIndexOfSlice[U&gt;:T](that:scala.collection.GenSeq[U]):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds the last index where this <code>Every</code> contains a given <code>GenSeq</code> as a slice.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Finds the last index where this <code>Every</code> contains a given <code>GenSeq</code> as a slice. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>GenSeq</code> defining the slice to look for</p></dd><dt>returns</dt><dd class="cmt"><p>the last index at which the elements of this <code>Every</code> starting at that index match the elements of <code>GenSeq</code> <code>that</code>, or <code>-1</code> of no such subsequence exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#lastIndexWhere" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastIndexWhere(p:T=&gt;Boolean,end:Int):Int"></a> <a id="lastIndexWhere((T)⇒Boolean,Int):Int"></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">lastIndexWhere</span><span class="params">(<span name="p">p: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</span></span>, <span name="end">end: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@lastIndexWhere(p:T=&gt;Boolean,end:Int):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds index of last element satisfying some predicate before or at given end index.</p><div class="fullcomment"><div class="comment cmt"><p>Finds index of last element satisfying some predicate before or at given end index. </p></div><dl class="paramcmts block"><dt class="param">p</dt><dd class="cmt"><p>the predicate used to test elements.</p></dd><dt class="param">end</dt><dd class="cmt"><p>the end index</p></dd><dt>returns</dt><dd class="cmt"><p>the index <code>&gt;=</code> <code>end</code> of the last element of this <code>Every</code> that satisfies the predicate <code>p</code>, or <code>-1</code>, if none exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#lastIndexWhere" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastIndexWhere(p:T=&gt;Boolean):Int"></a> <a id="lastIndexWhere((T)⇒Boolean):Int"></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">lastIndexWhere</span><span class="params">(<span name="p">p: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@lastIndexWhere(p:T=&gt;Boolean):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds index of last element satisfying some predicate.</p><div class="fullcomment"><div class="comment cmt"><p>Finds index of last element satisfying some predicate. </p></div><dl class="paramcmts block"><dt class="param">p</dt><dd class="cmt"><p>the predicate used to test elements.</p></dd><dt>returns</dt><dd class="cmt"><p>the index of the last element of this <code>Every</code> that satisfies the predicate <code>p</code>, or <code>-1</code>, if none exists.</p></dd></dl></div> </li><li name="org.scalactic.Every#lastOption" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lastOption:Option[T]"></a> <a id="lastOption:Option[T]"></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">lastOption</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@lastOption:Option[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns the last element of this <code>Every</code>, wrapped in a <code>Some</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Returns the last element of this <code>Every</code>, wrapped in a <code>Some</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the last element, wrapped in a <code>Some</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#length" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="length:Int"></a> <a id="length:Int"></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">length</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@length:Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">The length of this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>The length of this <code>Every</code>.</p><p>Note: <code>length</code> and <code>size</code> yield the same result, which will be <code>&gt;</code>= 1.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the number of elements in this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#lengthCompare" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lengthCompare(len:Int):Int"></a> <a id="lengthCompare(Int):Int"></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">lengthCompare</span><span class="params">(<span name="len">len: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@lengthCompare(len:Int):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Compares the length of this <code>Every</code> to a test value.</code></p><div class="fullcomment"><div class="comment cmt"><p>Compares the length of this <code>Every</code> to a test value. </p></div><dl class="paramcmts block"><dt class="param">len</dt><dd class="cmt"><p>the test value that gets compared with the length.</p></dd><dt>returns</dt><dd class="cmt"><p>a value <code>x</code> where <pre> x &lt; 0 if this.length &lt; len x == 0 if this.length == len x &gt; 0 if this.length &gt; len </pre></p></dd></dl></div> </li><li name="scala.PartialFunction#lift" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="lift:A=&gt;Option[B]"></a> <a id="lift:(Int)⇒Option[T]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">lift</span><span class="result">: (<span class="extype" name="scala.Int">Int</span>) ⇒ <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@lift:A=&gt;Option[B]" 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>PartialFunction</dd></dl></div> </li><li name="org.scalactic.Every#map" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="map[U](f:T=&gt;U):org.scalactic.Every[U]"></a> <a id="map[U]((T)⇒U):Every[U]"></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">map</span><span class="tparams">[<span name="U">U</span>]</span><span class="params">(<span name="f">f: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="org.scalactic.Every.map.U">U</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.map.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@map[U](f:T=&gt;U):org.scalactic.Every[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Builds a new <code>Every</code> by applying a function to all elements of this <code>Every</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Builds a new <code>Every</code> by applying a function to all elements of this <code>Every</code>. </p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>the element type of the returned <code>Every</code>.</p></dd><dt class="param">f</dt><dd class="cmt"><p>the function to apply to each element.</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> resulting from applying the given function <code>f</code> to each element of this <code>Every</code> and collecting the results.</p></dd></dl></div> </li><li name="org.scalactic.Every#max" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="max[U&gt;:T](implicitcmp:Ordering[U]):T"></a> <a id="max[U&gt;:T](Ordering[U]):T"></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">max</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span class="implicit">implicit </span><span name="cmp">cmp: <span class="extype" name="scala.Ordering">Ordering</span>[<span class="extype" name="org.scalactic.Every.max.U">U</span>]</span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.T">T</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@max[U&gt;:T](implicitcmp:Ordering[U]):T" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds the largest element.</p><div class="fullcomment"><div class="comment cmt"><p>Finds the largest element. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the largest element of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#maxBy" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="maxBy[U](f:T=&gt;U)(implicitcmp:Ordering[U]):T"></a> <a id="maxBy[U]((T)⇒U)(Ordering[U]):T"></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">maxBy</span><span class="tparams">[<span name="U">U</span>]</span><span class="params">(<span name="f">f: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="org.scalactic.Every.maxBy.U">U</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="cmp">cmp: <span class="extype" name="scala.Ordering">Ordering</span>[<span class="extype" name="org.scalactic.Every.maxBy.U">U</span>]</span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.T">T</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@maxBy[U](f:T=&gt;U)(implicitcmp:Ordering[U]):T" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds the largest result after applying the given function to every element.</p><div class="fullcomment"><div class="comment cmt"><p>Finds the largest result after applying the given function to every element. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the largest result of applying the given function to every element of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#min" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="min[U&gt;:T](implicitcmp:Ordering[U]):T"></a> <a id="min[U&gt;:T](Ordering[U]):T"></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">min</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span class="implicit">implicit </span><span name="cmp">cmp: <span class="extype" name="scala.Ordering">Ordering</span>[<span class="extype" name="org.scalactic.Every.min.U">U</span>]</span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.T">T</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@min[U&gt;:T](implicitcmp:Ordering[U]):T" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds the smallest element.</p><div class="fullcomment"><div class="comment cmt"><p>Finds the smallest element. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the smallest element of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#minBy" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="minBy[U](f:T=&gt;U)(implicitcmp:Ordering[U]):T"></a> <a id="minBy[U]((T)⇒U)(Ordering[U]):T"></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">minBy</span><span class="tparams">[<span name="U">U</span>]</span><span class="params">(<span name="f">f: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="org.scalactic.Every.minBy.U">U</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="cmp">cmp: <span class="extype" name="scala.Ordering">Ordering</span>[<span class="extype" name="org.scalactic.Every.minBy.U">U</span>]</span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.T">T</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@minBy[U](f:T=&gt;U)(implicitcmp:Ordering[U]):T" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Finds the smallest result after applying the given function to every element.</p><div class="fullcomment"><div class="comment cmt"><p>Finds the smallest result after applying the given function to every element. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the smallest result of applying the given function to every element of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#mkString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="mkString(start:String,sep:String,end:String):String"></a> <a id="mkString(String,String,String):String"></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">mkString</span><span class="params">(<span name="start">start: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="sep">sep: <span class="extype" name="scala.Predef.String">String</span></span>, <span name="end">end: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@mkString(start:String,sep:String,end:String):String" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Displays all elements of this <code>Every</code> in a string using start, end, and separator strings.</code></p><div class="fullcomment"><div class="comment cmt"><p>Displays all elements of this <code>Every</code> in a string using start, end, and separator strings. </p></div><dl class="paramcmts block"><dt class="param">start</dt><dd class="cmt"><p>the starting string.</p></dd><dt class="param">sep</dt><dd class="cmt"><p>the separator string.</p></dd><dt class="param">end</dt><dd class="cmt"><p>the ending string.</p></dd><dt>returns</dt><dd class="cmt"><p>a string representation of this <code>Every</code>. The resulting string begins with the string <code>start</code> and ends with the string <code>end</code>. Inside, In the resulting string, the result of invoking <code>toString</code> on all elements of this <code>Every</code> are separated by the string <code>sep</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#mkString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="mkString(sep:String):String"></a> <a id="mkString(String):String"></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">mkString</span><span class="params">(<span name="sep">sep: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@mkString(sep:String):String" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Displays all elements of this <code>Every</code> in a string using a separator string.</code></p><div class="fullcomment"><div class="comment cmt"><p>Displays all elements of this <code>Every</code> in a string using a separator string. </p></div><dl class="paramcmts block"><dt class="param">sep</dt><dd class="cmt"><p>the separator string</p></dd><dt>returns</dt><dd class="cmt"><p>a string representation of this <code>Every</code>. In the resulting string, the result of invoking <code>toString</code> on all elements of this <code>Every</code> are separated by the string <code>sep</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#mkString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="mkString:String"></a> <a id="mkString:String"></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">mkString</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@mkString:String" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Displays all elements of this <code>Every</code> in a string.</code></p><div class="fullcomment"><div class="comment cmt"><p>Displays all elements of this <code>Every</code> in a string. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a string representation of this <code>Every</code>. In the resulting string, the result of invoking <code>toString</code> on all elements of this <code>Every</code> follow each other without any separator string.</p></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.scalactic.Every@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="org.scalactic.Every#nonEmpty" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="nonEmpty:Boolean"></a> <a id="nonEmpty: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">nonEmpty</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@nonEmpty:Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns <code>true</code> to indicate this <code>Every</code>, like all <code>Every<code>s, is non-empty. </code></code></code></p><div class="fullcomment"><div class="comment cmt"><p>Returns <code>true</code> to indicate this <code>Every</code>, like all <code>Every<code>s, is non-empty. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>true</p></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.scalactic.Every@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.scalactic.Every@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.PartialFunction#orElse" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="orElse[A1&lt;:A,B1&gt;:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]"></a> <a id="orElse[A1&lt;:Int,B1&gt;:T](PartialFunction[A1,B1]):PartialFunction[A1,B1]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">orElse</span><span class="tparams">[<span name="A1">A1 &lt;: <span class="extype" name="scala.Int">Int</span></span>, <span name="B1">B1 &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <span class="extype" name="scala.PartialFunction">PartialFunction</span>[<span class="extype" name="scala.PartialFunction.orElse.A1">A1</span>, <span class="extype" name="scala.PartialFunction.orElse.B1">B1</span>]</span>)</span><span class="result">: <span class="extype" name="scala.PartialFunction">PartialFunction</span>[<span class="extype" name="scala.PartialFunction.orElse.A1">A1</span>, <span class="extype" name="scala.PartialFunction.orElse.B1">B1</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@orElse[A1&lt;:A,B1&gt;:B](that:PartialFunction[A1,B1]):PartialFunction[A1,B1]" 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>PartialFunction</dd></dl></div> </li><li name="org.scalactic.Every#padTo" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="padTo[U&gt;:T](len:Int,elem:U):org.scalactic.Every[U]"></a> <a id="padTo[U&gt;:T](Int,U):Every[U]"></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">padTo</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="len">len: <span class="extype" name="scala.Int">Int</span></span>, <span name="elem">elem: <span class="extype" name="org.scalactic.Every.padTo.U">U</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.padTo.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@padTo[U&gt;:T](len:Int,elem:U):org.scalactic.Every[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">A copy of this <code>Every</code> with an element value appended until a given target length is reached.</code></p><div class="fullcomment"><div class="comment cmt"><p>A copy of this <code>Every</code> with an element value appended until a given target length is reached. </p></div><dl class="paramcmts block"><dt class="param">len</dt><dd class="cmt"><p>the target length</p></dd><dt class="param">elem</dt><dd class="cmt"><p>he padding value</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> consisting of all elements of this <code>Every</code> followed by the minimal number of occurrences of <code>elem</code> so that the resulting <code>Every</code> has a length of at least <code>len</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#patch" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="patch[U&gt;:T](from:Int,that:org.scalactic.Every[U],replaced:Int):org.scalactic.Every[U]"></a> <a id="patch[U&gt;:T](Int,Every[U],Int):Every[U]"></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">patch</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="from">from: <span class="extype" name="scala.Int">Int</span></span>, <span name="that">that: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.patch.U">U</span>]</span>, <span name="replaced">replaced: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.patch.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@patch[U&gt;:T](from:Int,that:org.scalactic.Every[U],replaced:Int):org.scalactic.Every[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Produces a new <code>Every</code> where a slice of elements in this <code>Every</code> is replaced by another <code>Every</code> </code></code></code></p><div class="fullcomment"><div class="comment cmt"><p>Produces a new <code>Every</code> where a slice of elements in this <code>Every</code> is replaced by another <code>Every</code> </p></div><dl class="paramcmts block"><dt class="param">from</dt><dd class="cmt"><p>the index of the first replaced element</p></dd><dt class="param">that</dt><dd class="cmt"><p>the <code>Every</code> whose elements should replace a slice in this <code>Every</code></p></dd><dt class="param">replaced</dt><dd class="cmt"><p>the number of elements to drop in the original <code>Every</code></p></dd></dl></div> </li><li name="org.scalactic.Every#permutations" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="permutations:Iterator[org.scalactic.Every[T]]"></a> <a id="permutations:Iterator[Every[T]]"></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">permutations</span><span class="result">: <span class="extype" name="scala.Iterator">Iterator</span>[<a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.T">T</span>]]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@permutations:Iterator[org.scalactic.Every[T]]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Iterates over distinct permutations.</p><div class="fullcomment"><div class="comment cmt"><p>Iterates over distinct permutations.</p><p>Here's an example:</p><p><pre class="stHighlighted"> <span class="stType">Every</span>(<span class="stQuotedString">'a'</span>, <span class="stQuotedString">'b'</span>, <span class="stQuotedString">'b'</span>).permutations.toList = <span class="stType">Iterator</span>(<span class="stType">Many</span>(a, b, b), <span class="stType">Many</span>(b, a, b), <span class="stType">Many</span>(b, b, a)) </pre> </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>an iterator which traverses the distinct permutations of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#prefixLength" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="prefixLength(p:T=&gt;Boolean):Int"></a> <a id="prefixLength((T)⇒Boolean):Int"></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">prefixLength</span><span class="params">(<span name="p">p: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@prefixLength(p:T=&gt;Boolean):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns the length of the longest prefix whose elements all satisfy some predicate.</p><div class="fullcomment"><div class="comment cmt"><p>Returns the length of the longest prefix whose elements all satisfy some predicate. </p></div><dl class="paramcmts block"><dt class="param">p</dt><dd class="cmt"><p>the predicate used to test elements.</p></dd><dt>returns</dt><dd class="cmt"><p>the length of the longest prefix of this <code>Every</code> such that every element of the segment satisfies the predicate <code>p</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#product" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="product[U&gt;:T](implicitnum:Numeric[U]):U"></a> <a id="product[U&gt;:T](Numeric[U]):U"></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">product</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span class="implicit">implicit </span><span name="num">num: <span class="extype" name="scala.Numeric">Numeric</span>[<span class="extype" name="org.scalactic.Every.product.U">U</span>]</span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.product.U">U</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@product[U&gt;:T](implicitnum:Numeric[U]):U" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">The result of multiplying all the elements of this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>The result of multiplying all the elements of this <code>Every</code>.</p><p>This method can be invoked for any <code>Every[T]</code> for which an implicit <code>Numeric[T]</code> exists.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the product of all elements</p></dd></dl></div> </li><li name="scala.Product#productIterator" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="productIterator:Iterator[Any]"></a> <a id="productIterator:Iterator[Any]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">productIterator</span><span class="result">: <span class="extype" name="scala.Iterator">Iterator</span>[<span class="extype" name="scala.Any">Any</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@productIterator:Iterator[Any]" 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>Product</dd></dl></div> </li><li name="scala.Product#productPrefix" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="productPrefix:String"></a> <a id="productPrefix: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">productPrefix</span><span class="result">: <span class="extype" name="java.lang.String">String</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@productPrefix: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>Product</dd></dl></div> </li><li name="org.scalactic.Every#reduce" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="reduce[U&gt;:T](op:(U,U)=&gt;U):U"></a> <a id="reduce[U&gt;:T]((U,U)⇒U):U"></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">reduce</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.reduce.U">U</span>, <span class="extype" name="org.scalactic.Every.reduce.U">U</span>) ⇒ <span class="extype" name="org.scalactic.Every.reduce.U">U</span></span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.reduce.U">U</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@reduce[U&gt;:T](op:(U,U)=&gt;U):U" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Reduces the elements of this <code>Every</code> using the specified associative binary operator.</code></p><div class="fullcomment"><div class="comment cmt"><p>Reduces the elements of this <code>Every</code> using the specified associative binary operator.</p><p>The order in which operations are performed on elements is unspecified and may be nondeterministic.</p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>a type parameter for the binary operator, a supertype of T.</p></dd><dt class="param">op</dt><dd class="cmt"><p>a binary operator that must be associative.</p></dd><dt>returns</dt><dd class="cmt"><p>the result of applying reduce operator <code>op</code> between all the elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#reduceLeft" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="reduceLeft[U&gt;:T](op:(U,T)=&gt;U):U"></a> <a id="reduceLeft[U&gt;:T]((U,T)⇒U):U"></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">reduceLeft</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.reduceLeft.U">U</span>, <span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="org.scalactic.Every.reduceLeft.U">U</span></span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.reduceLeft.U">U</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@reduceLeft[U&gt;:T](op:(U,T)=&gt;U):U" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Applies a binary operator to all elements of this <code>Every</code>, going left to right.</code></p><div class="fullcomment"><div class="comment cmt"><p>Applies a binary operator to all elements of this <code>Every</code>, going left to right. </p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>the result type of the binary operator.</p></dd><dt class="param">op</dt><dd class="cmt"><p>the binary operator.</p></dd><dt>returns</dt><dd class="cmt"><p>the result of inserting <code>op</code> between consecutive elements of this <code>Every</code>, going left to right: <pre> op(...op(op(x_1, x_2), x_3), ..., x_n) </pre> where x<sub>1</sub>, ..., x<sub>n</sub> are the elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#reduceLeftOption" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="reduceLeftOption[U&gt;:T](op:(U,T)=&gt;U):Option[U]"></a> <a id="reduceLeftOption[U&gt;:T]((U,T)⇒U):Option[U]"></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">reduceLeftOption</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.reduceLeftOption.U">U</span>, <span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="org.scalactic.Every.reduceLeftOption.U">U</span></span>)</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="org.scalactic.Every.reduceLeftOption.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@reduceLeftOption[U&gt;:T](op:(U,T)=&gt;U):Option[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Applies a binary operator to all elements of this <code>Every</code>, going left to right, returning the result in a <code>Some</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Applies a binary operator to all elements of this <code>Every</code>, going left to right, returning the result in a <code>Some</code>. </p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>the result type of the binary operator.</p></dd><dt class="param">op</dt><dd class="cmt"><p>the binary operator.</p></dd><dt>returns</dt><dd class="cmt"><p>a <code>Some</code> containing the result of <code>reduceLeft(op)</code></p></dd></dl></div> </li><li name="org.scalactic.Every#reduceOption" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="reduceOption[U&gt;:T](op:(U,U)=&gt;U):Option[U]"></a> <a id="reduceOption[U&gt;:T]((U,U)⇒U):Option[U]"></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">reduceOption</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.reduceOption.U">U</span>, <span class="extype" name="org.scalactic.Every.reduceOption.U">U</span>) ⇒ <span class="extype" name="org.scalactic.Every.reduceOption.U">U</span></span>)</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="org.scalactic.Every.reduceOption.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@reduceOption[U&gt;:T](op:(U,U)=&gt;U):Option[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> </li><li name="org.scalactic.Every#reduceRight" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="reduceRight[U&gt;:T](op:(T,U)=&gt;U):U"></a> <a id="reduceRight[U&gt;:T]((T,U)⇒U):U"></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">reduceRight</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.T">T</span>, <span class="extype" name="org.scalactic.Every.reduceRight.U">U</span>) ⇒ <span class="extype" name="org.scalactic.Every.reduceRight.U">U</span></span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.reduceRight.U">U</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@reduceRight[U&gt;:T](op:(T,U)=&gt;U):U" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Applies a binary operator to all elements of this <code>Every</code>, going right to left.</code></p><div class="fullcomment"><div class="comment cmt"><p>Applies a binary operator to all elements of this <code>Every</code>, going right to left. </p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>the result of the binary operator</p></dd><dt class="param">op</dt><dd class="cmt"><p>the binary operator</p></dd><dt>returns</dt><dd class="cmt"><p>the result of inserting <code>op</code> between consecutive elements of this <code>Every</code>, going right to left: <pre> op(x_1, op(x_2, ... op(x_{n-1}, x_n)...)) </pre> where x<sub>1</sub>, ..., x<sub>n</sub> are the elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#reduceRightOption" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="reduceRightOption[U&gt;:T](op:(T,U)=&gt;U):Option[U]"></a> <a id="reduceRightOption[U&gt;:T]((T,U)⇒U):Option[U]"></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">reduceRightOption</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.T">T</span>, <span class="extype" name="org.scalactic.Every.reduceRightOption.U">U</span>) ⇒ <span class="extype" name="org.scalactic.Every.reduceRightOption.U">U</span></span>)</span><span class="result">: <span class="extype" name="scala.Option">Option</span>[<span class="extype" name="org.scalactic.Every.reduceRightOption.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@reduceRightOption[U&gt;:T](op:(T,U)=&gt;U):Option[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Applies a binary operator to all elements of this <code>Every</code>, going right to left, returning the result in a <code>Some</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Applies a binary operator to all elements of this <code>Every</code>, going right to left, returning the result in a <code>Some</code>. </p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>the result of the binary operator</p></dd><dt class="param">op</dt><dd class="cmt"><p>the binary operator</p></dd><dt>returns</dt><dd class="cmt"><p>a <code>Some</code> containing the result of <code>reduceRight(op)</code></p></dd></dl></div> </li><li name="org.scalactic.Every#reverse" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="reverse:org.scalactic.Every[T]"></a> <a id="reverse:Every[T]"></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">reverse</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@reverse:org.scalactic.Every[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns new <code>Every</code> wih elements in reverse order.</code></p><div class="fullcomment"><div class="comment cmt"><p>Returns new <code>Every</code> wih elements in reverse order. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> with all elements of this <code>Every</code> in reversed order.</p></dd></dl></div> </li><li name="org.scalactic.Every#reverseIterator" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="reverseIterator:Iterator[T]"></a> <a id="reverseIterator:Iterator[T]"></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">reverseIterator</span><span class="result">: <span class="extype" name="scala.Iterator">Iterator</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@reverseIterator:Iterator[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">An iterator yielding elements in reverse order.</p><div class="fullcomment"><div class="comment cmt"><p>An iterator yielding elements in reverse order.</p><p>Note: <code>every.reverseIterator</code> is the same as <code>every.reverse.iterator</code>, but might be more efficient.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>an iterator yielding the elements of this <code>Every</code> in reversed order</p></dd></dl></div> </li><li name="org.scalactic.Every#reverseMap" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="reverseMap[U](f:T=&gt;U):org.scalactic.Every[U]"></a> <a id="reverseMap[U]((T)⇒U):Every[U]"></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">reverseMap</span><span class="tparams">[<span name="U">U</span>]</span><span class="params">(<span name="f">f: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="org.scalactic.Every.reverseMap.U">U</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.reverseMap.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@reverseMap[U](f:T=&gt;U):org.scalactic.Every[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Builds a new <code>Every</code> by applying a function to all elements of this <code>Every</code> and collecting the results in reverse order.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Builds a new <code>Every</code> by applying a function to all elements of this <code>Every</code> and collecting the results in reverse order.</p><p>Note: <code>every.reverseMap(f)</code> is the same as <code>every.reverse.map(f)</code>, but might be more efficient.</p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>the element type of the returned <code>Every</code>.</p></dd><dt class="param">f</dt><dd class="cmt"><p>the function to apply to each element.</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> resulting from applying the given function <code>f</code> to each element of this <code>Every</code> and collecting the results in reverse order.</p></dd></dl></div> </li><li name="scala.PartialFunction#runWith" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="runWith[U](action:B=&gt;U):A=&gt;Boolean"></a> <a id="runWith[U]((T)⇒U):(Int)⇒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">runWith</span><span class="tparams">[<span name="U">U</span>]</span><span class="params">(<span name="action">action: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.PartialFunction.runWith.U">U</span></span>)</span><span class="result">: (<span class="extype" name="scala.Int">Int</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@runWith[U](action:B=&gt;U):A=&gt;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>PartialFunction</dd></dl></div> </li><li name="org.scalactic.Every#sameElements" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="sameElements[U&gt;:T](that:org.scalactic.Every[U]):Boolean"></a> <a id="sameElements[U&gt;:T](Every[U]):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">sameElements</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.sameElements.U">U</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.scalactic.Every@sameElements[U&gt;:T](that:org.scalactic.Every[U]):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Checks if the given <code>Every</code> contains the same elements in the same order as this <code>Every</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Checks if the given <code>Every</code> contains the same elements in the same order as this <code>Every</code>. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>Every</code> with which to compare</p></dd><dt>returns</dt><dd class="cmt"><p><code>true</code>, if both this and the given <code>Every</code> contain the same elements in the same order, <code>false</code> otherwise.</p></dd></dl></div> </li><li name="org.scalactic.Every#sameElements" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="sameElements[U&gt;:T](that:scala.collection.GenIterable[U]):Boolean"></a> <a id="sameElements[U&gt;:T](GenIterable[U]):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">sameElements</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <span class="extype" name="scala.collection.GenIterable">GenIterable</span>[<span class="extype" name="org.scalactic.Every.sameElements.U">U</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.scalactic.Every@sameElements[U&gt;:T](that:scala.collection.GenIterable[U]):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Checks if the given <code>GenIterable</code> contains the same elements in the same order as this <code>Every</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Checks if the given <code>GenIterable</code> contains the same elements in the same order as this <code>Every</code>. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>GenIterable</code> with which to compare</p></dd><dt>returns</dt><dd class="cmt"><p><code>true</code>, if both this <code>Every</code> and the given <code>GenIterable</code> contain the same elements in the same order, <code>false</code> otherwise.</p></dd></dl></div> </li><li name="org.scalactic.Every#scan" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scan[U&gt;:T](z:U)(op:(U,U)=&gt;U):org.scalactic.Every[U]"></a> <a id="scan[U&gt;:T](U)((U,U)⇒U):Every[U]"></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">scan</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="z">z: <span class="extype" name="org.scalactic.Every.scan.U">U</span></span>)</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.scan.U">U</span>, <span class="extype" name="org.scalactic.Every.scan.U">U</span>) ⇒ <span class="extype" name="org.scalactic.Every.scan.U">U</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.scan.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@scan[U&gt;:T](z:U)(op:(U,U)=&gt;U):org.scalactic.Every[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Computes a prefix scan of the elements of this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>Computes a prefix scan of the elements of this <code>Every</code>.</p><p>Note: The neutral element z may be applied more than once.</p><p>Here are some examples:</p><p><pre class="stHighlighted"> <span class="stType">Every</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>).scan(<span class="stLiteral">0</span>)(_ + _) == <span class="stType">Every</span>(<span class="stLiteral">0</span>, <span class="stLiteral">1</span>, <span class="stLiteral">3</span>, <span class="stLiteral">6</span>) <span class="stType">Every</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>).scan(<span class="stQuotedString">"z"</span>)(_ + _.toString) == <span class="stType">Every</span>(<span class="stQuotedString">"z"</span>, <span class="stQuotedString">"z1"</span>, <span class="stQuotedString">"z12"</span>, <span class="stQuotedString">"z123"</span>) </pre> </p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>a type parameter for the binary operator, a supertype of T, and the type of the resulting <code>Every</code>.</p></dd><dt class="param">z</dt><dd class="cmt"><p>a neutral element for the scan operation; may be added to the result an arbitrary number of times, and must not change the result (<em>e.g.</em>, <code>Nil</code> for list concatenation, 0 for addition, or 1 for multiplication.)</p></dd><dt class="param">op</dt><dd class="cmt"><p>a binary operator that must be associative</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> containing the prefix scan of the elements in this <code>Every</code></p></dd></dl></div> </li><li name="org.scalactic.Every#scanLeft" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scanLeft[B](z:B)(op:(B,T)=&gt;B):org.scalactic.Every[B]"></a> <a id="scanLeft[B](B)((B,T)⇒B):Every[B]"></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">scanLeft</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="z">z: <span class="extype" name="org.scalactic.Every.scanLeft.B">B</span></span>)</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.scanLeft.B">B</span>, <span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="org.scalactic.Every.scanLeft.B">B</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.scanLeft.B">B</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@scanLeft[B](z:B)(op:(B,T)=&gt;B):org.scalactic.Every[B]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Produces an <code>Every</code> containing cumulative results of applying the operator going left to right.</code></p><div class="fullcomment"><div class="comment cmt"><p>Produces an <code>Every</code> containing cumulative results of applying the operator going left to right.</p><p>Here are some examples:</p><p><pre class="stHighlighted"> <span class="stType">Every</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>).scanLeft(<span class="stLiteral">0</span>)(_ + _) == <span class="stType">Every</span>(<span class="stLiteral">0</span>, <span class="stLiteral">1</span>, <span class="stLiteral">3</span>, <span class="stLiteral">6</span>) <span class="stType">Every</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>).scanLeft(<span class="stQuotedString">"z"</span>)(_ + _) == <span class="stType">Every</span>(<span class="stQuotedString">"z"</span>, <span class="stQuotedString">"z1"</span>, <span class="stQuotedString">"z12"</span>, <span class="stQuotedString">"z123"</span>) </pre> </p></div><dl class="paramcmts block"><dt class="tparam">B</dt><dd class="cmt"><p>the result type of the binary operator and type of the resulting <code>Every</code></p></dd><dt class="param">z</dt><dd class="cmt"><p>the start value.</p></dd><dt class="param">op</dt><dd class="cmt"><p>the binary operator.</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> containing the intermediate results of inserting <code>op</code> between consecutive elements of this <code>Every</code>, going left to right, with the start value, <code>z</code>, on the left.</p></dd></dl></div> </li><li name="org.scalactic.Every#scanRight" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scanRight[B](z:B)(op:(T,B)=&gt;B):org.scalactic.Every[B]"></a> <a id="scanRight[B](B)((T,B)⇒B):Every[B]"></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">scanRight</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="z">z: <span class="extype" name="org.scalactic.Every.scanRight.B">B</span></span>)</span><span class="params">(<span name="op">op: (<span class="extype" name="org.scalactic.Every.T">T</span>, <span class="extype" name="org.scalactic.Every.scanRight.B">B</span>) ⇒ <span class="extype" name="org.scalactic.Every.scanRight.B">B</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.scanRight.B">B</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@scanRight[B](z:B)(op:(T,B)=&gt;B):org.scalactic.Every[B]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Produces an <code>Every</code> containing cumulative results of applying the operator going right to left.</code></p><div class="fullcomment"><div class="comment cmt"><p>Produces an <code>Every</code> containing cumulative results of applying the operator going right to left.</p><p>Here are some examples:</p><p><pre class="stHighlighted"> <span class="stType">Every</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>).scanRight(<span class="stLiteral">0</span>)(_ + _) == <span class="stType">Every</span>(<span class="stLiteral">6</span>, <span class="stLiteral">5</span>, <span class="stLiteral">3</span>, <span class="stLiteral">0</span>) <span class="stType">Every</span>(<span class="stLiteral">1</span>, <span class="stLiteral">2</span>, <span class="stLiteral">3</span>).scanRight(<span class="stQuotedString">"z"</span>)(_ + _) == <span class="stType">Every</span>(<span class="stQuotedString">"123z"</span>, <span class="stQuotedString">"23z"</span>, <span class="stQuotedString">"3z"</span>, <span class="stQuotedString">"z"</span>) </pre> </p></div><dl class="paramcmts block"><dt class="tparam">B</dt><dd class="cmt"><p>the result of the binary operator and type of the resulting <code>Every</code></p></dd><dt class="param">z</dt><dd class="cmt"><p>the start value</p></dd><dt class="param">op</dt><dd class="cmt"><p>the binary operator</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> containing the intermediate results of inserting <code>op</code> between consecutive elements of this <code>Every</code>, going right to left, with the start value, <code>z</code>, on the right.</p></dd></dl></div> </li><li name="org.scalactic.Every#segmentLength" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="segmentLength(p:T=&gt;Boolean,from:Int):Int"></a> <a id="segmentLength((T)⇒Boolean,Int):Int"></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">segmentLength</span><span class="params">(<span name="p">p: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</span></span>, <span name="from">from: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@segmentLength(p:T=&gt;Boolean,from:Int):Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Computes length of longest segment whose elements all satisfy some predicate.</p><div class="fullcomment"><div class="comment cmt"><p>Computes length of longest segment whose elements all satisfy some predicate. </p></div><dl class="paramcmts block"><dt class="param">p</dt><dd class="cmt"><p>the predicate used to test elements.</p></dd><dt class="param">from</dt><dd class="cmt"><p>the index where the search starts.</p></dd></dl></div> </li><li name="org.scalactic.Every#size" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="size:Int"></a> <a id="size:Int"></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">size</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@size:Int" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">The size of this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>The size of this <code>Every</code>.</p><p>Note: <code>length</code> and <code>size</code> yield the same result, which will be <code>&gt;</code>= 1.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the number of elements in this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#sliding" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="sliding(size:Int,step:Int):Iterator[org.scalactic.Every[T]]"></a> <a id="sliding(Int,Int):Iterator[Every[T]]"></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">sliding</span><span class="params">(<span name="size">size: <span class="extype" name="scala.Int">Int</span></span>, <span name="step">step: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Iterator">Iterator</span>[<a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.T">T</span>]]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@sliding(size:Int,step:Int):Iterator[org.scalactic.Every[T]]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Groups elements in fixed size blocks by passing a &ldquo;sliding window&rdquo; over them (as opposed to partitioning them, as is done in grouped.), moving the sliding window by a given <code>step<code> each time. </code></p><div class="fullcomment"><div class="comment cmt"><p>Groups elements in fixed size blocks by passing a &ldquo;sliding window&rdquo; over them (as opposed to partitioning them, as is done in grouped.), moving the sliding window by a given <code>step<code> each time. </p></div><dl class="paramcmts block"><dt class="param">size</dt><dd class="cmt"><p>the number of elements per group</p></dd><dt class="param">step</dt><dd class="cmt"><p>the distance between the first elements of successive groups</p></dd><dt>returns</dt><dd class="cmt"><p>an iterator producing <code>Every</code>s of size <code>size</code>, except the last and the only element will be truncated if there are fewer elements than <code>size</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#sliding" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="sliding(size:Int):Iterator[org.scalactic.Every[T]]"></a> <a id="sliding(Int):Iterator[Every[T]]"></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">sliding</span><span class="params">(<span name="size">size: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Iterator">Iterator</span>[<a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.T">T</span>]]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@sliding(size:Int):Iterator[org.scalactic.Every[T]]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Groups elements in fixed size blocks by passing a &ldquo;sliding window&rdquo; over them (as opposed to partitioning them, as is done in grouped.) </p><div class="fullcomment"><div class="comment cmt"><p>Groups elements in fixed size blocks by passing a &ldquo;sliding window&rdquo; over them (as opposed to partitioning them, as is done in grouped.) </p></div><dl class="paramcmts block"><dt class="param">size</dt><dd class="cmt"><p>the number of elements per group</p></dd><dt>returns</dt><dd class="cmt"><p>an iterator producing <code>Every</code>s of size <code>size</code>, except the last and the only element will be truncated if there are fewer elements than <code>size</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#sortBy" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="sortBy[U](f:T=&gt;U)(implicitord:scala.math.Ordering[U]):org.scalactic.Every[T]"></a> <a id="sortBy[U]((T)⇒U)(Ordering[U]):Every[T]"></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">sortBy</span><span class="tparams">[<span name="U">U</span>]</span><span class="params">(<span name="f">f: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="org.scalactic.Every.sortBy.U">U</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="ord">ord: <span class="extype" name="scala.math.Ordering">Ordering</span>[<span class="extype" name="org.scalactic.Every.sortBy.U">U</span>]</span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@sortBy[U](f:T=&gt;U)(implicitord:scala.math.Ordering[U]):org.scalactic.Every[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Sorts this <code>Every</code> according to the <code>Ordering</code> of the result of applying the given function to every element.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Sorts this <code>Every</code> according to the <code>Ordering</code> of the result of applying the given function to every element. </p></div><dl class="paramcmts block"><dt class="tparam">U</dt><dd class="cmt"><p>the target type of the transformation <code>f</code>, and the type where the <code>Ordering</code> <code>ord</code> is defined.</p></dd><dt class="param">f</dt><dd class="cmt"><p>the transformation function mapping elements to some other domain <code>U</code>.</p></dd><dt class="param">ord</dt><dd class="cmt"><p>the ordering assumed on domain <code>U</code>.</p></dd><dt>returns</dt><dd class="cmt"><p>a <code>Every</code> consisting of the elements of this <code>Every</code> sorted according to the <code>Ordering</code> where <code>x &lt; y if ord.lt(f(x), f(y))</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#sortWith" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="sortWith(lt:(T,T)=&gt;Boolean):org.scalactic.Every[T]"></a> <a id="sortWith((T,T)⇒Boolean):Every[T]"></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">sortWith</span><span class="params">(<span name="lt">lt: (<span class="extype" name="org.scalactic.Every.T">T</span>, <span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ <span class="extype" name="scala.Boolean">Boolean</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@sortWith(lt:(T,T)=&gt;Boolean):org.scalactic.Every[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Sorts this <code>Every</code> according to a comparison function.</code></p><div class="fullcomment"><div class="comment cmt"><p>Sorts this <code>Every</code> according to a comparison function.</p><p>The sort is stable. That is, elements that are equal (as determined by <code>lt</code>) appear in the same order in the sorted <code>Every</code> as in the original.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>an <code>Every</code> consisting of the elements of this <code>Every</code> sorted according to the comparison function <code>lt</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#sorted" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="sorted[U&gt;:T](implicitord:scala.math.Ordering[U]):org.scalactic.Every[U]"></a> <a id="sorted[U&gt;:T](Ordering[U]):Every[U]"></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">sorted</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span class="implicit">implicit </span><span name="ord">ord: <span class="extype" name="scala.math.Ordering">Ordering</span>[<span class="extype" name="org.scalactic.Every.sorted.U">U</span>]</span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.sorted.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@sorted[U&gt;:T](implicitord:scala.math.Ordering[U]):org.scalactic.Every[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Sorts this <code>Every</code> according to an <code>Ordering</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Sorts this <code>Every</code> according to an <code>Ordering</code>.</p><p>The sort is stable. That is, elements that are equal (as determined by <code>lt</code>) appear in the same order in the sorted <code>Every</code> as in the original.</p></div><dl class="paramcmts block"><dt class="param">ord</dt><dd class="cmt"><p>the <code>Ordering</code> to be used to compare elements.</p></dd><dt>returns</dt><dd class="cmt"><p>an <code>Every</code> consisting of the elements of this <code>Every</code> sorted according to the comparison function <code>lt</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#startsWith" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="startsWith[B](that:org.scalactic.Every[B],offset:Int):Boolean"></a> <a id="startsWith[B](Every[B],Int):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">startsWith</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="that">that: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.startsWith.B">B</span>]</span>, <span name="offset">offset: <span class="extype" name="scala.Int">Int</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.scalactic.Every@startsWith[B](that:org.scalactic.Every[B],offset:Int):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether this <code>Every</code> starts with the given <code>Every</code> at the given index.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Every</code> starts with the given <code>Every</code> at the given index. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>Every</code> slice to look for in this <code>Every</code></p></dd><dt class="param">offset</dt><dd class="cmt"><p>the index at which this <code>Every</code> is searched.</p></dd><dt>returns</dt><dd class="cmt"><p><code>true</code> if this <code>Every</code> has <code>that</code> as a slice at the index <code>offset</code>, <code>false</code> otherwise.</p></dd></dl></div> </li><li name="org.scalactic.Every#startsWith" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="startsWith[B](that:org.scalactic.Every[B]):Boolean"></a> <a id="startsWith[B](Every[B]):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">startsWith</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="that">that: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.startsWith.B">B</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.scalactic.Every@startsWith[B](that:org.scalactic.Every[B]):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether this <code>Every</code> starts with the given <code>Every</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Every</code> starts with the given <code>Every</code>. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>Every</code> to test</p></dd><dt>returns</dt><dd class="cmt"><p><code>true</code> if this collection has <code>that</code> as a prefix, <code>false</code> otherwise.</p></dd></dl></div> </li><li name="org.scalactic.Every#startsWith" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean"></a> <a id="startsWith[B](GenSeq[B],Int):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">startsWith</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="that">that: <span class="extype" name="scala.collection.GenSeq">GenSeq</span>[<span class="extype" name="org.scalactic.Every.startsWith.B">B</span>]</span>, <span name="offset">offset: <span class="extype" name="scala.Int">Int</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.scalactic.Every@startsWith[B](that:scala.collection.GenSeq[B],offset:Int):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether this <code>Every</code> starts with the given <code>GenSeq</code> at the given index.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Every</code> starts with the given <code>GenSeq</code> at the given index. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>GenSeq</code> slice to look for in this <code>Every</code></p></dd><dt class="param">offset</dt><dd class="cmt"><p>the index at which this <code>Every</code> is searched.</p></dd><dt>returns</dt><dd class="cmt"><p><code>true</code> if this <code>Every</code> has <code>that</code> as a slice at the index <code>offset</code>, <code>false</code> otherwise.</p></dd></dl></div> </li><li name="org.scalactic.Every#startsWith" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="startsWith[B](that:scala.collection.GenSeq[B]):Boolean"></a> <a id="startsWith[B](GenSeq[B]):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">startsWith</span><span class="tparams">[<span name="B">B</span>]</span><span class="params">(<span name="that">that: <span class="extype" name="scala.collection.GenSeq">GenSeq</span>[<span class="extype" name="org.scalactic.Every.startsWith.B">B</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.scalactic.Every@startsWith[B](that:scala.collection.GenSeq[B]):Boolean" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Indicates whether this <code>Every</code> starts with the given <code>GenSeq</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether this <code>Every</code> starts with the given <code>GenSeq</code>. </p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>GenSeq</code> slice to look for in this <code>Every</code></p></dd><dt>returns</dt><dd class="cmt"><p><code>true</code> if this <code>Every</code> has <code>that</code> as a prefix, <code>false</code> otherwise.</p></dd></dl></div> </li><li name="org.scalactic.Every#sum" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="sum[U&gt;:T](implicitnum:Numeric[U]):U"></a> <a id="sum[U&gt;:T](Numeric[U]):U"></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">sum</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span class="implicit">implicit </span><span name="num">num: <span class="extype" name="scala.Numeric">Numeric</span>[<span class="extype" name="org.scalactic.Every.sum.U">U</span>]</span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.sum.U">U</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@sum[U&gt;:T](implicitnum:Numeric[U]):U" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">The result of summing all the elements of this <code>Every</code>.</code></p><div class="fullcomment"><div class="comment cmt"><p>The result of summing all the elements of this <code>Every</code>.</p><p>This method can be invoked for any <code>Every[T]</code> for which an implicit <code>Numeric[T]</code> exists.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>the sum of all elements</p></dd></dl></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@synchronized[T0](x$1:=&gt;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.scalactic.Every#to" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,T,Col[T@scala.annotation.unchecked.uncheckedVariance]]):Col[T@scala.annotation.unchecked.uncheckedVariance]"></a> <a id="to[Col[_]](CanBuildFrom[Nothing,T,Col[T]]):Col[T]"></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">to</span><span class="tparams">[<span name="Col">Col<span class="tparams">[<span name="_">_</span>]</span></span>]</span><span class="params">(<span class="implicit">implicit </span><span name="cbf">cbf: <span class="extype" name="scala.collection.generic.CanBuildFrom">CanBuildFrom</span>[<span class="extype" name="scala.Nothing">Nothing</span>, <span class="extype" name="org.scalactic.Every.T">T</span>, <span class="extype" name="org.scalactic.Every.to.Col">Col</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]]</span>)</span><span class="result">: <span class="extype" name="org.scalactic.Every.to.Col">Col</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@to[Col[_]](implicitcbf:scala.collection.generic.CanBuildFrom[Nothing,T,Col[T@scala.annotation.unchecked.uncheckedVariance]]):Col[T@scala.annotation.unchecked.uncheckedVariance]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> into a collection of type <code>Col</code> by copying all elements.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> into a collection of type <code>Col</code> by copying all elements. </p></div><dl class="paramcmts block"><dt class="tparam">Col</dt><dd class="cmt"><p>the collection type to build.</p></dd><dt>returns</dt><dd class="cmt"><p>a new collection containing all elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#toArray" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toArray[U&gt;:T](implicitclassTag:scala.reflect.ClassTag[U]):Array[U]"></a> <a id="toArray[U&gt;:T](ClassTag[U]):Array[U]"></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">toArray</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span class="implicit">implicit </span><span name="classTag">classTag: <span class="extype" name="scala.reflect.ClassTag">ClassTag</span>[<span class="extype" name="org.scalactic.Every.toArray.U">U</span>]</span>)</span><span class="result">: <span class="extype" name="scala.Array">Array</span>[<span class="extype" name="org.scalactic.Every.toArray.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@toArray[U&gt;:T](implicitclassTag:scala.reflect.ClassTag[U]):Array[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> to an array.</code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> to an array. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>an array containing all elements of this <code>Every</code>. A <code>ClassTag</code> must be available for the element type of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#toBuffer" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toBuffer[U&gt;:T]:scala.collection.mutable.Buffer[U]"></a> <a id="toBuffer[U&gt;:T]:Buffer[U]"></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">toBuffer</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="result">: <span class="extype" name="scala.collection.mutable.Buffer">Buffer</span>[<span class="extype" name="org.scalactic.Every.toBuffer.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@toBuffer[U&gt;:T]:scala.collection.mutable.Buffer[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> to a mutable buffer.</code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> to a mutable buffer. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a buffer containing all elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#toIndexedSeq" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toIndexedSeq:scala.collection.immutable.IndexedSeq[T]"></a> <a id="toIndexedSeq:IndexedSeq[T]"></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">toIndexedSeq</span><span class="result">: <span class="extype" name="scala.collection.immutable.IndexedSeq">IndexedSeq</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@toIndexedSeq:scala.collection.immutable.IndexedSeq[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> to an immutable <code>IndexedSeq</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> to an immutable <code>IndexedSeq</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>an immutable <code>IndexedSeq</code> containing all elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#toIterable" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toIterable:Iterable[T]"></a> <a id="toIterable:Iterable[T]"></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">toIterable</span><span class="result">: <span class="extype" name="scala.Iterable">Iterable</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@toIterable:Iterable[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> to an iterable collection.</code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> to an iterable collection. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>an <code>Iterable</code> containing all elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#toIterator" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toIterator:Iterator[T]"></a> <a id="toIterator:Iterator[T]"></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">toIterator</span><span class="result">: <span class="extype" name="scala.Iterator">Iterator</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@toIterator:Iterator[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns an <code>Iterator</code> over the elements in this <code>Every</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Returns an <code>Iterator</code> over the elements in this <code>Every</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>an <code>Iterator</code> containing all elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#toList" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toList:List[T]"></a> <a id="toList:List[T]"></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">toList</span><span class="result">: <span class="extype" name="scala.List">List</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@toList:List[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> to a list.</code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> to a list. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a list containing all elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#toMap" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toMap[K,V](implicitev:&lt;:&lt;[T,(K,V)]):Map[K,V]"></a> <a id="toMap[K,V](&lt;:&lt;[T,(K,V)]):Map[K,V]"></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">toMap</span><span class="tparams">[<span name="K">K</span>, <span name="V">V</span>]</span><span class="params">(<span class="implicit">implicit </span><span name="ev">ev: <span class="extype" name="scala.Predef.&lt;:&lt;">&lt;:&lt;</span>[<span class="extype" name="org.scalactic.Every.T">T</span>, (<span class="extype" name="org.scalactic.Every.toMap.K">K</span>, <span class="extype" name="org.scalactic.Every.toMap.V">V</span>)]</span>)</span><span class="result">: <span class="extype" name="scala.Predef.Map">Map</span>[<span class="extype" name="org.scalactic.Every.toMap.K">K</span>, <span class="extype" name="org.scalactic.Every.toMap.V">V</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@toMap[K,V](implicitev:&lt;:&lt;[T,(K,V)]):Map[K,V]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> to a map.</code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> to a map.</p><p>This method is unavailable unless the elements are members of <code>Tuple2</code>, each <code>((K, V))</code> becoming a key-value pair in the map. Duplicate keys will be overwritten by later keys.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a map of type <code>immutable.Map[K, V]</code> containing all key/value pairs of type <code>(K, V)</code> of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#toSeq" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toSeq:scala.collection.immutable.Seq[T]"></a> <a id="toSeq:Seq[T]"></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">toSeq</span><span class="result">: <span class="extype" name="scala.collection.immutable.Seq">Seq</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@toSeq:scala.collection.immutable.Seq[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> to an immutable <code>IndexedSeq</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> to an immutable <code>IndexedSeq</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>an immutable <code>IndexedSeq</code> containing all elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#toSet" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toSet[U&gt;:T]:Set[U]"></a> <a id="toSet[U&gt;:T]:Set[U]"></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">toSet</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="result">: <span class="extype" name="scala.Predef.Set">Set</span>[<span class="extype" name="org.scalactic.Every.toSet.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@toSet[U&gt;:T]:Set[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> to a set.</code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> to a set. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a set containing all elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#toStream" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toStream:Stream[T]"></a> <a id="toStream:Stream[T]"></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">toStream</span><span class="result">: <span class="extype" name="scala.Stream">Stream</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@toStream:Stream[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> to a stream.</code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> to a stream. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a stream containing all elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="scala.Function1#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.scalactic.Every@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>Function1 → AnyRef → Any</dd></dl></div> </li><li name="org.scalactic.Every#toTraversable" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toTraversable:Traversable[T]"></a> <a id="toTraversable:Traversable[T]"></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">toTraversable</span><span class="result">: <span class="extype" name="scala.Traversable">Traversable</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@toTraversable:Traversable[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> to an unspecified Traversable.</code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> to an unspecified Traversable. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a <code>Traversable</code> containing all elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#toVector" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toVector:Vector[T]"></a> <a id="toVector:Vector[T]"></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">toVector</span><span class="result">: <span class="extype" name="scala.Vector">Vector</span>[<span class="extype" name="org.scalactic.Every.T">T</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@toVector:Vector[T]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> to a <code>Vector</code>.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> to a <code>Vector</code>. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>a <code>Vector</code> containing all elements of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#transpose" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="transpose[U](implicitev:&lt;:&lt;[T,org.scalactic.Every[U]]):org.scalactic.Every[org.scalactic.Every[U]]"></a> <a id="transpose[U](&lt;:&lt;[T,Every[U]]):Every[Every[U]]"></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">transpose</span><span class="tparams">[<span name="U">U</span>]</span><span class="params">(<span class="implicit">implicit </span><span name="ev">ev: <span class="extype" name="scala.Predef.&lt;:&lt;">&lt;:&lt;</span>[<span class="extype" name="org.scalactic.Every.T">T</span>, <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.transpose.U">U</span>]]</span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.transpose.U">U</span>]]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@transpose[U](implicitev:&lt;:&lt;[T,org.scalactic.Every[U]]):org.scalactic.Every[org.scalactic.Every[U]]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> </li><li name="org.scalactic.Every#union" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="union[U&gt;:T](that:scala.collection.GenSeq[U])(implicitcbf:scala.collection.generic.CanBuildFrom[Vector[T],U,Vector[U]]):org.scalactic.Every[U]"></a> <a id="union[U&gt;:T](GenSeq[U])(CanBuildFrom[Vector[T],U,Vector[U]]):Every[U]"></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">union</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <span class="extype" name="scala.collection.GenSeq">GenSeq</span>[<span class="extype" name="org.scalactic.Every.union.U">U</span>]</span>)</span><span class="params">(<span class="implicit">implicit </span><span name="cbf">cbf: <span class="extype" name="scala.collection.generic.CanBuildFrom">CanBuildFrom</span>[<span class="extype" name="scala.Vector">Vector</span>[<span class="extype" name="org.scalactic.Every.T">T</span>], <span class="extype" name="org.scalactic.Every.union.U">U</span>, <span class="extype" name="scala.Vector">Vector</span>[<span class="extype" name="org.scalactic.Every.union.U">U</span>]]</span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.union.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@union[U&gt;:T](that:scala.collection.GenSeq[U])(implicitcbf:scala.collection.generic.CanBuildFrom[Vector[T],U,Vector[U]]):org.scalactic.Every[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Produces a new <code>Every</code> that contains all elements of this <code>Every</code> and also all elements of a given <code>GenSeq</code>.</code></code></code></p><div class="fullcomment"><div class="comment cmt"><p>Produces a new <code>Every</code> that contains all elements of this <code>Every</code> and also all elements of a given <code>GenSeq</code>.</p><p><code>everyX</code> <code>union</code> <code>ys</code> is equivalent to <code>everyX</code> <code>++</code> <code>ys</code>.</p><p>Another way to express this is that <code>everyX</code> <code>union</code> <code>ys</code> computes the order-presevring multi-set union of <code>everyX</code> and <code>ys</code>. This <code>union</code> method is hence a counter-part of <code>diff</code> and <code>intersect</code> that also work on multi-sets.</p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>GenSeq</code> to add.</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> that contains all elements of this <code>Every</code> followed by all elements of <code>that</code> <code>GenSeq</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#union" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="union[U&gt;:T](that:org.scalactic.Every[U]):org.scalactic.Every[U]"></a> <a id="union[U&gt;:T](Every[U]):Every[U]"></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">union</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="that">that: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.union.U">U</span>]</span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.union.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@union[U&gt;:T](that:org.scalactic.Every[U]):org.scalactic.Every[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Produces a new <code>Every</code> that contains all elements of this <code>Every</code> and also all elements of a given <code>Every</code>.</code></code></code></p><div class="fullcomment"><div class="comment cmt"><p>Produces a new <code>Every</code> that contains all elements of this <code>Every</code> and also all elements of a given <code>Every</code>.</p><p><code>everyX</code> <code>union</code> <code>everyY</code> is equivalent to <code>everyX</code> <code>++</code> <code>everyY</code>.</p><p>Another way to express this is that <code>everyX</code> <code>union</code> <code>everyY</code> computes the order-presevring multi-set union of <code>everyX</code> and <code>everyY</code>. This <code>union</code> method is hence a counter-part of <code>diff</code> and <code>intersect</code> that also work on multi-sets.</p></div><dl class="paramcmts block"><dt class="param">that</dt><dd class="cmt"><p>the <code>Every</code> to add.</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> that contains all elements of this <code>Every</code> followed by all elements of <code>that</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#unzip" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="unzip[L,R](implicitasPair:T=&gt;(L,R)):(org.scalactic.Every[L],org.scalactic.Every[R])"></a> <a id="unzip[L,R]((T)⇒(L,R)):(Every[L],Every[R])"></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">unzip</span><span class="tparams">[<span name="L">L</span>, <span name="R">R</span>]</span><span class="params">(<span class="implicit">implicit </span><span name="asPair">asPair: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ (<span class="extype" name="org.scalactic.Every.unzip.L">L</span>, <span class="extype" name="org.scalactic.Every.unzip.R">R</span>)</span>)</span><span class="result">: (<a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.unzip.L">L</span>], <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.unzip.R">R</span>])</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@unzip[L,R](implicitasPair:T=&gt;(L,R)):(org.scalactic.Every[L],org.scalactic.Every[R])" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> of pairs into two <code>Every</code>s of the first and second half of each pair.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> of pairs into two <code>Every</code>s of the first and second half of each pair. </p></div><dl class="paramcmts block"><dt class="tparam">L</dt><dd class="cmt"><p>the type of the first half of the element pairs</p></dd><dt class="tparam">R</dt><dd class="cmt"><p>the type of the second half of the element pairs</p></dd><dt class="param">asPair</dt><dd class="cmt"><p>an implicit conversion that asserts that the element type of this <code>Every</code> is a pair.</p></dd><dt>returns</dt><dd class="cmt"><p>a pair of <code>Every</code>s, containing the first and second half, respectively, of each element pair of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#unzip3" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="unzip3[L,M,R](implicitasTriple:T=&gt;(L,M,R)):(org.scalactic.Every[L],org.scalactic.Every[M],org.scalactic.Every[R])"></a> <a id="unzip3[L,M,R]((T)⇒(L,M,R)):(Every[L],Every[M],Every[R])"></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">unzip3</span><span class="tparams">[<span name="L">L</span>, <span name="M">M</span>, <span name="R">R</span>]</span><span class="params">(<span class="implicit">implicit </span><span name="asTriple">asTriple: (<span class="extype" name="org.scalactic.Every.T">T</span>) ⇒ (<span class="extype" name="org.scalactic.Every.unzip3.L">L</span>, <span class="extype" name="org.scalactic.Every.unzip3.M">M</span>, <span class="extype" name="org.scalactic.Every.unzip3.R">R</span>)</span>)</span><span class="result">: (<a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.unzip3.L">L</span>], <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.unzip3.M">M</span>], <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.unzip3.R">R</span>])</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@unzip3[L,M,R](implicitasTriple:T=&gt;(L,M,R)):(org.scalactic.Every[L],org.scalactic.Every[M],org.scalactic.Every[R])" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Converts this <code>Every</code> of triples into three <code>Every</code>s of the first, second, and and third element of each triple.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Converts this <code>Every</code> of triples into three <code>Every</code>s of the first, second, and and third element of each triple. </p></div><dl class="paramcmts block"><dt class="tparam">L</dt><dd class="cmt"><p>the type of the first member of the element triples</p></dd><dt class="tparam">R</dt><dd class="cmt"><p>the type of the third member of the element triples</p></dd><dt class="param">asTriple</dt><dd class="cmt"><p>an implicit conversion that asserts that the element type of this <code>Every</code> is a triple.</p></dd><dt>returns</dt><dd class="cmt"><p>a triple of <code>Every</code>s, containing the first, second, and third member, respectively, of each element triple of this <code>Every</code>.</p></dd></dl></div> </li><li name="org.scalactic.Every#updated" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="updated[U&gt;:T](idx:Int,elem:U):org.scalactic.Every[U]"></a> <a id="updated[U&gt;:T](Int,U):Every[U]"></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">updated</span><span class="tparams">[<span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="idx">idx: <span class="extype" name="scala.Int">Int</span></span>, <span name="elem">elem: <span class="extype" name="org.scalactic.Every.updated.U">U</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[<span class="extype" name="org.scalactic.Every.updated.U">U</span>]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@updated[U&gt;:T](idx:Int,elem:U):org.scalactic.Every[U]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">A copy of this <code>Every</code> with one single replaced element.</code></p><div class="fullcomment"><div class="comment cmt"><p>A copy of this <code>Every</code> with one single replaced element. </p></div><dl class="paramcmts block"><dt class="param">idx</dt><dd class="cmt"><p>the position of the replacement</p></dd><dt class="param">elem</dt><dd class="cmt"><p>the replacing element</p></dd><dt>returns</dt><dd class="cmt"><p>a copy of this <code>Every</code> with the element at position <code>idx</code> replaced by <code>elem</code>.</p></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.scalactic.Every@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.scalactic.Every@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.scalactic.Every@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><li name="org.scalactic.Every#zipAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="zipAll[O,U&gt;:T](other:Iterable[O],thisElem:U,otherElem:O):org.scalactic.Every[(U,O)]"></a> <a id="zipAll[O,U&gt;:T](Iterable[O],U,O):Every[(U,O)]"></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">zipAll</span><span class="tparams">[<span name="O">O</span>, <span name="U">U &gt;: <span class="extype" name="org.scalactic.Every.T">T</span></span>]</span><span class="params">(<span name="other">other: <span class="extype" name="scala.collection.Iterable">Iterable</span>[<span class="extype" name="org.scalactic.Every.zipAll.O">O</span>]</span>, <span name="thisElem">thisElem: <span class="extype" name="org.scalactic.Every.zipAll.U">U</span></span>, <span name="otherElem">otherElem: <span class="extype" name="org.scalactic.Every.zipAll.O">O</span></span>)</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[(<span class="extype" name="org.scalactic.Every.zipAll.U">U</span>, <span class="extype" name="org.scalactic.Every.zipAll.O">O</span>)]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@zipAll[O,U&gt;:T](other:Iterable[O],thisElem:U,otherElem:O):org.scalactic.Every[(U,O)]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Returns an <code>Every</code> formed from this <code>Every</code> and an iterable collection by combining corresponding elements in pairs.</code></code></p><div class="fullcomment"><div class="comment cmt"><p>Returns an <code>Every</code> formed from this <code>Every</code> and an iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements will be used to extend the shorter collection to the length of the longer. </p></div><dl class="paramcmts block"><dt class="param">other</dt><dd class="cmt"><p>the <code>Iterable</code> providing the second half of each result pair</p></dd><dt class="param">thisElem</dt><dd class="cmt"><p>the element to be used to fill up the result if this <code>Every</code> is shorter than <code>that</code> <code>Iterable</code>.</p></dd><dt>returns</dt><dd class="cmt"><p>a new <code>Every</code> containing pairs consisting of corresponding elements of this <code>Every</code> and <code>that</code>. The length of the returned collection is the maximum of the lengths of this <code>Every</code> and <code>that</code>. If this <code>Every</code> is shorter than <code>that</code>, <code>thisElem</code> values are used to pad the result. If <code>that</code> is shorter than this <code>Every</code>, <code>thatElem</code> values are used to pad the result.</p></dd></dl></div> </li><li name="org.scalactic.Every#zipWithIndex" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="zipWithIndex:org.scalactic.Every[(T,Int)]"></a> <a id="zipWithIndex:Every[(T,Int)]"></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">zipWithIndex</span><span class="result">: <a href="" class="extype" name="org.scalactic.Every">Every</a>[(<span class="extype" name="org.scalactic.Every.T">T</span>, <span class="extype" name="scala.Int">Int</span>)]</span> </span> </h4><span class="permalink"> <a href="../../index.html#org.scalactic.Every@zipWithIndex:org.scalactic.Every[(T,Int)]" title="Permalink" target="_top"> <img src="../../lib/permalink.png" alt="Permalink" /> </a> </span> <p class="shortcomment cmt">Zips this <code>Every</code> with its indices.</code></p><div class="fullcomment"><div class="comment cmt"><p>Zips this <code>Every</code> with its indices. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>A new <code>Every</code> containing pairs consisting of all elements of this <code>Every</code> paired with their index. Indices start at 0.</p></dd></dl></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="scala.Serializable"> <h3>Inherited from <span class="extype" name="scala.Serializable">Serializable</span></h3> </div><div class="parent" name="java.io.Serializable"> <h3>Inherited from <span class="extype" name="java.io.Serializable">Serializable</span></h3> </div><div class="parent" name="scala.Product"> <h3>Inherited from <span class="extype" name="scala.Product">Product</span></h3> </div><div class="parent" name="scala.Equals"> <h3>Inherited from <span class="extype" name="scala.Equals">Equals</span></h3> </div><div class="parent" name="scala.PartialFunction"> <h3>Inherited from <span class="extype" name="scala.PartialFunction">PartialFunction</span>[<span class="extype" name="scala.Int">Int</span>, <span class="extype" name="org.scalactic.Every.T">T</span>]</h3> </div><div class="parent" name="scala.Function1"> <h3>Inherited from (<span class="extype" name="scala.Int">Int</span>) ⇒ <span class="extype" name="org.scalactic.Every.T">T</span></h3> </div><div class="parent" name="scala.AnyRef"> <h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3> </div><div class="parent" name="scala.Any"> <h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3> </div> </div> <div id="groupedMembers"> <div class="group" name="Ungrouped"> <h3>Ungrouped</h3> </div> </div> </div> <div id="tooltip"></div> <div id="footer"> </div> </body> </html>
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_17b_testAbaNumberCheck_36621_good_wrr.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">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <a href="http://cardatechnologies.com" target="_top"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </a> </div> <div class="aui-page-header-main" > <h1> <a href="http://cardatechnologies.com" target="_top"> ABA Route Transit Number Validator 1.0.1-SNAPSHOT </a> </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li> <li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li> <li><a href="test-Test_AbaRouteValidator_17b.html">Class Test_AbaRouteValidator_17b</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_36621_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_17b.html?line=36905#src-36905" >testAbaNumberCheck_36621_good</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:46:56 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</div> <table class="aui aui-table-sortable"> <thead> <tr> <th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th> <th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_36621_good</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.AbaRouteValidator</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=42471#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>
pitest/target/apidocs/org/pitest/mutationtest/statistics/package-frame.html
y252zhan/pitest-diff
<!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) on Tue Sep 29 12:19:00 PDT 2015 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>org.pitest.mutationtest.statistics (pitest 1.0.1-SNAPSHOT API)</title> <meta name="date" content="2015-09-29"> <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/pitest/mutationtest/statistics/package-summary.html" target="classFrame">org.pitest.mutationtest.statistics</a></h1> <div class="indexContainer"> <h2 title="Interfaces">Interfaces</h2> <ul title="Interfaces"> <li><a href="MutationStatisticsSource.html" title="interface in org.pitest.mutationtest.statistics" target="classFrame"><span class="interfaceName">MutationStatisticsSource</span></a></li> </ul> <h2 title="Classes">Classes</h2> <ul title="Classes"> <li><a href="MutationStatistics.html" title="class in org.pitest.mutationtest.statistics" target="classFrame">MutationStatistics</a></li> <li><a href="MutationStatisticsListener.html" title="class in org.pitest.mutationtest.statistics" target="classFrame">MutationStatisticsListener</a></li> <li><a href="Score.html" title="class in org.pitest.mutationtest.statistics" target="classFrame">Score</a></li> <li><a href="StatusCount.html" title="class in org.pitest.mutationtest.statistics" target="classFrame">StatusCount</a></li> </ul> </div> </body> </html>
DATASTAX_CASSANDRA-2.2.6/javadoc/org/apache/cassandra/cql3/ErrorListener.html
elisska/cloudera-cassandra
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_51) on Thu Apr 28 18:37:28 UTC 2016 --> <title>ErrorListener (apache-cassandra API)</title> <meta name="date" content="2016-04-28"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="ErrorListener (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/ErrorListener.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/ErrorCollector.html" title="class in org.apache.cassandra.cql3"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/apache/cassandra/cql3/IndexName.html" title="class 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/ErrorListener.html" target="_top">Frames</a></li> <li><a href="ErrorListener.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.cassandra.cql3</div> <h2 title="Interface ErrorListener" class="title">Interface ErrorListener</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Known Implementing Classes:</dt> <dd><a href="../../../../org/apache/cassandra/cql3/ErrorCollector.html" title="class in org.apache.cassandra.cql3">ErrorCollector</a></dd> </dl> <hr> <br> <pre>public interface <span class="strong">ErrorListener</span></pre> <div class="block">Listener used to collect the syntax errors emitted by the Lexer and Parser.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/cql3/ErrorListener.html#syntaxError(org.antlr.runtime.BaseRecognizer, java.lang.String)">syntaxError</a></strong>(org.antlr.runtime.BaseRecognizer&nbsp;recognizer, java.lang.String&nbsp;errorMsg)</code> <div class="block">Invoked when a syntax error with a specified message occurs.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/apache/cassandra/cql3/ErrorListener.html#syntaxError(org.antlr.runtime.BaseRecognizer, java.lang.String[], org.antlr.runtime.RecognitionException)">syntaxError</a></strong>(org.antlr.runtime.BaseRecognizer&nbsp;recognizer, java.lang.String[]&nbsp;tokenNames, org.antlr.runtime.RecognitionException&nbsp;e)</code> <div class="block">Invoked when a syntax error occurs.</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="syntaxError(org.antlr.runtime.BaseRecognizer, java.lang.String[], org.antlr.runtime.RecognitionException)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>syntaxError</h4> <pre>void&nbsp;syntaxError(org.antlr.runtime.BaseRecognizer&nbsp;recognizer, java.lang.String[]&nbsp;tokenNames, org.antlr.runtime.RecognitionException&nbsp;e)</pre> <div class="block">Invoked when a syntax error occurs.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>recognizer</code> - the parser or lexer that emitted the error</dd><dd><code>tokenNames</code> - the token names</dd><dd><code>e</code> - the exception</dd></dl> </li> </ul> <a name="syntaxError(org.antlr.runtime.BaseRecognizer, java.lang.String)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>syntaxError</h4> <pre>void&nbsp;syntaxError(org.antlr.runtime.BaseRecognizer&nbsp;recognizer, java.lang.String&nbsp;errorMsg)</pre> <div class="block">Invoked when a syntax error with a specified message occurs.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>recognizer</code> - the parser or lexer that emitted the error</dd><dd><code>errorMsg</code> - the error message</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/ErrorListener.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/ErrorCollector.html" title="class in org.apache.cassandra.cql3"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/apache/cassandra/cql3/IndexName.html" title="class 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/ErrorListener.html" target="_top">Frames</a></li> <li><a href="ErrorListener.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2016 The Apache Software Foundation</small></p> </body> </html>
surfers/wct/mcall.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 - Macy Callaghan</title> <meta name="description" content="Keep track of the statistics from Macy Callaghan. 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 Macy Callaghan 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/mcall.png" class="img-responsive" alt=""> --> <h3 style="text-align:center;">Macy Callaghan</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%2Fmcall&amp;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;">10.84</h1> </div> </div> <hr/> <h4 style="text-align:center;" >Competitions</h4> <h4 style="text-align:center;" >Epic Battles</h4> <div class="row"> <div class="col-sm-6 "> <p style="text-align:center;">Surfed <b>12</b> heats against <a href="http://fantasysurfingtips.com/surfers/wct/bmaca.html"> Bronte Macaulay</a> <br/> <b>won 2</b> and <b>lost 3</b></p> </div> <div class="col-sm-6 "> <p style="text-align:center;">Surfed <b>8</b> heats against <a href="http://fantasysurfingtips.com/surfers/wct/twes.html"> Tatiana Weston-Webb</a> <br/> <b>won 2</b> and <b>lost 5</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;">18</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;">27.78%</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> <h4 style="text-align:center;">Road to the final (FST data)</h4> <div class="row"> <div class="col-sm-12 "> <div class="dropdown"> <button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Choose Round <span class="caret"></span></button> <ul class="dropdown-menu" style="z-index:999;"> <li href="#" id="rd1-heats-all" class="heats-all">Round 1</li> <li href="#" id="rd2-heats-all" class="heats-all">Round 2</li> <li href="#" id="rd3-heats-all" class="heats-all">Round 3</li> <li href="#" id="rd4-heats-all" class="heats-all">Round 4</li> <li href="#" id="rd5-heats-all" class="heats-all">Quaterfinals</li> <li href="#" id="rd6-heats-all" class="heats-all">Semifinals</li> <li href="#" id="rd7-heats-all" class="heats-all">Final</li> </ul> </div> </div> </div> <div class="row"> <div id="rd1-heats-all-stat" class="col-sm-12 heats-all-stat" style="display:block;"> <h6 style="text-align:center;">Round 1</h6> <div class="col-sm-4"> <h5 style="text-align:center;">Appereances</h5> <p style="text-align:center;">7</p> </div> <div class="col-sm-4"> <h5 style="text-align:center;">Victories</h5> <p style="text-align:center;">1</p> </div> <div class="col-sm-4"> <h5 style="text-align:center;">Winning percentage</h5> <p style="text-align:center;">14.29%</p> </div> </div> <div id="rd2-heats-all-stat" class="col-sm-12 heats-all-stat" style="display:none;"> <h6 style="text-align:center;">Round 2</h6> <div class="col-sm-4"> <h5 style="text-align:center;">Appereances</h5> <p style="text-align:center;">6</p> </div> <div class="col-sm-4"> <h5 style="text-align:center;">Victories</h5> <p style="text-align:center;">1</p> </div> <div class="col-sm-4"> <h5 style="text-align:center;">Winning percentage</h5> <p style="text-align:center;">16.67%</p> </div> </div> </div> <div class="row"> <div id="rd3-heats-all-stat" class="col-sm-12 heats-all-stat" style="display:none;"> <h6 style="text-align:center;">Round 3</h6> <div class="col-sm-4"> <h5 style="text-align:center;">Appereances</h5> <p style="text-align:center;">2</p> </div> <div class="col-sm-4"> <h5 style="text-align:center;">Victories</h5> <p style="text-align:center;">1</p> </div> <div class="col-sm-4"> <h5 style="text-align:center;">Winning percentage</h5> <p style="text-align:center;">50.0%</p> </div> </div> <div id="rd4-heats-all-stat" class="col-sm-12 heats-all-stat" style="display:none;"> <h6 style="text-align:center;">Round 4</h6> <div class="col-sm-4"> <h5 style="text-align:center;">Appereances</h5> <p style="text-align:center;">1</p> </div> <div class="col-sm-4"> <h5 style="text-align:center;">Victories</h5> <p style="text-align:center;">1</p> </div> <div class="col-sm-4"> <h5 style="text-align:center;">Winning percentage</h5> <p style="text-align:center;">100.0%</p> </div> </div> </div> <div class="row"> <div id="rd6-heats-all-stat" class="col-sm-12 heats-all-stat" style="display:none;"> <h6 style="text-align:center;">Semifinals</h6> <div class="col-sm-4"> <h5 style="text-align:center;">Appereances</h5> <p style="text-align:center;">1</p> </div> <div class="col-sm-4"> <h5 style="text-align:center;">Victories</h5> <p style="text-align:center;">1</p> </div> <div class="col-sm-4"> <h5 style="text-align:center;">Winning percentage</h5> <p style="text-align:center;">100.0%</p> </div> </div> </div> <div class="row"> <div id="rd7-heats-all-stat" class="col-sm-12 heats-all-stat" style="display:none;"> <h6 style="text-align:center;">Final</h6> <div class="col-sm-4"> <h5 style="text-align:center;">Appereances</h5> <p style="text-align:center;">1</p> </div> <div class="col-sm-4"> <h5 style="text-align:center;">Victories</h5> <p style="text-align:center;">0</p> </div> <div class="col-sm-4"> <h5 style="text-align:center;">Winning percentage</h5> <p style="text-align:center;">0.0%</p> </div> </div> </div> <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/mcall"; // Replace PAGE_URL with your page's canonical URL variable this.page.identifier = '4550'; // 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":"2017","avg":10.35,"avg_all":10.84},{"year":"2018","avg":10.9,"avg_all":10.84}], // 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":"2017","heats":2,"wins":0,"percs":"0.0%"},{"year":"2018","heats":16,"wins":5,"percs":"31.25%"}], // 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>
__tests__/cases-core/state/object/common/general/basic.css
ctr-lang/ctr
.test { width: 200px; } .test:hover { opacity: 1; background: #f00; transition-delay: 22s, 22s; transition-duration: 420s, 420s; transition-property: background, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:not(:hover) { opacity: 0.5; background: #008000; transition-delay: 22s, 22s; transition-duration: 420s, 420s; transition-property: background, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:active { opacity: 1; color: #f00; transition-delay: 22s, 22s; transition-duration: 100s, 2s; transition-property: color, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:not(:active) { opacity: 0.5; transition-delay: 22s, 22s; transition-duration: 100s, 2s; transition-property: color, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:link { opacity: 1; font-size: 10px; } .test:not(:link) { opacity: 0.5; font-size: 20px; } .test { width: 200px; } .test:hover { opacity: 1; background: #f00; transition-delay: 22s, 22s; transition-duration: 420s, 420s; transition-property: background, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:not(:hover) { opacity: 0.5; background: #008000; transition-delay: 22s, 22s; transition-duration: 420s, 420s; transition-property: background, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:active { opacity: 1; color: #f00; transition-delay: 22s, 22s; transition-duration: 100s, 2s; transition-property: color, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:not(:active) { opacity: 0.5; transition-delay: 22s, 22s; transition-duration: 100s, 2s; transition-property: color, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:link { opacity: 1; font-size: 10px; } .test:not(:link) { opacity: 0.5; font-size: 20px; } .test { width: 200px; } .test:hover { opacity: 1; background: #f00; transition-delay: 22s, 22s; transition-duration: 420s, 420s; transition-property: background, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:not(:hover) { opacity: 0.5; background: #008000; transition-delay: 22s, 22s; transition-duration: 420s, 420s; transition-property: background, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:active { opacity: 1; color: #f00; transition-delay: 22s, 22s; transition-duration: 100s, 2s; transition-property: color, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:not(:active) { opacity: 0.5; transition-delay: 22s, 22s; transition-duration: 100s, 2s; transition-property: color, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:link { opacity: 1; font-size: 10px; } .test:not(:link) { opacity: 0.5; font-size: 20px; } .test { width: 200px; } .test:hover { opacity: 1; background: #f00; transition-delay: 22s, 22s; transition-duration: 420s, 420s; transition-property: background, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:not(:hover) { opacity: 0.5; background: #008000; transition-delay: 22s, 22s; transition-duration: 420s, 420s; transition-property: background, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:active { opacity: 1; color: #f00; transition-delay: 22s, 22s; transition-duration: 100s, 2s; transition-property: color, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:not(:active) { opacity: 0.5; transition-delay: 22s, 22s; transition-duration: 100s, 2s; transition-property: color, opacity; transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1), cubic-bezier(0.42, 0, 0.58, 1); } .test:link { opacity: 1; font-size: 10px; } .test:not(:link) { opacity: 0.5; font-size: 20px; }
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_17b_testAbaNumberCheck_37448_bad_8bv.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">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <a href="http://cardatechnologies.com" target="_top"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </a> </div> <div class="aui-page-header-main" > <h1> <a href="http://cardatechnologies.com" target="_top"> ABA Route Transit Number Validator 1.0.1-SNAPSHOT </a> </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li> <li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li> <li><a href="test-Test_AbaRouteValidator_17b.html">Class Test_AbaRouteValidator_17b</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_37448_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_17b.html?line=56753#src-56753" >testAbaNumberCheck_37448_bad</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:46:52 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</div> <table class="aui aui-table-sortable"> <thead> <tr> <th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th> <th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_37448_bad</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/exceptions/AbaRouteValidationException.html?id=10795#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> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/ErrorCodes.html?id=10795#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> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=10795#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>
docs/solr-solrj/org/apache/solr/client/solrj/request/class-use/CoreAdminRequest.WaitForState.html
arnaud71/webso-db
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.6.0_27) on Thu Jan 23 20:22:16 EST 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.apache.solr.client.solrj.request.CoreAdminRequest.WaitForState (Solr 4.6.1 API)</title> <meta name="date" content="2014-01-23"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.solr.client.solrj.request.CoreAdminRequest.WaitForState (Solr 4.6.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/client/solrj/request/CoreAdminRequest.WaitForState.html" title="class in org.apache.solr.client.solrj.request">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/client/solrj/request//class-useCoreAdminRequest.WaitForState.html" target="_top">FRAMES</a></li> <li><a href="CoreAdminRequest.WaitForState.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.solr.client.solrj.request.CoreAdminRequest.WaitForState" class="title">Uses of Class<br>org.apache.solr.client.solrj.request.CoreAdminRequest.WaitForState</h2> </div> <div class="classUseContainer">No usage of org.apache.solr.client.solrj.request.CoreAdminRequest.WaitForState</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/client/solrj/request/CoreAdminRequest.WaitForState.html" title="class in org.apache.solr.client.solrj.request">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/client/solrj/request//class-useCoreAdminRequest.WaitForState.html" target="_top">FRAMES</a></li> <li><a href="CoreAdminRequest.WaitForState.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &copy; 2000-2014 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </small></p> </body> </html>
HTML/portfolio-before-and-after.html
insploit/insploit.github.io
<!doctype html> <!--[if lt IE 7 ]> <html class="ie ie6 ie-lt10 ie-lt9 ie-lt8 ie-lt7 no-js" lang="en"> <![endif]--> <!--[if IE 7 ]> <html class="ie ie7 ie-lt10 ie-lt9 ie-lt8 no-js" lang="en"> <![endif]--> <!--[if IE 8 ]> <html class="ie ie8 ie-lt10 ie-lt9 no-js" lang="en"> <![endif]--> <!--[if IE 9 ]> <html class="ie ie9 ie-lt10 no-js" lang="en"> <![endif]--> <!--[if gt IE 9]><!--><html class="no-js" lang="en"><!--<![endif]--> <!-- the "no-js" class is for Modernizr. --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- Important stuff for SEO, don't neglect. (And don't dupicate values across your site!) --> <title>Portfolio Filter - Before And After | Enar</title> <meta name="author" content="" /> <meta name="description" content="" /> <!-- Don't forget to set your site up: http://google.com/webmasters --> <meta name="google-site-verification" content="" /> <meta name="Copyright" content="" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Use Iconifyer to generate all the favicons and touch icons you need: http://iconifier.net --> <link rel="shortcut icon" href="images/favicon/favicon.ico" type="image/x-icon" /> <link rel="apple-touch-icon" href="images/favicon/apple-touch-icon.png" /> <link rel="apple-touch-icon" sizes="57x57" href="images/favicon/apple-touch-icon-57x57.png" /> <link rel="apple-touch-icon" sizes="72x72" href="images/favicon/apple-touch-icon-72x72.png" /> <link rel="apple-touch-icon" sizes="76x76" href="images/favicon/apple-touch-icon-76x76.png" /> <link rel="apple-touch-icon" sizes="114x114" href="images/favicon/apple-touch-icon-114x114.png" /> <link rel="apple-touch-icon" sizes="120x120" href="images/favicon/apple-touch-icon-120x120.png" /> <link rel="apple-touch-icon" sizes="144x144" href="images/favicon/apple-touch-icon-144x144.png" /> <link rel="apple-touch-icon" sizes="152x152" href="images/favicon/apple-touch-icon-152x152.png" /> <!-- concatenate and minify for production --> <link rel="stylesheet" href="css/style.css" type="text/css" media="all" /> <link rel="stylesheet" href="css/bootstrap.css" type="text/css" media="all" /> <link rel="stylesheet" href="css/magnific-popup.css" type="text/css" media="all" /> <link rel="stylesheet" href="css/icon-fonts.css" type="text/css" media="all" /> <link href='http://fonts.googleapis.com/css?family=Oswald:400,700,300' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic' rel='stylesheet' type='text/css'> </head> <!-- Class ( site_boxed - dark - preloader1 - preloader2 - preloader3 - light_header - dark_sup_menu - menu_button_mode - transparent_header - header_on_side ) --> <body class="preloader3 light_header"> <div id="preloader"> <div class="spinner"> <div class="sk-dot1"></div><div class="sk-dot2"></div> <div class="rect3"></div><div class="rect4"></div> <div class="rect5"></div> </div> </div> <div id="main_wrapper"> <header id="site_header"> <div class="topbar"><!-- class ( topbar_colored ) --> <div class="content clearfix"> <div class="top_details clearfix f_left"> <div class="languages-select languages-drop"> <span><i class="ico-globe4"></i><span>English</span></span> <div class="languages-panel"> <ul class="languages-panel-con"> <li class="active"><a href="#">English <i class="ico-check lang_checked"></i></a></li> <li><a href="#">RTL</a></li> </ul> </div> </div> <span class="top_login"> <i class="icon ico-key3"></i><a class="popup-with-move-anim" href="#login-popup">Login</a> </span> <div class="zoom-anim-dialog small-dialog mfp-hide login_popup" id="login-popup"> <form class="login_form_colored"> <div class="lfc_user_row"> <span class="lfc_header">Login to your Account</span> </div> <div class="lfc_user_row"> <label for="login_user_name"> <span class="lfc_alert"></span> <i class="lfc_icon ico-user5"></i> <input type="text" name="login_user_name" id="login_user_name"> </label> </div> <div class="lfc_user_row"> <label for="login_password"> <span class="lfc_alert"></span> <i class="lfc_icon ico-key3"></i> <input type="password" name="login_password" id="login_password"> </label> </div> <div class="lfc_user_row clearfix"> <div class="my_col_half"> <label for="rememberme"> <span class="remember-box"> <input type="checkbox" id="rememberme" name="rememberme"> <span>Remember me</span> </span> </label> </div> <div class="my_col_half clearfix"> <button type="submit" name="login" class="send_button f_right upper"> Sign in </button> </div> </div> <a class="lfc_forget_pass" href="#">Forgot Your Password?</a> </form> </div> <span><i class="icon ico-phone5"></i><span class="title">Call Us :</span> (123) 456 - 7890</span> <span><i class="icon ico-comment2"></i><span class="title">Support :</span> (123) 456 - 7890</span> </div> <div class="top-socials box_socials f_right"> <a href="#" target="_blank"> <span class="soc_name">Facebook</span> <span class="soc_icon_bg"></span> <i class="ico-facebook4"></i> </a> <a href="#" target="_blank"> <span class="soc_name">Twitter</span> <span class="soc_icon_bg"></span> <i class="ico-twitter4"></i> </a> <a href="#" target="_blank"> <span class="soc_name">Google+</span> <span class="soc_icon_bg"></span> <i class="ico-google-plus"></i> </a> <a href="skype:#?call"> <span class="soc_name">Skype</span> <span class="soc_icon_bg"></span> <i class="ico-skype"></i> </a> <a href="#" target="_blank"> <span class="soc_name">Picassa</span> <span class="soc_icon_bg"></span> <i class="ico-picassa"></i> </a> <a href="#" target="_blank"> <span class="soc_name">Vimeo</span> <span class="soc_icon_bg"></span> <i class="ico-vimeo"></i> </a> </div> </div> <!-- End content --> <span class="top_expande not_expanded"> <i class="no_exp ico-angle-double-down"></i> <i class="exp ico-angle-double-up"></i> </span> </div> <!-- End topbar --> <div id="navigation_bar"> <div class="content"> <div id="logo"> <a href="index.html"> <img class="logo_dark" src="images/logo-dark.png" alt="Enar Logo"> <img class="logo_light" src="images/logo-light.png" alt="Enar Logo"> </a> </div> <!-- Top Card --> <div id="top_cart" class="top_cart"> <a href="#" class="top_add_card"> <i class="ico-cart"></i> <span>4</span> </a> <div class="top_cart_con"> <div class="top_cart_header"><h3>Shopping Cart</h3></div> <div class="top_cart_block"> <ul class="top_cart_list"> <li> <a href="#"> <img src="images/cart/cart-1.png" alt="Product Name" /> <span class="cart_top_details"> <span class="top_cart_title">Blue Round-Neck Tshirt<span class="top_cart_quantity">x 3</span></span> <span class="top_cart_price">$125</span> </span> </a> <span class="top_catt_remove"></span> </li> <li> <a href="#"> <img src="images/cart/cart-2.png" alt="Product Name" /> <span class="cart_top_details"> <span class="top_cart_title">Light Blue Denim Dress<span class="top_cart_quantity">x 2</span></span> <span class="top_cart_price">$34</span> </span> </a> <span class="top_catt_remove"></span> </li> </ul> </div> <div class="top_cart_footer clearfix"> <span class="left top_cart_total">$124.95</span> <button class="button top_cart_btn shadow_btn f_right">View Cart</button> </div> </div> </div> <!-- End Top Card --> <!-- Top Search --> <form class="top_search clearfix small_top_search"> <div class="top_search_con"> <input type="text" class="s" placeholder="Search Here ..."> <span class="top_search_icon"><i class="ico-search4"></i></span> <input type="submit" class="top_search_submit" > </div> </form> <!-- End Top Search --> <nav id="main_nav"> <div id="nav_menu"> <span class="mobile_menu_trigger"> <a href="#" class="nav_trigger"><span></span></a> </span> <ul id="navy" class="clearfix"> <li class="normal_menu mobile_menu_toggle current_page_item"> <a href="index.html"><span>Home</span></a> <ul> <li class="normal_menu"><a href="index.html">Home Page V1</a></li> <li class="normal_menu"><a href="index2.html">Home Page V2</a></li> <li class="normal_menu"><a href="index3.html">Home Page V3</a></li> <li class="normal_menu"><a href="index4.html">Home Page V4</a></li> <li class="normal_menu"><a href="index5.html">Home Page V5</a></li> <li class="normal_menu"><a href="index-one-page1.html">Home One Page </a> <ul> <li class="normal_menu"><a href="index-one-page1.html">Home One Page V1</a></li> <li class="normal_menu"><a href="index-one-page2.html">Home One Page V2</a></li> </ul> </li> <li class="normal_menu"><a href="index-blog-timeline.html">Home Blog </a> <ul> <li class="normal_menu"><a href="index-blog-timeline.html">Home Blog Timeline</a></li> <li class="normal_menu"><a href="index-blog-masonry.html">Home Blog Masonry</a></li> <li class="normal_menu"><a href="index-blog-list.html">Home Blog List</a></li> <li class="normal_menu"><a href="index-blog-standard.html">Home Blog Standard</a></li> </ul> </li> <li class="normal_menu"><a href="index-header-side.html">Home With Side Menu</a> <ul> <li class="normal_menu"><a href="index-header-side-boxed.html">Home Boxed With Side Menu</a></li> <li class="normal_menu"><a href="index-header-side.html">Home Full With Side Menu</a></li> </ul> </li> <li class="normal_menu"><a href="index-header-transparent-dark.html">Home Transparent Header</a> <ul> <li class="normal_menu"><a href="index-header-transparent-dark.html">Home Transparent Dark</a></li> <li class="normal_menu"><a href="index-header-transparent-light.html">Home Transparent Light</a></li> </ul> </li> <li class="normal_menu"><a href="index-menu-button-mode.html">Home Menu Button Mode</a></li> </ul> </li> <li class="normal_menu mobile_menu_toggle"> <a href="#"><span>Pages</span></a> <ul> <li class="normal_menu"><a href="page-about-us.html">About Us</a></li> <li class="normal_menu"><a href="page-about-me.html">About Me</a></li> <li class="normal_menu"><a href="page-team-members.html">Team Members</a></li> <li class="normal_menu"><a href="page-services.html">Services</a></li> <li class="normal_menu"><a href="#">Portfolio</a> <ul> <li class="normal_menu"><a href="#">Portfolio Filter</a> <ul> <li class="normal_menu"><a href="#">Filter Style 1</a> <ul> <li class="normal_menu"><a href="portfolio-style1-3column-boxed.html">Three Columns Boxed</a></li> <li class="normal_menu"><a href="portfolio-style1-3column-boxed-nospaces.html">Three Columns Boxed2</a></li> <li class="normal_menu"><a href="portfolio-style1-3column-fullwidth.html">Three Columns Fullwidth</a></li> <li class="normal_menu"><a href="portfolio-style1-3column-fullwidth-nospaces.html">Three Columns Fullwidth2</a></li> <li class="normal_menu"><a href="portfolio-style1-4column-boxed.html">Four Columns Boxed</a></li> <li class="normal_menu"><a href="portfolio-style1-4column-boxed-nospaces.html">Four Columns Boxed2</a></li> <li class="normal_menu"><a href="portfolio-style1-4column-fullwidth.html">Four Columns Fullwidth</a></li> <li class="normal_menu"><a href="portfolio-style1-4column-fullwidth-nospaces.html">Four Columns Fullwidth2</a></li> <li class="normal_menu"><a href="portfolio-style1-2column-boxed.html">Two Columns Boxed</a></li> <li class="normal_menu"><a href="portfolio-style1-2column-boxed-nospaces.html">Two Columns Boxed2</a></li> <li class="normal_menu"><a href="portfolio-style1-2column-fullwidth.html">Two Columns Fullwidth</a></li> <li class="normal_menu"><a href="portfolio-style1-2column-fullwidth-nospaces.html">Two Columns Fullwidth2</a></li> </ul> </li> <li class="normal_menu"><a href="#">Filter Style 2</a> <ul> <li class="normal_menu"><a href="portfolio-style2-3column-boxed.html">Three Columns Boxed</a></li> <li class="normal_menu"><a href="portfolio-style2-3column-boxed-nospaces.html">Three Columns Boxed2</a></li> <li class="normal_menu"><a href="portfolio-style2-3column-fullwidth.html">Three Columns Fullwidth</a></li> <li class="normal_menu"><a href="portfolio-style2-3column-fullwidth-nospaces.html">Three Columns Fullwidth2</a></li> <li class="normal_menu"><a href="portfolio-style2-4column-boxed.html">Four Columns Boxed</a></li> <li class="normal_menu"><a href="portfolio-style2-4column-boxed-nospaces.html">Four Columns Boxed2</a></li> <li class="normal_menu"><a href="portfolio-style2-4column-fullwidth.html">Four Columns Fullwidth</a></li> <li class="normal_menu"><a href="portfolio-style2-4column-fullwidth-nospaces.html">Four Columns Fullwidth2</a></li> <li class="normal_menu"><a href="portfolio-style2-2column-boxed.html">Two Columns Boxed</a></li> <li class="normal_menu"><a href="portfolio-style2-2column-boxed-nospaces.html">Two Columns Boxed2</a></li> <li class="normal_menu"><a href="portfolio-style2-2column-fullwidth.html">Two Columns Fullwidth</a></li> <li class="normal_menu"><a href="portfolio-style2-2column-fullwidth-nospaces.html">Two Columns Fullwidth2</a></li> </ul> </li> <li class="normal_menu"><a href="#">Filter Style 3</a> <ul> <li class="normal_menu"><a href="portfolio-style3-3column-boxed.html">Three Columns Boxed</a></li> <li class="normal_menu"><a href="portfolio-style3-3column-boxed-nospaces.html">Three Columns Boxed2</a></li> <li class="normal_menu"><a href="portfolio-style3-3column-fullwidth.html">Three Columns Fullwidth</a></li> <li class="normal_menu"><a href="portfolio-style3-3column-fullwidth-nospaces.html">Three Columns Fullwidth2</a></li> <li class="normal_menu"><a href="portfolio-style3-4column-boxed.html">Four Columns Boxed</a></li> <li class="normal_menu"><a href="portfolio-style3-4column-boxed-nospaces.html">Four Columns Boxed2</a></li> <li class="normal_menu"><a href="portfolio-style3-4column-fullwidth.html">Four Columns Fullwidth</a></li> <li class="normal_menu"><a href="portfolio-style3-4column-fullwidth-nospaces.html">Four Columns Fullwidth2</a></li> <li class="normal_menu"><a href="portfolio-style3-2column-boxed.html">Two Columns Boxed</a></li> <li class="normal_menu"><a href="portfolio-style3-2column-boxed-nospaces.html">Two Columns Boxed2</a></li> <li class="normal_menu"><a href="portfolio-style3-2column-fullwidth.html">Two Columns Fullwidth</a></li> <li class="normal_menu"><a href="portfolio-style3-2column-fullwidth-nospaces.html">Two Columns Fullwidth2</a></li> </ul> </li> </ul> </li> <li class="normal_menu"><a href="#">Portfolio Masonry</a> <ul> <li class="normal_menu"><a href="#">Masonry Style 1</a> <ul> <li class="normal_menu"><a href="portfolio-masonry-style1-fullwidth.html">Masonry Fullwidth</a></li> <li class="normal_menu"><a href="portfolio-masonry-style1-boxed.html">Masonry Boxed</a></li> <li class="normal_menu"><a href="portfolio-masonry-style1-columns.html">Masonry Columns</a></li> </ul> </li> <li class="normal_menu"><a href="#">Masonry Style 2</a> <ul> <li class="normal_menu"><a href="portfolio-masonry-style2-fullwidth.html">Masonry Fullwidth</a></li> <li class="normal_menu"><a href="portfolio-masonry-style2-boxed.html">Masonry Boxed</a></li> <li class="normal_menu"><a href="portfolio-masonry-style2-columns.html">Masonry Columns</a></li> </ul> </li> <li class="normal_menu"><a href="#">Masonry Style 3</a> <ul> <li class="normal_menu"><a href="portfolio-masonry-style3-fullwidth.html">Masonry Fullwidth</a></li> <li class="normal_menu"><a href="portfolio-masonry-style3-boxed.html">Masonry Boxed</a></li> <li class="normal_menu"><a href="portfolio-masonry-style3-columns.html">Masonry Columns</a></li> </ul> </li> </ul> </li> <li class="normal_menu"><a href="#">Portfolio Single</a> <ul> <li class="normal_menu"><a href="portfolio-single-gallery.html">Photo Gallery</a></li> <li class="normal_menu"><a href="portfolio-single-video.html">Video Project</a></li> <li class="normal_menu"><a href="portfolio-single-image.html">Image Project</a></li> <li class="normal_menu"><a href="portfolio-single-sound.html">Audio Project</a></li> </ul> </li> </ul> </li> <li class="normal_menu"><a href="page-contact-us.html">Contact Us</a></li> <li class="normal_menu"><a href="page-faq.html">FAQ</a></li> <li class="normal_menu"><a href="page-careers.html">Careers</a></li> <li class="normal_menu"><a href="page-404.html">404</a></li> <li class="normal_menu"><a href="page-coming-soon.html">Coming Soon</a></li> <li class="normal_menu"><a href="page-under-construction.html">Under Structure</a></li> <li class="normal_menu"><a href="page-sitemap.html">sitemap</a></li> <li class="normal_menu"> <a href="page-login-register.html">Register/Login</a> <ul> <li class="normal_menu"> <a href="page-login-register.html">Register/Login Style 1</a> </li> <li class="normal_menu"> <a href="page-login-register2.html">Register/Login Style 2</a> </li> </ul> </li> <li class="normal_menu"><a href="portfolio-single-gallery.html">Project Details</a></li> <li class="normal_menu"><a href="#"><span class="menu_special_color">More Pages Soon ...</span></a></li> </ul> </li> <li class="normal_menu mobile_menu_toggle"> <a href="#"><span>Sliders</span></a> <ul> <li class="normal_menu"><a href="slider-revolution-fullwidth.html"><i class="menu_icon ico-heart4"></i>Revolution Slider</a> <ul> <li class="normal_menu"><a href="slider-revolution-fullscreen.html">Fullscreen</a></li> <li class="normal_menu"><a href="slider-revolution-fullwidth.html">Full Width</a></li> <li class="normal_menu"><a href="slider-revolution-boxed-fullwidth.html">Boxed FullWidth</a></li> <li class="normal_menu"><a href="slider-revolution-boxed-fullscreen.html">Boxed FullScreen</a></li> <li class="normal_menu"><a href="slider-revolution-panzoom-fullscreen.html">Panzoom FullScreen</a></li> <li class="normal_menu"><a href="slider-revolution-panzoom-fullwidth.html">Panzoom FullWidth</a></li> <li class="normal_menu"><a href="slider-revolution-html-video-fullwidth.html">HTML5 Video FullWidth</a></li> <li class="normal_menu"><a href="slider-revolution-html-video-fullscreen.html">HTML5 Video FullScreen</a></li> </ul> </li> <li class="normal_menu"><a href="slider-flex-fullwidth.html"><i class="menu_icon ico-image4"></i>Flex slider</a> <ul> <li class="normal_menu"><a href="slider-flex-fullwidth.html">Full Width</a></li> <li class="normal_menu"><a href="slider-flex-boxed.html">Boxed Width</a></li> <li class="normal_menu"><a href="slider-flex-fullwidth-without-thumbs.html">Full Width No Thumbs</a></li> <li class="normal_menu"><a href="slider-flex-boxed-without-thumbs.html">Boxed Width No Thumbs</a></li> </ul> </li> <li class="normal_menu"><a href="slider-owl-default.html"><i class="menu_icon ico-eye4"></i>Owl slider</a> <ul> <li class="normal_menu"><a href="slider-owl-default.html">Defailt Slider</a></li> <li class="normal_menu"><a href="slider-owl-portfolio.html">Portfolio Slider</a></li> <li class="normal_menu"><a href="slider-owl-features.html">Features Slider</a></li> <li class="normal_menu"><a href="slider-owl-text.html">Text Slider</a></li> <li class="normal_menu"><a href="slider-owl-products.html">Products Slider</a></li> <li class="normal_menu"><a href="slider-owl-gallery.html">Gallery Slider</a></li> </ul> </li> <li class="normal_menu"><a href="slider-camera-fullwidth.html"><i class="menu_icon ico-camera4"></i>Camera Slider</a> <ul> <li class="normal_menu"><a href="slider-camera-fullwidth.html">Full Width</a></li> <li class="normal_menu"><a href="slider-camera-fullwidth-with-thums.html">Full Width Thumbs</a></li> </ul> </li> <li class="normal_menu"><a href="slider-scattered.html"><i class="menu_icon ico-monitor2"></i>Scattered Slider</a></li> <li class="normal_menu"><a href="slider-wobbly.html"><i class="menu_icon ico-trophy3"></i>Wobbly Slider</a></li> <li class="normal_menu"> <a href="#"><i class="menu_icon ico-store"></i>Four Boxes Slider</a> <ul> <li class="normal_menu"><a href="slider-four-boxes-effect-1.html">Effect 1</a></li> <li class="normal_menu"><a href="slider-four-boxes-effect-2.html">Effect 2</a></li> <li class="normal_menu"><a href="slider-four-boxes-effect-3.html">Effect 3</a></li> </ul> </li> <li class="normal_menu"><a href="#"><span class="menu_special_color">More Sliders Soon ...</span></a></li> </ul> </li> <li class="has_mega_menu mobile_menu_toggle"> <a href="#"><span>Shortcodes</span></a> <ul class="mega_menu"> <li> <a href="#">Sliders</a> <ul class="mega_menu_in clearfix"> <li> <a href="#">Revolution slider</a> <ul class="clearfix"> <li> <a href="#">Default</a> <ul class="clearfix"> <li><a href="slider-revolution-fullscreen.html">Default Fullscreen</a></li> <li><a href="slider-revolution-fullwidth.html">Default Full Width</a></li> </ul> </li> <li> <a href="#">Boxed</a> <ul class="clearfix"> <li><a href="slider-revolution-boxed-fullwidth.html">Boxed FullWidth</a></li> <li><a href="slider-revolution-boxed-fullscreen.html">Boxed FullScreen</a></li> </ul> </li> <li> <a href="#">Panzoom</a> <ul class="clearfix"> <li><a href="slider-revolution-panzoom-fullscreen.html">Panzoom FullScreen</a></li> <li><a href="slider-revolution-panzoom-fullwidth.html">Panzoom FullWidth</a></li> </ul> </li> <li> <a href="#">HTML5 Video</a> <ul class="clearfix"> <li><a href="slider-revolution-html-video-fullwidth.html">HTML5 Video FullWidth</a></li> <li><a href="slider-revolution-html-video-fullscreen.html">HTML5 Video FullScreen</a></li> </ul> </li> </ul> </li> <li> <a href="#">Flex slider</a> <ul class="clearfix"> <li> <a href="slider-flex-fullwidth.html">Full Width</a> </li> <li> <a href="slider-flex-boxed.html ">Boxed Width</a> </li> <li> <a href="slider-flex-fullwidth-without-thumbs.html">Full Width No Thumbs</a> </li> <li> <a href="slider-flex-boxed-without-thumbs.html">Boxed Width No Thumbs</a> </li> </ul> </li> <li> <a href="#">Owl slider</a> <ul class="clearfix"> <li> <a href="slider-owl-default.html">Defailt Slider</a> </li> <li> <a href="slider-owl-portfolio.html">Portfolio Slider</a> </li> <li> <a href="slider-owl-features.html">Features Slider</a> </li> <li> <a href="slider-owl-text.html">Text Slider</a> </li> <li> <a href="slider-owl-products.html">Products Slider</a> </li> <li> <a href="slider-owl-gallery.html">Gallery Slider</a> </li> </ul> </li> <li> <a href="slider-scattered.html">Scattered Slider</a> </li> <li> <a href="#">Four Boxes Slider</a> <ul class="clearfix"> <li> <a href="slider-four-boxes-effect-1.html">Effect 1</a> </li> <li> <a href="slider-four-boxes-effect-2.html">Effect 2</a> </li> <li> <a href="slider-four-boxes-effect-3.html">Effect 3</a> </li> </ul> </li> <li> <a href="slider-wobbly.html">Wobbly Slider</a> </li> <li> <a href="#">Camera Slider</a> <ul class="clearfix"> <li> <a href="slider-camera-fullwidth.html">Full Width</a> </li> <li> <a href="slider-camera-fullwidth-with-thums.html">Full Width Thumbs</a> </li> </ul> </li> </ul> </li> <li> <a href="#">Shortcodes Group 1</a> <ul class="mega_menu_in clearfix"> <li><a href="elements-background-video.html">video Background</a></li> <li><a href="elements-accordion.html">Accordion</a></li> <li><a href="elements-tabs.html">Tabs</a></li> <li><a href="elements-banner-text.html">Banner Text</a></li> <li><a href="elements-titles-and-headings.html">Titles and Headings</a></li> <li><a href="elements-pies-and-skills.html">Pies & Skills</a></li> <li><a href="elements-team.html">Team</a></li> </ul> </li> <li> <a href="#">Shortcodes Group 2</a> <ul class="mega_menu_in clearfix"> <li><a href="elements-testimonials.html">Testimonials</a></li> <li><a href="elements-clients.html">Clients</a></li> <li><a href="elements-counters.html">Counters</a></li> <li><a href="elements-icon-boxes.html">Icon Boxes</a></li> <li><a href="elements-carousel.html">Carousel</a></li> <li><a href="elements-buttons.html">Buttons</a></li> <li><a href="elements-maps.html">Google Maps</a></li> </ul> </li> <li> <a href="#">Shortcodes Group 3</a> <ul class="mega_menu_in clearfix"> <li><a href="elements-galleries.html">Galleries</a></li> <li><a href="elements-tooltip.html">Tooltip</a></li> <li><a href="elements-tables.html">Tables</a></li> <li><a href="elements-charts.html">Charts</a></li> <li><a href="elements-lightbox.html">Lightbox</a></li> <li><a href="elements-pricing-tables.html">Pricing Tables</a></li> <li><a href="elements-features.html">Features</a></li> </ul> </li> </ul> </li> <li class="has_tab_menu mobile_menu_toggle"> <a href="#"><span>Portfolio</span></a> <ul class="tab_menu clearfix"> <li class="tab_menu_con"> <ul class="tab_menu_list"> <li class="tab_menu_item active"> <a href="#"><i class="menu_icon ico-image4"></i>Filter 2 Columns</a> <ul class="mega_menu"> <li><a href="#">Style 1</a> <ul> <li><a href="portfolio-style1-2column-boxed.html">Two Columns Boxed</a></li> <li><a href="portfolio-style1-2column-boxed-nospaces.html">Two Columns Boxed2</a></li> <li><a href="portfolio-style1-2column-fullwidth.html">Two Columns Fullwidth</a></li> <li><a href="portfolio-style1-2column-fullwidth-nospaces.html">Two Columns Fullwidth2</a></li> </ul> </li> <li><a href="#">Style 2</a> <ul> <li><a href="portfolio-style2-2column-boxed.html">Two Columns Boxed</a></li> <li><a href="portfolio-style2-2column-boxed-nospaces.html">Two Columns Boxed2</a></li> <li><a href="portfolio-style2-2column-fullwidth.html">Two Columns Fullwidth</a></li> <li><a href="portfolio-style2-2column-fullwidth-nospaces.html">Two Columns Fullwidth2</a></li> </ul> </li> <li><a href="#">Style 3</a> <ul> <li><a href="portfolio-style3-2column-boxed.html">Two Columns Boxed</a></li> <li><a href="portfolio-style3-2column-boxed-nospaces.html">Two Columns Boxed2</a></li> <li><a href="portfolio-style3-2column-fullwidth.html">Two Columns Fullwidth</a></li> <li><a href="portfolio-style3-2column-fullwidth-nospaces.html">Two Columns Fullwidth2</a></li> </ul> </li> </ul> </li> <li class="tab_menu_item"> <a href="#"><i class="menu_icon ico-portfolio"></i>Filter 3 Columns</a> <ul class="mega_menu"> <li><a href="#">Style 1</a> <ul> <li><a href="portfolio-style1-3column-boxed.html">Three Columns Boxed</a></li> <li><a href="portfolio-style1-3column-boxed-nospaces.html">Three Columns Boxed2</a></li> <li><a href="portfolio-style1-3column-fullwidth.html">Three Columns Fullwidth</a></li> <li><a href="portfolio-style1-3column-fullwidth-nospaces.html">Three Columns Fullwidth2</a></li> </ul> </li> <li><a href="#">Style 2</a> <ul> <li><a href="portfolio-style2-3column-boxed.html">Three Columns Boxed</a></li> <li><a href="portfolio-style2-3column-boxed-nospaces.html">Three Columns Boxed2</a></li> <li><a href="portfolio-style2-3column-fullwidth.html">Three Columns Fullwidth</a></li> <li><a href="portfolio-style2-3column-fullwidth-nospaces.html">Three Columns Fullwidth2</a></li> </ul> </li> <li><a href="#">Style 3</a> <ul> <li><a href="portfolio-style3-3column-boxed.html">Three Columns Boxed</a></li> <li><a href="portfolio-style3-3column-boxed-nospaces.html">Three Columns Boxed2</a></li> <li><a href="portfolio-style3-3column-fullwidth.html">Three Columns Fullwidth</a></li> <li><a href="portfolio-style3-3column-fullwidth-nospaces.html">Three Columns Fullwidth2</a></li> </ul> </li> </ul> </li> <li class="tab_menu_item"> <a href="#"><i class="menu_icon ico-grid3"></i>Filter 4 Columns</a> <ul class="mega_menu"> <li><a href="#">Style 1</a> <ul> <li><a href="portfolio-style1-4column-boxed.html">Four Columns Boxed</a></li> <li><a href="portfolio-style1-4column-boxed-nospaces.html">Four Columns Boxed2</a></li> <li><a href="portfolio-style1-4column-fullwidth.html">Four Columns Fullwidth</a></li> <li><a href="portfolio-style1-4column-fullwidth-nospaces.html">Four Columns Fullwidth2</a></li> </ul> </li> <li><a href="#">Style 2</a> <ul> <li><a href="portfolio-style2-4column-boxed.html">Four Columns Boxed</a></li> <li><a href="portfolio-style2-4column-boxed-nospaces.html">Four Columns Boxed2</a></li> <li><a href="portfolio-style2-4column-fullwidth.html">Four Columns Fullwidth</a></li> <li><a href="portfolio-style2-4column-fullwidth-nospaces.html">Four Columns Fullwidth2</a></li> </ul> </li> <li><a href="#">Style 3</a> <ul> <li><a href="portfolio-style3-4column-boxed.html">Four Columns Boxed</a></li> <li><a href="portfolio-style3-4column-boxed-nospaces.html">Four Columns Boxed2</a></li> <li><a href="portfolio-style3-4column-fullwidth.html">Four Columns Fullwidth</a></li> <li><a href="portfolio-style3-4column-fullwidth-nospaces.html">Four Columns Fullwidth2</a></li> </ul> </li> </ul> </li> <li class="tab_menu_item"> <a href="#"><i class="menu_icon ico-screen"></i>Portfolio Masonry</a> <ul class="mega_menu"> <li><a href="#">Masonry Style 1</a> <ul> <li><a href="portfolio-masonry-style1-fullwidth.html">Masonry Fullwidth</a></li> <li><a href="portfolio-masonry-style1-boxed.html">Masonry Boxed</a></li> <li><a href="portfolio-masonry-style1-columns.html">Masonry Columns</a></li> </ul> </li> <li><a href="#">Masonry Style 2</a> <ul> <li><a href="portfolio-masonry-style2-fullwidth.html">Masonry Fullwidth</a></li> <li><a href="portfolio-masonry-style2-boxed.html">Masonry Boxed</a></li> <li><a href="portfolio-masonry-style2-columns.html">Masonry Columns</a></li> </ul> </li> <li><a href="#">Masonry Style 3</a> <ul> <li><a href="portfolio-masonry-style3-fullwidth.html">Masonry Fullwidth</a></li> <li><a href="portfolio-masonry-style3-boxed.html">Masonry Boxed</a></li> <li><a href="portfolio-masonry-style3-columns.html">Masonry Columns</a></li> </ul> </li> </ul> </li> <li class="tab_menu_item"> <a href="#"><i class="menu_icon ico-task"></i>Portfolio Single</a> <ul class="mega_menu"> <li><a href="#">Single Pages</a> <ul> <li><a href="portfolio-single-gallery.html">Photo Gallery</a></li> <li><a href="portfolio-single-video.html">Video Project</a></li> <li><a href="portfolio-single-image.html">Image Project</a></li> <li><a href="portfolio-single-sound.html">Audio Project</a></li> </ul> </li> </ul> </li> <li class="tab_menu_item"> <a href="#"><i class="menu_icon ico-gallery"></i>Portfolio Carousel</a> <ul class="image_menu"> <li class="image_menu_slide"> <div class="img_menu_i"> <a href="#"> <img src="images/portfolio/porto1.jpg" alt="Project Name" > <span>Project Name</span> </a> </div> <div class="img_menu_i"> <a href="#"> <img src="images/portfolio/porto2.jpg" alt="Project Name" > <span>Project Name</span> </a> </div> <div class="img_menu_i"> <a href="#"> <img src="images/portfolio/porto3.jpg" alt="Project Name" > <span>Project Name</span> </a> </div> <div class="img_menu_i"> <a href="#"> <img src="images/portfolio/porto4.jpg" alt="Project Name" > <span>Project Name</span> </a> </div> <div class="img_menu_i"> <a href="#"> <img src="images/portfolio/porto5.jpg" alt="Project Name" > <span>Project Name</span> </a> </div> <div class="img_menu_i"> <a href="#"> <img src="images/portfolio/porto6.jpg" alt="Project Name" > <span>Project Name</span> </a> </div> </li> </ul> </li> <!-- <li class="tab_menu_item"> <a href="#"><i class="menu_icon ico-menu2"></i>About Our Portfolio</a> <ul class="html_content_menu"> <li> <p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour of this randomised words which don't look even slightly believable If you are going to use a passage of Lorem Ipsum passages of Lorem Ipsum available, but the majority have suffered.</p> <p>passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour of this randomised words which don't look even slightly believable If you are going to use a passage of Lorem Ipsum you are going to use a passage of Lorem Ipsum.</p> </li> </ul> </li> --> </ul> </li> </ul> </li> <li class="normal_menu mobile_menu_toggle"> <a href="blog-standard-sidebar-right.html"><span>Blog</span></a> <ul> <li class="normal_menu"> <a href="blog-single-gallery.html">Blog Single Post</a> <ul> <li class="normal_menu"><a href="blog-single-image.html">Standard Post</a></li> <li class="normal_menu"><a href="blog-single-gallery.html">Gallery Post</a></li> <li class="normal_menu"><a href="blog-single-vimeo-video.html">Vimeo Video Post</a></li> <li class="normal_menu"><a href="blog-single-youtube-video.html">Youtube Video Post</a></li> <li class="normal_menu"><a href="blog-single-self-hosted-video.html">Self Hosted Video Post</a></li> <li class="normal_menu"><a href="blog-single-soundcloud-audio.html">SoundCloud Audio Post</a></li> <li class="normal_menu"><a href="blog-single-self-hosted-audio.html">Self Hosted Audio Post</a></li> <li class="normal_menu"><a href="blog-single-quote.html">Blockquote post</a></li> <li class="normal_menu"><a href="blog-single-sidebar-right.html">Sidebar Right</a></li> <li class="normal_menu"><a href="blog-single-sidebar-left.html">Sidebar Left</a></li> <li class="normal_menu"><a href="blog-single-fullwidth.html">Full Width</a></li> </ul> </li> <li class="normal_menu"> <a href="blog-masonry-colored.html">Blog Masonry</a> <ul> <li class="normal_menu"><a href="blog-masonry-colored.html">colored columns</a></li> <li class="normal_menu"><a href="blog-masonry-simple.html">simple columns</a></li> <li class="normal_menu"><a href="blog-masonry-colored-fullwidth-three-columns.html">full three columns</a></li> <li class="normal_menu"><a href="blog-masonry-colored-fullwidth-four-columns.html">full four columns</a></li> <li class="normal_menu"><a href="blog-masonry-colored-boxed-three-columns.html">boxed three columns</a></li> <li class="normal_menu"><a href="blog-masonry-colored-boxed-four-columns.html">boxed four columns</a></li> <li class="normal_menu"><a href="blog-masonry-colored-boxed-two-columns.html">boxed two columns</a></li> <li class="normal_menu"><a href="blog-masonry-colored-boxed-sidebar-right.html">boxed sidebar right</a></li> <li class="normal_menu"><a href="blog-masonry-colored-boxed-sidebar-left.html">boxed sidebar left</a></li> </ul> </li> <li class="normal_menu"> <a href="blog-list.html">Blog List </a> <ul> <li class="normal_menu"><a href="blog-list.html"> full width</a></li> <li class="normal_menu"><a href="blog-list-sidebar-right.html">sidebar right</a></li> <li class="normal_menu"><a href="blog-list-sidebar-left.html">sidebar left</a></li> </ul> </li> <li class="normal_menu"><a href="blog-timeline.html">Blog Timeline</a></li> <li class="normal_menu"> <a href="blog-standard-sidebar-right.html">Blog Standard</a> <ul> <li class="normal_menu"><a href="blog-standard-fullwidth.html">full width</a></li> <li class="normal_menu"><a href="blog-standard-sidebar-left.html">sidebar left</a></li> <li class="normal_menu"><a href="blog-standard-sidebar-right.html">sidebar right</a></li> </ul> </li> <li class="normal_menu"><a href="blog-carousel.html">Blog Carousel</a></li> <li class="normal_menu"><a href="blog-grid.html">Blog Grids</a></li> </ul> </li> <li class="normal_menu mobile_menu_toggle"> <a href="shop.html"><span>Shop</span></a> <ul> <li class="normal_menu"><a href="shop.html">Default Shop</a></li> <li class="normal_menu"><a href="shop-item.html">Shop Single Product</a></li> <li class="normal_menu"><a href="shop-check-out.html">Shop Check Out</a></li> <li class="normal_menu"><a href="#"><span class="menu_special_color">More Pages Soon ...</span></a></li> </ul> </li> <li class="has_image_menu mobile_menu_toggle"> <a href="page-team-members.html"><span>Team</span></a> <ul class="image_menu"> <li class="image_menu_slide"> <!-- Has Sub Slider --> <!-- <div class="img_menu_i has_sub_img"> <div class="img_menu_i"> <a href="#" class="menu_imgs">Designers Team</a> <a href="#"> <img src="images/team/member6.jpg" alt="Member Name" > <span>Adam Karem</span> </a> </div> <div class="img_menu_i"> <a href="#" class="menu_imgs">Designers Team</a> <a href="#"> <img src="images/team/member5.jpg" alt="Member Name" > <span>Jack Smith</span> </a> </div> <div class="img_menu_i"> <a href="#" class="menu_imgs">Designers Team</a> <a href="#"> <img src="images/team/member6.jpg" alt="Member Name" > <span>Adam Karem</span> </a> </div> <div class="img_menu_i"> <a href="#" class="menu_imgs">Designers Team</a> <a href="#"> <img src="images/team/member5.jpg" alt="Member Name" > <span>Jack Smith</span> </a> </div> </div> --> <!-- End Has Sub Slider --> <div class="img_menu_i"> <a href="page-about-me.html"> <img src="images/team/member1.jpg" alt="Member Name" > <span>Josh Clark</span> </a> </div> <div class="img_menu_i"> <a href="page-about-me.html"> <img src="images/team/member2.jpg" alt="Member Name" > <span>Walther White</span> </a> </div> <div class="img_menu_i"> <a href="page-about-me.html"> <img src="images/team/member3.jpg" alt="Member Name" > <span>John Boris</span> </a> </div> <div class="img_menu_i"> <a href="page-about-me.html"> <img src="images/team/member4.jpg" alt="Member Name" > <span>Nix Maxwell</span> </a> </div> <div class="img_menu_i"> <a href="page-about-me.html"> <img src="images/team/member5.jpg" alt="Member Name" > <span>John Doe</span> </a> </div> <div class="img_menu_i"> <a href="page-about-me.html"> <img src="images/team/member6.jpg" alt="Member Name" > <span>Jack Smith</span> </a> </div> </li> </ul> </li> </ul> </div> </nav> <!-- End Nav --> <div class="clear"></div> </div> </div> </header> <!-- End Main Header --> <!-- Isotope Filter 1 four columns with padding --> <section class="content_section bg_gray border_t_n"> <div class="row_spacer clearfix"> <div class="content"> <div class="main_title centered upper"> <h2><span class="line"></span>Our Portfolio</h2> </div> </div> <!-- Filter Content --> <div class="hm_filter_wrapper two_blocks project_text_nav boxed_portos has_sapce_portos upper_title"> <div id="options" class="sort_options clearfix"> <ul data-option-key="filter" class="option-set clearfix" id="filter-by"> <li><a data-option-value="*" class="selected" href="#"><span>all</span><span class="num"></span></a></li> <li><a data-option-value=".design" class="" href="#"><span>Design</span><span class="num"></span></a></li> <li><a data-option-value=".photography" class="" href="#"><span>Photography</span><span class="num"></span></a></li> <li><a data-option-value=".video" class="" href="#"><span>Video</span><span class="num"></span></a></li> <li><a data-option-value=".printing" class="" href="#"><span>Printing</span><span class="num"></span></a></li> <li><a data-option-value=".wordpress" class="" href="#"><span>Wordpress</span><span class="num"></span></a></li> </ul> <div class="sort_list"> <a href="#" class="sort_selecter"> <span class="text">Sort By</span> <span class="arrow"><i class="ico-arrow-back"></i></span> </a> <ul data-option-key="sortBy" class="option-set clearfix" id="sort-by"> <!-- <li><a data-option-value="original-order" class="selected" href="#"><span class="text">original order</span></a></li> --> <li><a data-option-value="name" href="#" class=""><span class="text">name</span></a></li> <li><a data-option-value="number" href="#" class=""><span class="text">date</span></a></li> <li><a data-option-value="like_counter" href="#" class=""><span class="text">like number</span></a></li> <li><a data-option-value="comm_counter" href="#" class=""><span class="text">comments number</span></a></li> </ul> </div> <ul data-option-key="sortAscending" class="option-set clearfix" id="sort-direction"> <li><a class="selected" data-option-value="true" href="#"> <span><i class="ico-keyboard-arrow-up"></i></span></a> </li> <li><a data-option-value="false" href="#" class=""> <span><i class="ico-keyboard-arrow-down"></i></span></a> </li> </ul> </div> <div class="hm_filter_wrapper_con"> <div class="filter_item_block video wordpress"> <div class="before_after_con"> <div class="before_after_img clearfix"> <img class="before_after_b" src="images/portfolio/before.jpg"> <img class="before_after_a" src="images/portfolio/after.jpg"> </div> <div class="before_after_desc"> <h6>Project Title</h6> <p>This is dummy copy. It is not meant to be read. It has been placed here solely to demonstrate the look and feel of finished, typeset text. Only for show. He who searches for meaning here will be sorely disappointed.</p> </div> </div> </div><!-- Item --> <div class="filter_item_block design"> <div class="before_after_con"> <div class="before_after_img clearfix"> <img class="before_after_b" src="images/portfolio/before.jpg"> <img class="before_after_a" src="images/portfolio/after.jpg"> </div> <div class="before_after_desc"> <h6>Project Title</h6> <p>This is dummy copy. It is not meant to be read. It has been placed here solely to demonstrate the look and feel of finished, typeset text. Only for show. He who searches for meaning here will be sorely disappointed.</p> </div> </div> </div><!-- Item --> <div class="filter_item_block photography"> <div class="before_after_con"> <div class="before_after_img clearfix"> <img class="before_after_b" src="images/portfolio/before.jpg"> <img class="before_after_a" src="images/portfolio/after.jpg"> </div> <div class="before_after_desc"> <h6>Project Title</h6> <p>This is dummy copy. It is not meant to be read. It has been placed here solely to demonstrate the look and feel of finished, typeset text. Only for show. He who searches for meaning here will be sorely disappointed.</p> </div> </div> </div><!-- Item --> <div class="filter_item_block printing"> <div class="before_after_con"> <div class="before_after_img clearfix"> <img class="before_after_b" src="images/portfolio/before.jpg"> <img class="before_after_a" src="images/portfolio/after.jpg"> </div> <div class="before_after_desc"> <h6>Project Title</h6> <p>This is dummy copy. It is not meant to be read. It has been placed here solely to demonstrate the look and feel of finished, typeset text. Only for show. He who searches for meaning here will be sorely disappointed.</p> </div> </div> </div><!-- Item --> </div> </div> <!-- End Filter Content --> </div> </section> <!-- End Isotope Filter 1 four columns with padding --> <!-- footer --> <footer id="footer"> <div class="container row_spacer clearfix"> <div class="rows_container clearfix"> <div class="col-md-3"> <div class="footer_row"> <h6 class="footer_title">Company Info</h6> <img alt="Enar" src="images/logo-light.png"> <span class="footer_desc"> There are many Purchase Now There are many variations of passages of Lorem Ipsum available, but the majority. </span> <a href="#" class="black_button"> <i class="ico-angle-right"></i><span>Read More</span> </a> </div> <div class="footer_row"> <h6 class="footer_title">Newsletter Signup</h6> <span class="footer_desc"> By subscribing to our mailing list you will always be update with the latest news : </span> <form id="newsletter_form" class="newsletter_form" action="php/mailchimp/subscribe.php" method="post"> <div class="newsletter_con"> <input class="subscribe-mail" name="subscribe-mail" id="subscribe-mail" type="email" placeholder="Your Email Here ..." required> <button type="submit" name="submit" class="newsletter_button"> <i class="subscribe_true ico-check3"></i> <i class="subscribe_btn ico-send-o"></i> <i class="refresh_loader ico-refresh4"></i> </button> </div> <div id="subscribe_output"></div> </form> </div> </div><!-- Grid --> <div class="col-md-3"> <div class="footer_row"> <h6 class="footer_title">Recent Posts</h6> <ul class="recent_posts_list"> <li class="clearfix"> <a href="#"> <span class="recent_posts_img"><img src="images/blog/thumb1.jpg" alt="Post Title"></span> <span>Best HTML5 Theme</span> </a> <span class="recent_post_detail">2015/01/23</span> <span class="recent_post_detail">Tutorials, Videos</span> </li> <li class="clearfix"> <a href="#"> <span class="recent_posts_img"><img src="images/blog/thumb2.jpg" alt="Post Title"></span> <span>Responseve Design</span> </a> <span class="recent_post_detail">2015/02/17</span> <span class="recent_post_detail">Audio, Videos</span> </li> <li class="clearfix"> <a href="#"> <span class="recent_posts_img"><img src="images/blog/thumb3.jpg" alt="Post Title"></span> <span>Many Home Pages</span> </a> <span class="recent_post_detail">2015/02/17</span> <span class="recent_post_detail">Tutorials, Design</span> </li> <li class="clearfix"> <a href="#"> <span class="recent_posts_img"><img src="images/blog/thumb4.jpg" alt="Post Title"></span> <span>Best HTML5 Theme</span> </a> <span class="recent_post_detail">2015/01/23</span> <span class="recent_post_detail">Tutorials, Videos</span> </li> </ul> <a href="#" class="arrow_button full_width"> <span> <i class="ico-arrow-forward"></i> <span>Read More Posts</span> <i class="ico-arrow-forward"></i> </span> </a> </div> </div><!-- Grid --> <div class="col-md-3"> <div class="footer_row"> <h6 class="footer_title">Cloud Tags</h6> <div class="tagcloud clearfix"> <a href="#"><span class="tag">Wordpress</span></a> <a href="#"><span class="tag">Creative</span></a> <a href="#"><span class="tag">CSS3</span></a> <a href="#"><span class="tag">Design</span></a> <a href="#"><span class="tag">Graphic</span></a> <a href="#"><span class="tag">HTML5</span></a> <a href="#"><span class="tag">SEO</span></a> <a href="#"><span class="tag">CSS3</span></a> <a href="#"><span class="tag">Web Design</span></a> </div> </div> <div class="footer_row"> <h6 class="footer_title">Flicker Widget</h6> <div class="flickr_widget_block clearfix"> <span class="flickr_badge_image"> <a href="#"> <img src="images/flicker/flicker1.jpg" alt="Image Name" title="Flicker Image"> </a> </span> <span class="flickr_badge_image"> <a href="#"> <img src="images/flicker/flicker2.jpg" alt="Image Name" title="Flicker Image"> </a> </span> <span class="flickr_badge_image"> <a href="#"> <img src="images/flicker/flicker3.jpg" alt="Image Name" title="Flicker Image"> </a> </span> <span class="flickr_badge_image"> <a href="#"> <img src="images/flicker/flicker4.jpg" alt="Image Name" title="Flicker Image"> </a> </span> <span class="flickr_badge_image"> <a href="#"> <img src="images/flicker/flicker5.jpg" alt="Image Name" title="Flicker Image"> </a> </span> <span class="flickr_badge_image"> <a href="#"> <img src="images/flicker/flicker6.jpg" alt="Image Name" title="Flicker Image"> </a> </span> </div> </div> </div><!-- Grid --> <div class="col-md-3"> <div class="footer_row"> <h6 class="footer_title">Best Author</h6> <div class="about_author clearfix"> <a href="#" class="about_author_link"> <img src="images/clients/team2-medium.jpg" alt="Author Name"> <span>John Doe</span> </a> <div class="social_media clearfix"> <a class="twitter" target="_blank" href="#"> <i class="ico-twitter4"></i> </a> <a class="facebook" target="_blank" href="#"> <i class="ico-facebook4"></i> </a> <a class="googleplus" target="_blank" href="#"> <i class="ico-google-plus"></i> </a> <a class="linkedin" target="_blank" href="#"> <i class="ico-linkedin3"></i> </a> </div> </div> </div> <div class="footer_row"> <h6 class="footer_title">Custom Video</h6> <a class="hm_vid_con popup-vimeo" href="http://vimeo.com/29193046"> <span class="vid_icon"><i class="ico-play5"></i></span> <img alt="Video Title" src="images/blog/blog5.jpg"> </a> </div> </div><!-- Grid --> </div> </div> <div class="footer_copyright"> <div class="container clearfix"> <div class="col-md-6"> <span class="footer_copy_text">Copyright &copy; 2015 Powered By <a href="#">IdealTheme</a> - <a href="#">Enar Theme</a> - All Rights Reserved</span> </div> <div class="col-md-6 clearfix"> <ul class="footer_menu clearfix"> <li><a href="#"><span>Home</span></a></li> <li>/</li> <li><a href="#"><span>About Us</span></a></li> <li>/</li> <li><a href="#"><span>Help Center</span></a></li> <li>/</li> <li><a href="#"><span>Contact Us</span></a></li> </ul> </div> </div> </div> </footer> <!-- End footer --> <a href="#0" class="hm_go_top"></a> </div> <!-- End wrapper --> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="js/jquery.js"><\/script>')</script> <script src="js/plugins.js"></script> <script src="js/isotope.pkgd.min.js"></script> <!-- this is where we put our custom functions --> <script type="text/javascript" src="js/functions.js"></script> </body> </html>
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_07_testAbaNumberCheck_13502_bad_4i.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">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <a href="http://cardatechnologies.com" target="_top"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </a> </div> <div class="aui-page-header-main" > <h1> <a href="http://cardatechnologies.com" target="_top"> ABA Route Transit Number Validator 1.0.1-SNAPSHOT </a> </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li> <li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li> <li><a href="test-Test_AbaRouteValidator_07.html">Class Test_AbaRouteValidator_07</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_13502_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_07.html?line=25312#src-25312" >testAbaNumberCheck_13502_bad</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:37:11 </td> <td> 0.001 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</div> <table class="aui aui-table-sortable"> <thead> <tr> <th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th> <th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_13502_bad</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/exceptions/AbaRouteValidationException.html?id=162#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> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/ErrorCodes.html?id=162#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> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=162#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>
variable-map.html
spatial-computing/ndsc-webmap
<!DOCTYPE html> <html ng-app='myModule' ng-controller='myController'> <head> <title>Variable Map</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous"> <link rel="stylesheet" href="https://js.arcgis.com/3.20/esri/css/esri.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Lato" /> <link rel="stylesheet" href="css/variable-map.css"> <link rel="stylesheet" href="css/loading.css"> <link rel="stylesheet" href="https://js.arcgis.com/3.21/dijit/themes/nihilo/nihilo.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/angularjs-slider/6.2.2/rzslider.min.css"> <link rel="shortcut icon" href="img/favicon.ico"> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.6.3/angular.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/angular-filter/0.5.8/angular-filter.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/0.14.3/ui-bootstrap-tpls.js"></script> <script src="https://rawgit.com/rzajac/angularjs-slider/master/dist/rzslider.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.min.js"></script> <style> @media (max-width: 1350px) { .navbar-header { float: none; } .navbar-left,.navbar-right { float: none !important; } .navbar-toggle { display: block; } .navbar-collapse { border-top: 1px solid transparent; box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-collapse.collapse { display: none!important; } .navbar-nav { float: none!important; margin-top: 7.5px; } .navbar-nav>li { float: none; } .navbar-nav>li>a { padding-top: 10px; padding-bottom: 10px; } .collapse.in{ display:block !important; } } body { overflow:scroll; min-width: 1000px; min-height: 750px; } div.esriPopupWrapper .zoomTo { display: none; } html, body, #map { padding:0; margin:0; height:100%; } #HomeButton { position: absolute; top: 105px; left: 36px; z-index: 50; } </style> </head> <body> <div id="loader-wrapper"> <div id="loader"></div> <div class="loader-section section-left"></div> <div class="loader-section section-right"></div> </div> <div id="content"> <nav id="main-nav" class="navbar"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false"> <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"><span id="home-icon" class="glyphicon glyphicon-home"></span><span class="sr-only">(current)</span></a> </div> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li><a href="about.html">About</a></li> <li><a href="data_dictionary.html">Data Dictionary</a></li> <li><a href="explorevariables.html">Explore Variables</a></li> <li><a href="neighborhood_lp.html">Explore Neighborhoods</a></li> <li><a href="exp_comp_ind.html">Explore Composite Indicators</a></li> <li><a href="data_stories.html">Data Stories</a></li> <li><a href="about_data.html">Learn About The Data</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="login.html">Login/Sign Up</a></li> </ul> </div> </div> </nav> <div class="container-fluid" style="padding-top: 15px;"> <div class="row content"> <!-- left panel --> <div class="col-xs-2 sidenav"> <div class="col-xs-12 white" style="overflow-y: scroll;height:40%; min-height: 300px;"> <h5 style="font-weight:bold;">About {{ mapData.variable }}</h5> {{varMapDash[0].learnvariableaboutthevariableondashboard}} </div> <div class="col-xs-12 col12"> <div id="legendDiv"></div> </div> </div> <!-- center panel --> <div class="col-xs-6 col2" > <div class="col-xs-12 col21"> <p style="text-align: center; font-weight: bold; font-size: 15px">{{ mapData["variable"] | uppercase}} ({{year}})</p> </div> <div class="col-xs-12 col22"> <div id="mapDiv" style="display: inline-block; width:100%;"> <div id="map"> <div id="HomeButton"></div> </div> </div> </div> <div class="col-xs-12"> <div class="col-xs-6 col23"> <rzslider ng-hide="!bool" style="width:250px; " rz-slider-model="slider_ticks_values_tooltip.value" rz-slider-options="slider_ticks_values_tooltip.options"></rzslider> </div> <div class="col-xs-3 col231"> <a class="btn btn-default" href="https://opendata.arcgis.com/datasets/{{downloadURL}}_0.csv">Download All Data</a> </div> <div class="col-xs-3 col232"> <button class="btn btn-default" id="printButton" data-toggle="tooltip" data-placement="top" title="Work in Progress!">Save/Print Map</button> </div> </div> <div class="col-xs-12 col24" ng-show="table == 'true'"> <table class="table table-hover" style="border:1px solid black"> <thead> <tr> <th>Neighborhood</th> <th>{{ mapData["variable"] }}</th> </tr> </thead> <tbody> <tr style="background-color:#edd840;" ng-repeat="(key,value) in tableAnswer"> <td>{{key}}</td> <td>{{value}}</td> </tr> </tbody> </table> </div> </div> <!-- right panel --> <div class="col-xs-4 sidenav"> <div class="row row31"> <div class="col-xs-5 col31"> <div class="col-xs-12 col311"> <div class="varButton"><a href="explorevariables.html">Select a Different Variable</a></div> </div> <div class="col-xs-12 col312"> </div> <div class="col-xs-12 col313"> <p>Median Value for L.A. County <b>{{median}}</b></p> </div> </div> <div class="col-xs-7 col32" style="overflow-y: scroll;font-size:12px;"> <div class="aboutContent"> <h5 class="text-center" style="padding-top:0">About the Data</h5> <ul style="list-style:none; padding-left:0; padding-top:0"> <li><em>Definition:</em> {{varMapDash[0]['variabledefinition']}}<br></li> <li><br></li> <li><em>Source:</em> {{varMapDash[0]['datasource']}}<br></li> <li><br></li> <li><em>Years:</em> {{varMapDash[0]['yearsavailable']}}<br></li> <li><br></li> <li><em>Methodology:</em> {{varMapDash[0]['answer2methodology']}}</li> </ul> </div> </div> </div> <div class="row row32" style="padding-top: 5px;"> </div> <div class="row row33" style="padding: 5px;margin-bottom:30px;"> <canvas id="chart"> </canvas> </div> <div class="col-xs-12"> <button class="btn btn-default" id="printChart" ng-click="getChart()" style="margin-left: 130px">Save/Print Graph</button> <!-- </div> --> </div> </div> </div> </div> </div> <script src="https://code.jquery.com/jquery-1.10.2.js"></script> <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> <script src="https://js.arcgis.com/3.20"></script> <script src="http://unpkg.com/angular-esri-map@1"></script> <script src="js/variable_map.js"></script> <script src="js/loading.js"></script> <script src="http://hongru.github.io/proj/canvas2image/canvas2image.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.min.js"></script> <script> $(function () { $('[data-toggle="tooltip"]').tooltip() }) </script> </body> </html>
gwt/javadoc/com/rhizospherejs/gwt/client/handlers/class-use/SelectionEvent.Handler.html
battlehorse/rhizosphere
<!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-google-v3) on Tue Jun 28 23:58:16 BST 2011 --> <TITLE> Uses of Interface com.rhizospherejs.gwt.client.handlers.SelectionEvent.Handler </TITLE> <META NAME="date" CONTENT="2011-06-28"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface com.rhizospherejs.gwt.client.handlers.SelectionEvent.Handler"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?com/rhizospherejs/gwt/client/handlers//class-useSelectionEvent.Handler.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="SelectionEvent.Handler.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Interface<br>com.rhizospherejs.gwt.client.handlers.SelectionEvent.Handler</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/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#com.rhizospherejs.gwt.client"><B>com.rhizospherejs.gwt.client</B></A></TD> <TD>Defines the Rhizosphere visualization widget and all the main interfaces required to configure and instantiate a Rhizosphere visualization within GWT.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#com.rhizospherejs.gwt.client.handlers"><B>com.rhizospherejs.gwt.client.handlers</B></A></TD> <TD>Handlers and event definitions for events triggered by Rhizosphere visualizations.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="com.rhizospherejs.gwt.client"><!-- --></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/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A> in <A HREF="../../../../../../com/rhizospherejs/gwt/client/package-summary.html">com.rhizospherejs.gwt.client</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../com/rhizospherejs/gwt/client/package-summary.html">com.rhizospherejs.gwt.client</A> with parameters of type <A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;com.google.gwt.event.shared.HandlerRegistration</CODE></FONT></TD> <TD><CODE><B>Rhizosphere.</B><B><A HREF="../../../../../../com/rhizospherejs/gwt/client/Rhizosphere.html#addSelectionHandler(com.rhizospherejs.gwt.client.handlers.SelectionEvent.Handler)">addSelectionHandler</A></B>(<A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A>&nbsp;handler)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Register a handler to be notified whenever the selection status of one or more visualization elements changes.</TD> </TR> </TABLE> &nbsp; <P> <A NAME="com.rhizospherejs.gwt.client.handlers"><!-- --></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/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A> in <A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/package-summary.html">com.rhizospherejs.gwt.client.handlers</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Fields in <A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/package-summary.html">com.rhizospherejs.gwt.client.handlers</A> with type parameters of type <A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>(package private) static&nbsp;com.google.gwt.event.shared.GwtEvent.Type&lt;<A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A>&gt;</CODE></FONT></TD> <TD><CODE><B>SelectionEvent.</B><B><A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.html#TYPE">TYPE</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The event type.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/package-summary.html">com.rhizospherejs.gwt.client.handlers</A> that return types with arguments of type <A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;com.google.gwt.event.shared.GwtEvent.Type&lt;<A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A>&gt;</CODE></FONT></TD> <TD><CODE><B>SelectionEvent.</B><B><A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.html#getAssociatedType()">getAssociatedType</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;com.google.gwt.event.shared.GwtEvent.Type&lt;<A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A>&gt;</CODE></FONT></TD> <TD><CODE><B>SelectionEvent.</B><B><A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.html#getType()">getType</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ensures the existence of the handler hook and then returns it.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/package-summary.html">com.rhizospherejs.gwt.client.handlers</A> with parameters of type <A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;com.google.gwt.event.shared.HandlerRegistration</CODE></FONT></TD> <TD><CODE><B>HasSelectionHandlers.</B><B><A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/HasSelectionHandlers.html#addSelectionHandler(com.rhizospherejs.gwt.client.handlers.SelectionEvent.Handler)">addSelectionHandler</A></B>(<A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A>&nbsp;handler)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adds a <A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.html" title="class in com.rhizospherejs.gwt.client.handlers"><CODE>SelectionEvent</CODE></A> handler.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;void</CODE></FONT></TD> <TD><CODE><B>SelectionEvent.</B><B><A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.html#dispatch(com.rhizospherejs.gwt.client.handlers.SelectionEvent.Handler)">dispatch</A></B>(<A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers">SelectionEvent.Handler</A>&nbsp;handler)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/rhizospherejs/gwt/client/handlers/SelectionEvent.Handler.html" title="interface in com.rhizospherejs.gwt.client.handlers"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?com/rhizospherejs/gwt/client/handlers//class-useSelectionEvent.Handler.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="SelectionEvent.Handler.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
wave-runner/css/materialize.css
roberthchan/wave-runner
/*! * Materialize v0.95.2 (http://materializecss.com) * Copyright 2014-2015 Materialize * MIT License (https://raw.githubusercontent.com/Dogfalo/materialize/master/LICENSE) */ .materialize-red.lighten-5 { background-color: #fdeaeb !important; } .materialize-red-text.text-lighten-5 { color: #fdeaeb !important; } .materialize-red.lighten-4 { background-color: #f8c1c3 !important; } .materialize-red-text.text-lighten-4 { color: #f8c1c3 !important; } .materialize-red.lighten-3 { background-color: #f3989b !important; } .materialize-red-text.text-lighten-3 { color: #f3989b !important; } .materialize-red.lighten-2 { background-color: #ee6e73 !important; } .materialize-red-text.text-lighten-2 { color: #ee6e73 !important; } .materialize-red.lighten-1 { background-color: #ea454b !important; } .materialize-red-text.text-lighten-1 { color: #ea454b !important; } .materialize-red { background-color: #e51c23 !important; } .materialize-red-text { color: #e51c23 !important; } .materialize-red.darken-1 { background-color: #d0181e !important; } .materialize-red-text.text-darken-1 { color: #d0181e !important; } .materialize-red.darken-2 { background-color: #b9151b !important; } .materialize-red-text.text-darken-2 { color: #b9151b !important; } .materialize-red.darken-3 { background-color: #a21318 !important; } .materialize-red-text.text-darken-3 { color: #a21318 !important; } .materialize-red.darken-4 { background-color: #8b1014 !important; } .materialize-red-text.text-darken-4 { color: #8b1014 !important; } .red.lighten-5 { background-color: #FFEBEE !important; } .red-text.text-lighten-5 { color: #FFEBEE !important; } .red.lighten-4 { background-color: #FFCDD2 !important; } .red-text.text-lighten-4 { color: #FFCDD2 !important; } .red.lighten-3 { background-color: #EF9A9A !important; } .red-text.text-lighten-3 { color: #EF9A9A !important; } .red.lighten-2 { background-color: #E57373 !important; } .red-text.text-lighten-2 { color: #E57373 !important; } .red.lighten-1 { background-color: #EF5350 !important; } .red-text.text-lighten-1 { color: #EF5350 !important; } .red { background-color: #F44336 !important; } .red-text { color: #F44336 !important; } .red.darken-1 { background-color: #E53935 !important; } .red-text.text-darken-1 { color: #E53935 !important; } .red.darken-2 { background-color: #D32F2F !important; } .red-text.text-darken-2 { color: #D32F2F !important; } .red.darken-3 { background-color: #C62828 !important; } .red-text.text-darken-3 { color: #C62828 !important; } .red.darken-4 { background-color: #B71C1C !important; } .red-text.text-darken-4 { color: #B71C1C !important; } .red.accent-1 { background-color: #FF8A80 !important; } .red-text.text-accent-1 { color: #FF8A80 !important; } .red.accent-2 { background-color: #FF5252 !important; } .red-text.text-accent-2 { color: #FF5252 !important; } .red.accent-3 { background-color: #FF1744 !important; } .red-text.text-accent-3 { color: #FF1744 !important; } .red.accent-4 { background-color: #D50000 !important; } .red-text.text-accent-4 { color: #D50000 !important; } .pink.lighten-5 { background-color: #fce4ec !important; } .pink-text.text-lighten-5 { color: #fce4ec !important; } .pink.lighten-4 { background-color: #f8bbd0 !important; } .pink-text.text-lighten-4 { color: #f8bbd0 !important; } .pink.lighten-3 { background-color: #f48fb1 !important; } .pink-text.text-lighten-3 { color: #f48fb1 !important; } .pink.lighten-2 { background-color: #f06292 !important; } .pink-text.text-lighten-2 { color: #f06292 !important; } .pink.lighten-1 { background-color: #ec407a !important; } .pink-text.text-lighten-1 { color: #ec407a !important; } .pink { background-color: #e91e63 !important; } .pink-text { color: #e91e63 !important; } .pink.darken-1 { background-color: #d81b60 !important; } .pink-text.text-darken-1 { color: #d81b60 !important; } .pink.darken-2 { background-color: #c2185b !important; } .pink-text.text-darken-2 { color: #c2185b !important; } .pink.darken-3 { background-color: #ad1457 !important; } .pink-text.text-darken-3 { color: #ad1457 !important; } .pink.darken-4 { background-color: #880e4f !important; } .pink-text.text-darken-4 { color: #880e4f !important; } .pink.accent-1 { background-color: #ff80ab !important; } .pink-text.text-accent-1 { color: #ff80ab !important; } .pink.accent-2 { background-color: #ff4081 !important; } .pink-text.text-accent-2 { color: #ff4081 !important; } .pink.accent-3 { background-color: #f50057 !important; } .pink-text.text-accent-3 { color: #f50057 !important; } .pink.accent-4 { background-color: #c51162 !important; } .pink-text.text-accent-4 { color: #c51162 !important; } .purple.lighten-5 { background-color: #f3e5f5 !important; } .purple-text.text-lighten-5 { color: #f3e5f5 !important; } .purple.lighten-4 { background-color: #e1bee7 !important; } .purple-text.text-lighten-4 { color: #e1bee7 !important; } .purple.lighten-3 { background-color: #ce93d8 !important; } .purple-text.text-lighten-3 { color: #ce93d8 !important; } .purple.lighten-2 { background-color: #ba68c8 !important; } .purple-text.text-lighten-2 { color: #ba68c8 !important; } .purple.lighten-1 { background-color: #ab47bc !important; } .purple-text.text-lighten-1 { color: #ab47bc !important; } .purple { background-color: #9c27b0 !important; } .purple-text { color: #9c27b0 !important; } .purple.darken-1 { background-color: #8e24aa !important; } .purple-text.text-darken-1 { color: #8e24aa !important; } .purple.darken-2 { background-color: #7b1fa2 !important; } .purple-text.text-darken-2 { color: #7b1fa2 !important; } .purple.darken-3 { background-color: #6a1b9a !important; } .purple-text.text-darken-3 { color: #6a1b9a !important; } .purple.darken-4 { background-color: #4a148c !important; } .purple-text.text-darken-4 { color: #4a148c !important; } .purple.accent-1 { background-color: #ea80fc !important; } .purple-text.text-accent-1 { color: #ea80fc !important; } .purple.accent-2 { background-color: #e040fb !important; } .purple-text.text-accent-2 { color: #e040fb !important; } .purple.accent-3 { background-color: #d500f9 !important; } .purple-text.text-accent-3 { color: #d500f9 !important; } .purple.accent-4 { background-color: #aa00ff !important; } .purple-text.text-accent-4 { color: #aa00ff !important; } .deep-purple.lighten-5 { background-color: #ede7f6 !important; } .deep-purple-text.text-lighten-5 { color: #ede7f6 !important; } .deep-purple.lighten-4 { background-color: #d1c4e9 !important; } .deep-purple-text.text-lighten-4 { color: #d1c4e9 !important; } .deep-purple.lighten-3 { background-color: #b39ddb !important; } .deep-purple-text.text-lighten-3 { color: #b39ddb !important; } .deep-purple.lighten-2 { background-color: #9575cd !important; } .deep-purple-text.text-lighten-2 { color: #9575cd !important; } .deep-purple.lighten-1 { background-color: #7e57c2 !important; } .deep-purple-text.text-lighten-1 { color: #7e57c2 !important; } .deep-purple { background-color: #673ab7 !important; } .deep-purple-text { color: #673ab7 !important; } .deep-purple.darken-1 { background-color: #5e35b1 !important; } .deep-purple-text.text-darken-1 { color: #5e35b1 !important; } .deep-purple.darken-2 { background-color: #512da8 !important; } .deep-purple-text.text-darken-2 { color: #512da8 !important; } .deep-purple.darken-3 { background-color: #4527a0 !important; } .deep-purple-text.text-darken-3 { color: #4527a0 !important; } .deep-purple.darken-4 { background-color: #311b92 !important; } .deep-purple-text.text-darken-4 { color: #311b92 !important; } .deep-purple.accent-1 { background-color: #b388ff !important; } .deep-purple-text.text-accent-1 { color: #b388ff !important; } .deep-purple.accent-2 { background-color: #7c4dff !important; } .deep-purple-text.text-accent-2 { color: #7c4dff !important; } .deep-purple.accent-3 { background-color: #651fff !important; } .deep-purple-text.text-accent-3 { color: #651fff !important; } .deep-purple.accent-4 { background-color: #6200ea !important; } .deep-purple-text.text-accent-4 { color: #6200ea !important; } .indigo.lighten-5 { background-color: #e8eaf6 !important; } .indigo-text.text-lighten-5 { color: #e8eaf6 !important; } .indigo.lighten-4 { background-color: #c5cae9 !important; } .indigo-text.text-lighten-4 { color: #c5cae9 !important; } .indigo.lighten-3 { background-color: #9fa8da !important; } .indigo-text.text-lighten-3 { color: #9fa8da !important; } .indigo.lighten-2 { background-color: #7986cb !important; } .indigo-text.text-lighten-2 { color: #7986cb !important; } .indigo.lighten-1 { background-color: #5c6bc0 !important; } .indigo-text.text-lighten-1 { color: #5c6bc0 !important; } .indigo { background-color: #3f51b5 !important; } .indigo-text { color: #3f51b5 !important; } .indigo.darken-1 { background-color: #3949ab !important; } .indigo-text.text-darken-1 { color: #3949ab !important; } .indigo.darken-2 { background-color: #303f9f !important; } .indigo-text.text-darken-2 { color: #303f9f !important; } .indigo.darken-3 { background-color: #283593 !important; } .indigo-text.text-darken-3 { color: #283593 !important; } .indigo.darken-4 { background-color: #1a237e !important; } .indigo-text.text-darken-4 { color: #1a237e !important; } .indigo.accent-1 { background-color: #8c9eff !important; } .indigo-text.text-accent-1 { color: #8c9eff !important; } .indigo.accent-2 { background-color: #536dfe !important; } .indigo-text.text-accent-2 { color: #536dfe !important; } .indigo.accent-3 { background-color: #3d5afe !important; } .indigo-text.text-accent-3 { color: #3d5afe !important; } .indigo.accent-4 { background-color: #304ffe !important; } .indigo-text.text-accent-4 { color: #304ffe !important; } .blue.lighten-5 { background-color: #E3F2FD !important; } .blue-text.text-lighten-5 { color: #E3F2FD !important; } .blue.lighten-4 { background-color: #BBDEFB !important; } .blue-text.text-lighten-4 { color: #BBDEFB !important; } .blue.lighten-3 { background-color: #90CAF9 !important; } .blue-text.text-lighten-3 { color: #90CAF9 !important; } .blue.lighten-2 { background-color: #64B5F6 !important; } .blue-text.text-lighten-2 { color: #64B5F6 !important; } .blue.lighten-1 { background-color: #42A5F5 !important; } .blue-text.text-lighten-1 { color: #42A5F5 !important; } .blue { background-color: #2196F3 !important; } .blue-text { color: #2196F3 !important; } .blue.darken-1 { background-color: #1E88E5 !important; } .blue-text.text-darken-1 { color: #1E88E5 !important; } .blue.darken-2 { background-color: #1976D2 !important; } .blue-text.text-darken-2 { color: #1976D2 !important; } .blue.darken-3 { background-color: #1565C0 !important; } .blue-text.text-darken-3 { color: #1565C0 !important; } .blue.darken-4 { background-color: #0D47A1 !important; } .blue-text.text-darken-4 { color: #0D47A1 !important; } .blue.accent-1 { background-color: #82B1FF !important; } .blue-text.text-accent-1 { color: #82B1FF !important; } .blue.accent-2 { background-color: #448AFF !important; } .blue-text.text-accent-2 { color: #448AFF !important; } .blue.accent-3 { background-color: #2979FF !important; } .blue-text.text-accent-3 { color: #2979FF !important; } .blue.accent-4 { background-color: #2962FF !important; } .blue-text.text-accent-4 { color: #2962FF !important; } .light-blue.lighten-5 { background-color: #e1f5fe !important; } .light-blue-text.text-lighten-5 { color: #e1f5fe !important; } .light-blue.lighten-4 { background-color: #b3e5fc !important; } .light-blue-text.text-lighten-4 { color: #b3e5fc !important; } .light-blue.lighten-3 { background-color: #81d4fa !important; } .light-blue-text.text-lighten-3 { color: #81d4fa !important; } .light-blue.lighten-2 { background-color: #4fc3f7 !important; } .light-blue-text.text-lighten-2 { color: #4fc3f7 !important; } .light-blue.lighten-1 { background-color: #29b6f6 !important; } .light-blue-text.text-lighten-1 { color: #29b6f6 !important; } .light-blue { background-color: #03a9f4 !important; } .light-blue-text { color: #03a9f4 !important; } .light-blue.darken-1 { background-color: #039be5 !important; } .light-blue-text.text-darken-1 { color: #039be5 !important; } .light-blue.darken-2 { background-color: #0288d1 !important; } .light-blue-text.text-darken-2 { color: #0288d1 !important; } .light-blue.darken-3 { background-color: #0277bd !important; } .light-blue-text.text-darken-3 { color: #0277bd !important; } .light-blue.darken-4 { background-color: #01579b !important; } .light-blue-text.text-darken-4 { color: #01579b !important; } .light-blue.accent-1 { background-color: #80d8ff !important; } .light-blue-text.text-accent-1 { color: #80d8ff !important; } .light-blue.accent-2 { background-color: #40c4ff !important; } .light-blue-text.text-accent-2 { color: #40c4ff !important; } .light-blue.accent-3 { background-color: #00b0ff !important; } .light-blue-text.text-accent-3 { color: #00b0ff !important; } .light-blue.accent-4 { background-color: #0091ea !important; } .light-blue-text.text-accent-4 { color: #0091ea !important; } .cyan.lighten-5 { background-color: #e0f7fa !important; } .cyan-text.text-lighten-5 { color: #e0f7fa !important; } .cyan.lighten-4 { background-color: #b2ebf2 !important; } .cyan-text.text-lighten-4 { color: #b2ebf2 !important; } .cyan.lighten-3 { background-color: #80deea !important; } .cyan-text.text-lighten-3 { color: #80deea !important; } .cyan.lighten-2 { background-color: #4dd0e1 !important; } .cyan-text.text-lighten-2 { color: #4dd0e1 !important; } .cyan.lighten-1 { background-color: #26c6da !important; } .cyan-text.text-lighten-1 { color: #26c6da !important; } .cyan { background-color: #00bcd4 !important; } .cyan-text { color: #00bcd4 !important; } .cyan.darken-1 { background-color: #00acc1 !important; } .cyan-text.text-darken-1 { color: #00acc1 !important; } .cyan.darken-2 { background-color: #0097a7 !important; } .cyan-text.text-darken-2 { color: #0097a7 !important; } .cyan.darken-3 { background-color: #00838f !important; } .cyan-text.text-darken-3 { color: #00838f !important; } .cyan.darken-4 { background-color: #006064 !important; } .cyan-text.text-darken-4 { color: #006064 !important; } .cyan.accent-1 { background-color: #84ffff !important; } .cyan-text.text-accent-1 { color: #84ffff !important; } .cyan.accent-2 { background-color: #18ffff !important; } .cyan-text.text-accent-2 { color: #18ffff !important; } .cyan.accent-3 { background-color: #00e5ff !important; } .cyan-text.text-accent-3 { color: #00e5ff !important; } .cyan.accent-4 { background-color: #00b8d4 !important; } .cyan-text.text-accent-4 { color: #00b8d4 !important; } .teal.lighten-5 { background-color: #e0f2f1 !important; } .teal-text.text-lighten-5 { color: #e0f2f1 !important; } .teal.lighten-4 { background-color: #b2dfdb !important; } .teal-text.text-lighten-4 { color: #b2dfdb !important; } .teal.lighten-3 { background-color: #80cbc4 !important; } .teal-text.text-lighten-3 { color: #80cbc4 !important; } .teal.lighten-2 { background-color: #4db6ac !important; } .teal-text.text-lighten-2 { color: #4db6ac !important; } .teal.lighten-1 { background-color: #26a69a !important; } .teal-text.text-lighten-1 { color: #26a69a !important; } .teal { background-color: #009688 !important; } .teal-text { color: #009688 !important; } .teal.darken-1 { background-color: #00897b !important; } .teal-text.text-darken-1 { color: #00897b !important; } .teal.darken-2 { background-color: #00796b !important; } .teal-text.text-darken-2 { color: #00796b !important; } .teal.darken-3 { background-color: #00695c !important; } .teal-text.text-darken-3 { color: #00695c !important; } .teal.darken-4 { background-color: #004d40 !important; } .teal-text.text-darken-4 { color: #004d40 !important; } .teal.accent-1 { background-color: #a7ffeb !important; } .teal-text.text-accent-1 { color: #a7ffeb !important; } .teal.accent-2 { background-color: #64ffda !important; } .teal-text.text-accent-2 { color: #64ffda !important; } .teal.accent-3 { background-color: #1de9b6 !important; } .teal-text.text-accent-3 { color: #1de9b6 !important; } .teal.accent-4 { background-color: #00bfa5 !important; } .teal-text.text-accent-4 { color: #00bfa5 !important; } .green.lighten-5 { background-color: #E8F5E9 !important; } .green-text.text-lighten-5 { color: #E8F5E9 !important; } .green.lighten-4 { background-color: #C8E6C9 !important; } .green-text.text-lighten-4 { color: #C8E6C9 !important; } .green.lighten-3 { background-color: #A5D6A7 !important; } .green-text.text-lighten-3 { color: #A5D6A7 !important; } .green.lighten-2 { background-color: #81C784 !important; } .green-text.text-lighten-2 { color: #81C784 !important; } .green.lighten-1 { background-color: #66BB6A !important; } .green-text.text-lighten-1 { color: #66BB6A !important; } .green { background-color: #4CAF50 !important; } .green-text { color: #4CAF50 !important; } .green.darken-1 { background-color: #43A047 !important; } .green-text.text-darken-1 { color: #43A047 !important; } .green.darken-2 { background-color: #388E3C !important; } .green-text.text-darken-2 { color: #388E3C !important; } .green.darken-3 { background-color: #2E7D32 !important; } .green-text.text-darken-3 { color: #2E7D32 !important; } .green.darken-4 { background-color: #1B5E20 !important; } .green-text.text-darken-4 { color: #1B5E20 !important; } .green.accent-1 { background-color: #B9F6CA !important; } .green-text.text-accent-1 { color: #B9F6CA !important; } .green.accent-2 { background-color: #69F0AE !important; } .green-text.text-accent-2 { color: #69F0AE !important; } .green.accent-3 { background-color: #00E676 !important; } .green-text.text-accent-3 { color: #00E676 !important; } .green.accent-4 { background-color: #00C853 !important; } .green-text.text-accent-4 { color: #00C853 !important; } .light-green.lighten-5 { background-color: #f1f8e9 !important; } .light-green-text.text-lighten-5 { color: #f1f8e9 !important; } .light-green.lighten-4 { background-color: #dcedc8 !important; } .light-green-text.text-lighten-4 { color: #dcedc8 !important; } .light-green.lighten-3 { background-color: #c5e1a5 !important; } .light-green-text.text-lighten-3 { color: #c5e1a5 !important; } .light-green.lighten-2 { background-color: #aed581 !important; } .light-green-text.text-lighten-2 { color: #aed581 !important; } .light-green.lighten-1 { background-color: #9ccc65 !important; } .light-green-text.text-lighten-1 { color: #9ccc65 !important; } .light-green { background-color: #8bc34a !important; } .light-green-text { color: #8bc34a !important; } .light-green.darken-1 { background-color: #7cb342 !important; } .light-green-text.text-darken-1 { color: #7cb342 !important; } .light-green.darken-2 { background-color: #689f38 !important; } .light-green-text.text-darken-2 { color: #689f38 !important; } .light-green.darken-3 { background-color: #558b2f !important; } .light-green-text.text-darken-3 { color: #558b2f !important; } .light-green.darken-4 { background-color: #33691e !important; } .light-green-text.text-darken-4 { color: #33691e !important; } .light-green.accent-1 { background-color: #ccff90 !important; } .light-green-text.text-accent-1 { color: #ccff90 !important; } .light-green.accent-2 { background-color: #b2ff59 !important; } .light-green-text.text-accent-2 { color: #b2ff59 !important; } .light-green.accent-3 { background-color: #76ff03 !important; } .light-green-text.text-accent-3 { color: #76ff03 !important; } .light-green.accent-4 { background-color: #64dd17 !important; } .light-green-text.text-accent-4 { color: #64dd17 !important; } .lime.lighten-5 { background-color: #f9fbe7 !important; } .lime-text.text-lighten-5 { color: #f9fbe7 !important; } .lime.lighten-4 { background-color: #f0f4c3 !important; } .lime-text.text-lighten-4 { color: #f0f4c3 !important; } .lime.lighten-3 { background-color: #e6ee9c !important; } .lime-text.text-lighten-3 { color: #e6ee9c !important; } .lime.lighten-2 { background-color: #dce775 !important; } .lime-text.text-lighten-2 { color: #dce775 !important; } .lime.lighten-1 { background-color: #d4e157 !important; } .lime-text.text-lighten-1 { color: #d4e157 !important; } .lime { background-color: #cddc39 !important; } .lime-text { color: #cddc39 !important; } .lime.darken-1 { background-color: #c0ca33 !important; } .lime-text.text-darken-1 { color: #c0ca33 !important; } .lime.darken-2 { background-color: #afb42b !important; } .lime-text.text-darken-2 { color: #afb42b !important; } .lime.darken-3 { background-color: #9e9d24 !important; } .lime-text.text-darken-3 { color: #9e9d24 !important; } .lime.darken-4 { background-color: #827717 !important; } .lime-text.text-darken-4 { color: #827717 !important; } .lime.accent-1 { background-color: #f4ff81 !important; } .lime-text.text-accent-1 { color: #f4ff81 !important; } .lime.accent-2 { background-color: #eeff41 !important; } .lime-text.text-accent-2 { color: #eeff41 !important; } .lime.accent-3 { background-color: #c6ff00 !important; } .lime-text.text-accent-3 { color: #c6ff00 !important; } .lime.accent-4 { background-color: #aeea00 !important; } .lime-text.text-accent-4 { color: #aeea00 !important; } .yellow.lighten-5 { background-color: #fffde7 !important; } .yellow-text.text-lighten-5 { color: #fffde7 !important; } .yellow.lighten-4 { background-color: #fff9c4 !important; } .yellow-text.text-lighten-4 { color: #fff9c4 !important; } .yellow.lighten-3 { background-color: #fff59d !important; } .yellow-text.text-lighten-3 { color: #fff59d !important; } .yellow.lighten-2 { background-color: #fff176 !important; } .yellow-text.text-lighten-2 { color: #fff176 !important; } .yellow.lighten-1 { background-color: #ffee58 !important; } .yellow-text.text-lighten-1 { color: #ffee58 !important; } .yellow { background-color: #ffeb3b !important; } .yellow-text { color: #ffeb3b !important; } .yellow.darken-1 { background-color: #fdd835 !important; } .yellow-text.text-darken-1 { color: #fdd835 !important; } .yellow.darken-2 { background-color: #fbc02d !important; } .yellow-text.text-darken-2 { color: #fbc02d !important; } .yellow.darken-3 { background-color: #f9a825 !important; } .yellow-text.text-darken-3 { color: #f9a825 !important; } .yellow.darken-4 { background-color: #f57f17 !important; } .yellow-text.text-darken-4 { color: #f57f17 !important; } .yellow.accent-1 { background-color: #ffff8d !important; } .yellow-text.text-accent-1 { color: #ffff8d !important; } .yellow.accent-2 { background-color: #ffff00 !important; } .yellow-text.text-accent-2 { color: #ffff00 !important; } .yellow.accent-3 { background-color: #ffea00 !important; } .yellow-text.text-accent-3 { color: #ffea00 !important; } .yellow.accent-4 { background-color: #ffd600 !important; } .yellow-text.text-accent-4 { color: #ffd600 !important; } .amber.lighten-5 { background-color: #fff8e1 !important; } .amber-text.text-lighten-5 { color: #fff8e1 !important; } .amber.lighten-4 { background-color: #ffecb3 !important; } .amber-text.text-lighten-4 { color: #ffecb3 !important; } .amber.lighten-3 { background-color: #ffe082 !important; } .amber-text.text-lighten-3 { color: #ffe082 !important; } .amber.lighten-2 { background-color: #ffd54f !important; } .amber-text.text-lighten-2 { color: #ffd54f !important; } .amber.lighten-1 { background-color: #ffca28 !important; } .amber-text.text-lighten-1 { color: #ffca28 !important; } .amber { background-color: #ffc107 !important; } .amber-text { color: #ffc107 !important; } .amber.darken-1 { background-color: #ffb300 !important; } .amber-text.text-darken-1 { color: #ffb300 !important; } .amber.darken-2 { background-color: #ffa000 !important; } .amber-text.text-darken-2 { color: #ffa000 !important; } .amber.darken-3 { background-color: #ff8f00 !important; } .amber-text.text-darken-3 { color: #ff8f00 !important; } .amber.darken-4 { background-color: #ff6f00 !important; } .amber-text.text-darken-4 { color: #ff6f00 !important; } .amber.accent-1 { background-color: #ffe57f !important; } .amber-text.text-accent-1 { color: #ffe57f !important; } .amber.accent-2 { background-color: #ffd740 !important; } .amber-text.text-accent-2 { color: #ffd740 !important; } .amber.accent-3 { background-color: #ffc400 !important; } .amber-text.text-accent-3 { color: #ffc400 !important; } .amber.accent-4 { background-color: #ffab00 !important; } .amber-text.text-accent-4 { color: #ffab00 !important; } .orange.lighten-5 { background-color: #fff3e0 !important; } .orange-text.text-lighten-5 { color: #fff3e0 !important; } .orange.lighten-4 { background-color: #ffe0b2 !important; } .orange-text.text-lighten-4 { color: #ffe0b2 !important; } .orange.lighten-3 { background-color: #ffcc80 !important; } .orange-text.text-lighten-3 { color: #ffcc80 !important; } .orange.lighten-2 { background-color: #ffb74d !important; } .orange-text.text-lighten-2 { color: #ffb74d !important; } .orange.lighten-1 { background-color: #ffa726 !important; } .orange-text.text-lighten-1 { color: #ffa726 !important; } .orange { background-color: #ff9800 !important; } .orange-text { color: #ff9800 !important; } .orange.darken-1 { background-color: #fb8c00 !important; } .orange-text.text-darken-1 { color: #fb8c00 !important; } .orange.darken-2 { background-color: #f57c00 !important; } .orange-text.text-darken-2 { color: #f57c00 !important; } .orange.darken-3 { background-color: #ef6c00 !important; } .orange-text.text-darken-3 { color: #ef6c00 !important; } .orange.darken-4 { background-color: #e65100 !important; } .orange-text.text-darken-4 { color: #e65100 !important; } .orange.accent-1 { background-color: #ffd180 !important; } .orange-text.text-accent-1 { color: #ffd180 !important; } .orange.accent-2 { background-color: #ffab40 !important; } .orange-text.text-accent-2 { color: #ffab40 !important; } .orange.accent-3 { background-color: #ff9100 !important; } .orange-text.text-accent-3 { color: #ff9100 !important; } .orange.accent-4 { background-color: #ff6d00 !important; } .orange-text.text-accent-4 { color: #ff6d00 !important; } .deep-orange.lighten-5 { background-color: #fbe9e7 !important; } .deep-orange-text.text-lighten-5 { color: #fbe9e7 !important; } .deep-orange.lighten-4 { background-color: #ffccbc !important; } .deep-orange-text.text-lighten-4 { color: #ffccbc !important; } .deep-orange.lighten-3 { background-color: #ffab91 !important; } .deep-orange-text.text-lighten-3 { color: #ffab91 !important; } .deep-orange.lighten-2 { background-color: #ff8a65 !important; } .deep-orange-text.text-lighten-2 { color: #ff8a65 !important; } .deep-orange.lighten-1 { background-color: #ff7043 !important; } .deep-orange-text.text-lighten-1 { color: #ff7043 !important; } .deep-orange { background-color: #ff5722 !important; } .deep-orange-text { color: #ff5722 !important; } .deep-orange.darken-1 { background-color: #f4511e !important; } .deep-orange-text.text-darken-1 { color: #f4511e !important; } .deep-orange.darken-2 { background-color: #e64a19 !important; } .deep-orange-text.text-darken-2 { color: #e64a19 !important; } .deep-orange.darken-3 { background-color: #d84315 !important; } .deep-orange-text.text-darken-3 { color: #d84315 !important; } .deep-orange.darken-4 { background-color: #bf360c !important; } .deep-orange-text.text-darken-4 { color: #bf360c !important; } .deep-orange.accent-1 { background-color: #ff9e80 !important; } .deep-orange-text.text-accent-1 { color: #ff9e80 !important; } .deep-orange.accent-2 { background-color: #ff6e40 !important; } .deep-orange-text.text-accent-2 { color: #ff6e40 !important; } .deep-orange.accent-3 { background-color: #ff3d00 !important; } .deep-orange-text.text-accent-3 { color: #ff3d00 !important; } .deep-orange.accent-4 { background-color: #dd2c00 !important; } .deep-orange-text.text-accent-4 { color: #dd2c00 !important; } .brown.lighten-5 { background-color: #efebe9 !important; } .brown-text.text-lighten-5 { color: #efebe9 !important; } .brown.lighten-4 { background-color: #d7ccc8 !important; } .brown-text.text-lighten-4 { color: #d7ccc8 !important; } .brown.lighten-3 { background-color: #bcaaa4 !important; } .brown-text.text-lighten-3 { color: #bcaaa4 !important; } .brown.lighten-2 { background-color: #a1887f !important; } .brown-text.text-lighten-2 { color: #a1887f !important; } .brown.lighten-1 { background-color: #8d6e63 !important; } .brown-text.text-lighten-1 { color: #8d6e63 !important; } .brown { background-color: #795548 !important; } .brown-text { color: #795548 !important; } .brown.darken-1 { background-color: #6d4c41 !important; } .brown-text.text-darken-1 { color: #6d4c41 !important; } .brown.darken-2 { background-color: #5d4037 !important; } .brown-text.text-darken-2 { color: #5d4037 !important; } .brown.darken-3 { background-color: #4e342e !important; } .brown-text.text-darken-3 { color: #4e342e !important; } .brown.darken-4 { background-color: #3e2723 !important; } .brown-text.text-darken-4 { color: #3e2723 !important; } .blue-grey.lighten-5 { background-color: #eceff1 !important; } .blue-grey-text.text-lighten-5 { color: #eceff1 !important; } .blue-grey.lighten-4 { background-color: #cfd8dc !important; } .blue-grey-text.text-lighten-4 { color: #cfd8dc !important; } .blue-grey.lighten-3 { background-color: #b0bec5 !important; } .blue-grey-text.text-lighten-3 { color: #b0bec5 !important; } .blue-grey.lighten-2 { background-color: #90a4ae !important; } .blue-grey-text.text-lighten-2 { color: #90a4ae !important; } .blue-grey.lighten-1 { background-color: #78909c !important; } .blue-grey-text.text-lighten-1 { color: #78909c !important; } .blue-grey { background-color: #607d8b !important; } .blue-grey-text { color: #607d8b !important; } .blue-grey.darken-1 { background-color: #546e7a !important; } .blue-grey-text.text-darken-1 { color: #546e7a !important; } .blue-grey.darken-2 { background-color: #455a64 !important; } .blue-grey-text.text-darken-2 { color: #455a64 !important; } .blue-grey.darken-3 { background-color: #37474f !important; } .blue-grey-text.text-darken-3 { color: #37474f !important; } .blue-grey.darken-4 { background-color: #263238 !important; } .blue-grey-text.text-darken-4 { color: #263238 !important; } .grey.lighten-5 { background-color: #fafafa !important; } .grey-text.text-lighten-5 { color: #fafafa !important; } .grey.lighten-4 { background-color: #f5f5f5 !important; } .grey-text.text-lighten-4 { color: #f5f5f5 !important; } .grey.lighten-3 { background-color: #eeeeee !important; } .grey-text.text-lighten-3 { color: #eeeeee !important; } .grey.lighten-2 { background-color: #e0e0e0 !important; } .grey-text.text-lighten-2 { color: #e0e0e0 !important; } .grey.lighten-1 { background-color: #bdbdbd !important; } .grey-text.text-lighten-1 { color: #bdbdbd !important; } .grey { background-color: #9e9e9e !important; } .grey-text { color: #9e9e9e !important; } .grey.darken-1 { background-color: #757575 !important; } .grey-text.text-darken-1 { color: #757575 !important; } .grey.darken-2 { background-color: #616161 !important; } .grey-text.text-darken-2 { color: #616161 !important; } .grey.darken-3 { background-color: #424242 !important; } .grey-text.text-darken-3 { color: #424242 !important; } .grey.darken-4 { background-color: #212121 !important; } .grey-text.text-darken-4 { color: #212121 !important; } .shades.black { background-color: #000000 !important; } .shades-text.text-black { color: #000000 !important; } .shades.white { background-color: #FFFFFF !important; } .shades-text.text-white { color: #FFFFFF !important; } .black { background-color: #000000 !important; } .black-text { color: #000000 !important; } .white { background-color: #FFFFFF !important; } .white-text { color: #FFFFFF !important; } /*** Colors ***/ /*** Badges ***/ /*** Buttons ***/ /*** Cards ***/ /*** Collapsible ***/ /*** Dropdown ***/ /*** Fonts ***/ /*** Forms ***/ /*** Global ***/ /*** Navbar ***/ /*** SideNav ***/ /*** Tabs ***/ /*** Tables ***/ /*** Toasts ***/ /*** Typography ***/ /*** Collections ***/ /* Progress Bar */ /*! normalize.css v3.0.2 | MIT License | git.io/normalize */ /** * 1. Set default font family to sans-serif. * 2. Prevent iOS text size adjust after orientation change, without disabling * user zoom. */ html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } /** * Remove default margin. */ body { margin: 0; } /* HTML5 display definitions ========================================================================== */ /** * Correct `block` display not defined for any HTML5 element in IE 8/9. * Correct `block` display not defined for `details` or `summary` in IE 10/11 * and Firefox. * Correct `block` display not defined for `main` in IE 11. */ article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } /** * 1. Correct `inline-block` display not defined in IE 8/9. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */ audio, canvas, progress, video { display: inline-block; /* 1 */ vertical-align: baseline; /* 2 */ } /** * Prevent modern browsers from displaying `audio` without controls. * Remove excess height in iOS 5 devices. */ audio:not([controls]) { display: none; height: 0; } /** * Address `[hidden]` styling not present in IE 8/9/10. * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. */ [hidden], template { display: none; } /* Links ========================================================================== */ /** * Remove the gray background color from active links in IE 10. */ a { background-color: transparent; } /** * Improve readability when focused and also mouse hovered in all browsers. */ a:active, a:hover { outline: 0; } /* Text-level semantics ========================================================================== */ /** * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */ abbr[title] { border-bottom: 1px dotted; } /** * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */ b, strong { font-weight: bold; } /** * Address styling not present in Safari and Chrome. */ dfn { font-style: italic; } /** * Address variable `h1` font-size and margin within `section` and `article` * contexts in Firefox 4+, Safari, and Chrome. */ h1 { font-size: 2em; margin: 0.67em 0; } /** * Address styling not present in IE 8/9. */ mark { background: #ff0; color: #000; } /** * Address inconsistent and variable font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` affecting `line-height` in all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } /* Embedded content ========================================================================== */ /** * Remove border when inside `a` element in IE 8/9/10. */ img { border: 0; } /** * Correct overflow not hidden in IE 9/10/11. */ svg:not(:root) { overflow: hidden; } /* Grouping content ========================================================================== */ /** * Address margin not present in IE 8/9 and Safari. */ figure { margin: 1em 40px; } /** * Address differences between Firefox and other browsers. */ hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } /** * Contain overflow in all browsers. */ pre { overflow: auto; } /** * Address odd `em`-unit font size rendering in all browsers. */ code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } /* Forms ========================================================================== */ /** * Known limitation: by default, Chrome and Safari on OS X allow very limited * styling of `select`, unless a `border` property is set. */ /** * 1. Correct color not being inherited. * Known issue: affects color of disabled elements. * 2. Correct font properties not being inherited. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */ button, input, optgroup, select, textarea { color: inherit; /* 1 */ font: inherit; /* 2 */ margin: 0; /* 3 */ } /** * Address `overflow` set to `hidden` in IE 8/9/10/11. */ button { overflow: visible; } /** * Address inconsistent `text-transform` inheritance for `button` and `select`. * All other form control elements do not inherit `text-transform` values. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. * Correct `select` style inheritance in Firefox. */ button, select { text-transform: none; } /** * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` * and `video` controls. * 2. Correct inability to style clickable `input` types in iOS. * 3. Improve usability and consistency of cursor style between image-type * `input` and others. */ button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ } /** * Re-set default cursor for disabled elements. */ button[disabled], html input[disabled] { cursor: default; } /** * Remove inner padding and border in Firefox 4+. */ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } /** * Address Firefox 4+ setting `line-height` on `input` using `!important` in * the UA stylesheet. */ input { line-height: normal; } /** * It's recommended that you don't attempt to style these elements. * Firefox's implementation doesn't respect box-sizing, padding, or width. * * 1. Address box sizing set to `content-box` in IE 8/9/10. * 2. Remove excess padding in IE 8/9/10. */ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Fix the cursor style for Chrome's increment/decrement buttons. For certain * `font-size` values of the `input`, it causes the cursor style of the * decrement button to change from `default` to `text`. */ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Address `appearance` set to `searchfield` in Safari and Chrome. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome * (include `-moz` to future-proof). */ input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; } /** * Remove inner padding and search cancel button in Safari and Chrome on OS X. * Safari (but not Chrome) clips the cancel button when the search input has * padding (and `textfield` appearance). */ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * Define consistent border, margin, and padding. */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /** * 1. Correct `color` not being inherited in IE 8/9/10/11. * 2. Remove padding so people aren't caught out if they zero out fieldsets. */ legend { border: 0; /* 1 */ padding: 0; /* 2 */ } /** * Remove default vertical scrollbar in IE 8/9/10/11. */ textarea { overflow: auto; } /** * Don't inherit the `font-weight` (applied by a rule above). * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */ optgroup { font-weight: bold; } /* Tables ========================================================================== */ /** * Remove most spacing between table cells. */ table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; } ul { list-style-type: none; } a { color: #039be5; text-decoration: none; } .valign-wrapper { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-flex-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; } .valign-wrapper .valign { display: block; } ul { padding: 0; } ul li { list-style-type: none; } .clearfix { clear: both; } .z-depth-1, nav, .card-panel, .card, .toast, .btn, .btn-large, .btn-floating, .dropdown-content, .collapsible, ul.side-nav { -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); } .z-depth-1-half, .btn:hover, .btn-large:hover, .btn-floating:hover { -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); -moz-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); } .z-depth-2 { -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); -moz-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); } .z-depth-3 { -webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); -moz-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19); } .z-depth-4, .modal { -webkit-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21); -moz-box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21); box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21); } .z-depth-5 { -webkit-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22); -moz-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22); box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22); } .divider { height: 1px; overflow: hidden; background-color: #e0e0e0; } blockquote { margin: 20px 0; padding-left: 1.5rem; border-left: 5px solid #EF9A9A; } i { line-height: inherit; } i.left { float: left; margin-right: 15px; } i.right { float: right; margin-left: 15px; } i.tiny { font-size: 1rem; } i.small { font-size: 2rem; } i.medium { font-size: 4rem; } i.large { font-size: 6rem; } img.responsive-img, video.responsive-video { max-width: 100%; height: auto; } .parallax-container { position: relative; overflow: hidden; width: 100%;} .parallax { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: -1; } .parallax img { display: none; position: absolute; bottom: 0; width: 100%; } @media only screen and (max-width : 992px) { .parallax-container { height: auto; } .parallax { position: relative; width: 100%; } .parallax img { position: relative; } } .pin-top, .pin-bottom { position: relative; } .pinned { position: fixed !important; } /********************* Transition Classes **********************/ ul.staggered-list li { -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})"; filter: "alpha(opacity=(${iefactor}))"; -moz-opacity: 0; -khtml-opacity: 0; opacity: 0; } .fade-in { -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})"; filter: "alpha(opacity=(${iefactor}))"; -moz-opacity: 0; -khtml-opacity: 0; opacity: 0; transform-origin: 0 50%; } /********************* Media Query Classes **********************/ @media only screen and (max-width : 600px) { .hide-on-small-only, .hide-on-small-and-down { display: none !important; } } @media only screen and (max-width : 992px) { .hide-on-med-and-down { display: none !important; } } @media only screen and (min-width : 601px) { .hide-on-med-and-up { display: none !important; } } @media only screen and (min-width: 600px) and (max-width: 992px) { .hide-on-med-only { display: none !important; } } @media only screen and (min-width : 993px) { .hide-on-large-only { display: none !important; } } @media only screen and (min-width : 993px) { .show-on-large { display: initial !important; } } @media only screen and (min-width: 600px) and (max-width: 992px) { .show-on-medium { display: initial !important; } } @media only screen and (max-width : 600px) { .show-on-small { display: initial !important; } } @media only screen and (min-width : 601px) { .show-on-medium-and-up { display: initial !important; } } @media only screen and (max-width : 992px) { .show-on-medium-and-down { display: initial !important; } } @media only screen and (max-width : 600px) { .center-on-small-only { text-align: center; } } footer.page-footer { margin-top: 20px; padding-top: 20px; background-color: #ee6e73; } footer.page-footer .footer-copyright { overflow: hidden; height: 50px; line-height: 50px; color: rgba(255, 255, 255, 0.8); background-color: rgba(51, 51, 51, 0.08); } table, th, td { border: none; } table { width: 100%; display: table; } table.bordered tr { border-bottom: 1px solid #d0d0d0; } table.striped tbody tr:nth-child(odd) { background-color: #f2f2f2; } table.hoverable tbody tr { -webkit-transition: background-color 0.25s ease; -moz-transition: background-color 0.25s ease; -o-transition: background-color 0.25s ease; -ms-transition: background-color 0.25s ease; transition: background-color 0.25s ease; } table.hoverable tbody tr:hover { background-color: #f2f2f2; } table.centered thead tr th, table.centered tbody tr td { text-align: center; } thead { border-bottom: 1px solid #d0d0d0; } td, th { padding: 15px 5px; display: table-cell; text-align: left; vertical-align: middle; border-radius: 2px; } @media only screen and (max-width : 992px) { table.responsive-table { width: 100%; border-collapse: collapse; border-spacing: 0; display: block; position: relative; /* sort out borders */ } table.responsive-table th, table.responsive-table td { margin: 0; vertical-align: top; } table.responsive-table th { text-align: left; } table.responsive-table thead { display: block; float: left; } table.responsive-table thead tr { display: block; padding: 0 10px 0 0; } table.responsive-table tbody { display: block; width: auto; position: relative; overflow-x: auto; white-space: nowrap; } table.responsive-table tbody tr { display: inline-block; vertical-align: top; } table.responsive-table th { display: block; text-align: right; } table.responsive-table td { display: block; min-height: 1.25em; text-align: left; } table.responsive-table tr { padding: 0 10px; } table.responsive-table thead { border: 0; border-right: 1px solid #d0d0d0; } table.responsive-table.bordered th { border-bottom: 0; border-left: 0; } table.responsive-table.bordered td { border-left: 0; border-right: 0; border-bottom: 0; } table.responsive-table.bordered tr { border: 0; } table.responsive-table.bordered tbody tr { border-right: 1px solid #d0d0d0; } } .collection { background-color: #fff; margin: 0.5rem 0 1rem 0; border: 1px solid #e0e0e0; border-radius: 2px; } .collection .collection-item { line-height: 1.5rem; padding: 10px 20px; margin: 0px; border-bottom: 1px solid #e0e0e0; } .collection .collection-item:last-child { border-bottom: none; } .collection .collection-item.active { background-color: #26a69a; color: #eafaf9; } .collection a.collection-item { display: block; -webkit-transition: 0.25s; -moz-transition: 0.25s; -o-transition: 0.25s; -ms-transition: 0.25s; transition: 0.25s; color: #26a69a; } .collection a.collection-item:not(.active):hover { background-color: rgba(0, 0, 0, 0.08); } .collection.with-header .collection-header { border-bottom: 1px solid #e0e0e0; padding: 10px 20px; } .collection.with-header .collection-item { padding-left: 30px; } .collection.pagination { display: inline-block; } .collection.pagination ul { background-color: transparent; font-size: 0; display: inline-block; } .collection.pagination li { display: inline; font-weight: 500; margin: 0px; padding: 0px; font-size: 1rem; } .collection.pagination li a { padding: 0px 5px; } .collection.pagination li.active { background-color: #03a9f4; color: #FFF; } .collection.pagination li:hover { background-color: #e1f5fe; } .secondary-content { float: right; color: #26a69a; } span.badge { min-width: 3rem; padding: 0 6px; text-align: center; font-size: 1rem; line-height: inherit; color: #757575; float: right; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } span.badge.new { font-weight: 300; font-size: 0.8rem; color: #fff; background-color: #26a69a; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; background-clip: padding-box; } span.badge.new:after { content: " new"; } .video-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; } .video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .progress { position: relative; height: 4px; display: block; width: 100%; background-color: #acece6; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; background-clip: padding-box; margin: 0.5rem 0 1rem 0; overflow: hidden; } .progress .determinate { position: absolute; background-color: inherit; top: 0; bottom: 0; background-color: #26a69a; -webkit-transition: width 0.3s linear; -moz-transition: width 0.3s linear; -o-transition: width 0.3s linear; -ms-transition: width 0.3s linear; transition: width 0.3s linear; } .progress .indeterminate { background-color: #26a69a; } .progress .indeterminate:before { content: ''; position: absolute; background-color: inherit; top: 0; left: 0; bottom: 0; will-change: left, right; -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; -moz-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; -ms-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; -o-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; } .progress .indeterminate:after { content: ''; position: absolute; background-color: inherit; top: 0; left: 0; bottom: 0; will-change: left, right; -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; -moz-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; -ms-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; -o-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; -webkit-animation-delay: 1.15s; -moz-animation-delay: 1.15s; -ms-animation-delay: 1.15s; -o-animation-delay: 1.15s; animation-delay: 1.15s; } @-webkit-keyframes indeterminate { 0% { left: -35%; right: 100%; } 60% { left: 100%; right: -90%; } 100% { left: 100%; right: -90%; } } @-moz-keyframes indeterminate { 0% { left: -35%; right: 100%; } 60% { left: 100%; right: -90%; } 100% { left: 100%; right: -90%; } } @keyframes indeterminate { 0% { left: -35%; right: 100%; } 60% { left: 100%; right: -90%; } 100% { left: 100%; right: -90%; } } @-webkit-keyframes indeterminate-short { 0% { left: -200%; right: 100%; } 60% { left: 107%; right: -8%; } 100% { left: 107%; right: -8%; } } @-moz-keyframes indeterminate-short { 0% { left: -200%; right: 100%; } 60% { left: 107%; right: -8%; } 100% { left: 107%; right: -8%; } } @keyframes indeterminate-short { 0% { left: -200%; right: 100%; } 60% { left: 107%; right: -8%; } 100% { left: 107%; right: -8%; } } /******************* Utility Classes *******************/ .left-align { text-align: left; } .right-align { text-align: right; } .center, .center-align { text-align: center; } .left { float: left !important; } .right { float: right !important; } .no-select, input[type=range], input[type=range] + .thumb { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .circle { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; background-clip: padding-box; } .center-block { display: block; margin-left: auto; margin-right: auto; } .truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } @font-face { font-family: "Material-Design-Icons"; src: url("../font/material-design-icons/Material-Design-Icons.eot?-g7cqhn"); src: url("../font/material-design-icons/Material-Design-Icons.eot?#iefix-g7cqhn") format("embedded-opentype"), url("../font/material-design-icons/Material-Design-Icons.woff?-g7cqhn") format("woff"), url("../font/material-design-icons/Material-Design-Icons.ttf?-g7cqhn") format("truetype"), url("../font/material-design-icons/Material-Design-Icons.svg?-g7cqhn#Material-Design-Icons") format("svg"); font-weight: normal; font-style: normal; } [class^="mdi-"], [class*=" mdi-"] { font-family: "Material-Design-Icons"; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .mdi-action-3d-rotation:before { content: "\e600"; } .mdi-action-accessibility:before { content: "\e601"; } .mdi-action-account-balance:before { content: "\e602"; } .mdi-action-account-balance-wallet:before { content: "\e603"; } .mdi-action-account-box:before { content: "\e604"; } .mdi-action-account-child:before { content: "\e605"; } .mdi-action-account-circle:before { content: "\e606"; } .mdi-action-add-shopping-cart:before { content: "\e607"; } .mdi-action-alarm:before { content: "\e608"; } .mdi-action-alarm-add:before { content: "\e609"; } .mdi-action-alarm-off:before { content: "\e60a"; } .mdi-action-alarm-on:before { content: "\e60b"; } .mdi-action-android:before { content: "\e60c"; } .mdi-action-announcement:before { content: "\e60d"; } .mdi-action-aspect-ratio:before { content: "\e60e"; } .mdi-action-assessment:before { content: "\e60f"; } .mdi-action-assignment:before { content: "\e610"; } .mdi-action-assignment-ind:before { content: "\e611"; } .mdi-action-assignment-late:before { content: "\e612"; } .mdi-action-assignment-return:before { content: "\e613"; } .mdi-action-assignment-returned:before { content: "\e614"; } .mdi-action-assignment-turned-in:before { content: "\e615"; } .mdi-action-autorenew:before { content: "\e616"; } .mdi-action-backup:before { content: "\e617"; } .mdi-action-book:before { content: "\e618"; } .mdi-action-bookmark:before { content: "\e619"; } .mdi-action-bookmark-outline:before { content: "\e61a"; } .mdi-action-bug-report:before { content: "\e61b"; } .mdi-action-cached:before { content: "\e61c"; } .mdi-action-class:before { content: "\e61d"; } .mdi-action-credit-card:before { content: "\e61e"; } .mdi-action-dashboard:before { content: "\e61f"; } .mdi-action-delete:before { content: "\e620"; } .mdi-action-description:before { content: "\e621"; } .mdi-action-dns:before { content: "\e622"; } .mdi-action-done:before { content: "\e623"; } .mdi-action-done-all:before { content: "\e624"; } .mdi-action-event:before { content: "\e625"; } .mdi-action-exit-to-app:before { content: "\e626"; } .mdi-action-explore:before { content: "\e627"; } .mdi-action-extension:before { content: "\e628"; } .mdi-action-face-unlock:before { content: "\e629"; } .mdi-action-favorite:before { content: "\e62a"; } .mdi-action-favorite-outline:before { content: "\e62b"; } .mdi-action-find-in-page:before { content: "\e62c"; } .mdi-action-find-replace:before { content: "\e62d"; } .mdi-action-flip-to-back:before { content: "\e62e"; } .mdi-action-flip-to-front:before { content: "\e62f"; } .mdi-action-get-app:before { content: "\e630"; } .mdi-action-grade:before { content: "\e631"; } .mdi-action-group-work:before { content: "\e632"; } .mdi-action-help:before { content: "\e633"; } .mdi-action-highlight-remove:before { content: "\e634"; } .mdi-action-history:before { content: "\e635"; } .mdi-action-home:before { content: "\e636"; } .mdi-action-https:before { content: "\e637"; } .mdi-action-info:before { content: "\e638"; } .mdi-action-info-outline:before { content: "\e639"; } .mdi-action-input:before { content: "\e63a"; } .mdi-action-invert-colors:before { content: "\e63b"; } .mdi-action-label:before { content: "\e63c"; } .mdi-action-label-outline:before { content: "\e63d"; } .mdi-action-language:before { content: "\e63e"; } .mdi-action-launch:before { content: "\e63f"; } .mdi-action-list:before { content: "\e640"; } .mdi-action-lock:before { content: "\e641"; } .mdi-action-lock-open:before { content: "\e642"; } .mdi-action-lock-outline:before { content: "\e643"; } .mdi-action-loyalty:before { content: "\e644"; } .mdi-action-markunread-mailbox:before { content: "\e645"; } .mdi-action-note-add:before { content: "\e646"; } .mdi-action-open-in-browser:before { content: "\e647"; } .mdi-action-open-in-new:before { content: "\e648"; } .mdi-action-open-with:before { content: "\e649"; } .mdi-action-pageview:before { content: "\e64a"; } .mdi-action-payment:before { content: "\e64b"; } .mdi-action-perm-camera-mic:before { content: "\e64c"; } .mdi-action-perm-contact-cal:before { content: "\e64d"; } .mdi-action-perm-data-setting:before { content: "\e64e"; } .mdi-action-perm-device-info:before { content: "\e64f"; } .mdi-action-perm-identity:before { content: "\e650"; } .mdi-action-perm-media:before { content: "\e651"; } .mdi-action-perm-phone-msg:before { content: "\e652"; } .mdi-action-perm-scan-wifi:before { content: "\e653"; } .mdi-action-picture-in-picture:before { content: "\e654"; } .mdi-action-polymer:before { content: "\e655"; } .mdi-action-print:before { content: "\e656"; } .mdi-action-query-builder:before { content: "\e657"; } .mdi-action-question-answer:before { content: "\e658"; } .mdi-action-receipt:before { content: "\e659"; } .mdi-action-redeem:before { content: "\e65a"; } .mdi-action-report-problem:before { content: "\e65b"; } .mdi-action-restore:before { content: "\e65c"; } .mdi-action-room:before { content: "\e65d"; } .mdi-action-schedule:before { content: "\e65e"; } .mdi-action-search:before { content: "\e65f"; } .mdi-action-settings:before { content: "\e660"; } .mdi-action-settings-applications:before { content: "\e661"; } .mdi-action-settings-backup-restore:before { content: "\e662"; } .mdi-action-settings-bluetooth:before { content: "\e663"; } .mdi-action-settings-cell:before { content: "\e664"; } .mdi-action-settings-display:before { content: "\e665"; } .mdi-action-settings-ethernet:before { content: "\e666"; } .mdi-action-settings-input-antenna:before { content: "\e667"; } .mdi-action-settings-input-component:before { content: "\e668"; } .mdi-action-settings-input-composite:before { content: "\e669"; } .mdi-action-settings-input-hdmi:before { content: "\e66a"; } .mdi-action-settings-input-svideo:before { content: "\e66b"; } .mdi-action-settings-overscan:before { content: "\e66c"; } .mdi-action-settings-phone:before { content: "\e66d"; } .mdi-action-settings-power:before { content: "\e66e"; } .mdi-action-settings-remote:before { content: "\e66f"; } .mdi-action-settings-voice:before { content: "\e670"; } .mdi-action-shop:before { content: "\e671"; } .mdi-action-shopping-basket:before { content: "\e672"; } .mdi-action-shopping-cart:before { content: "\e673"; } .mdi-action-shop-two:before { content: "\e674"; } .mdi-action-speaker-notes:before { content: "\e675"; } .mdi-action-spellcheck:before { content: "\e676"; } .mdi-action-star-rate:before { content: "\e677"; } .mdi-action-stars:before { content: "\e678"; } .mdi-action-store:before { content: "\e679"; } .mdi-action-subject:before { content: "\e67a"; } .mdi-action-swap-horiz:before { content: "\e67b"; } .mdi-action-swap-vert:before { content: "\e67c"; } .mdi-action-swap-vert-circle:before { content: "\e67d"; } .mdi-action-system-update-tv:before { content: "\e67e"; } .mdi-action-tab:before { content: "\e67f"; } .mdi-action-tab-unselected:before { content: "\e680"; } .mdi-action-theaters:before { content: "\e681"; } .mdi-action-thumb-down:before { content: "\e682"; } .mdi-action-thumbs-up-down:before { content: "\e683"; } .mdi-action-thumb-up:before { content: "\e684"; } .mdi-action-toc:before { content: "\e685"; } .mdi-action-today:before { content: "\e686"; } .mdi-action-track-changes:before { content: "\e687"; } .mdi-action-translate:before { content: "\e688"; } .mdi-action-trending-down:before { content: "\e689"; } .mdi-action-trending-neutral:before { content: "\e68a"; } .mdi-action-trending-up:before { content: "\e68b"; } .mdi-action-turned-in:before { content: "\e68c"; } .mdi-action-turned-in-not:before { content: "\e68d"; } .mdi-action-verified-user:before { content: "\e68e"; } .mdi-action-view-agenda:before { content: "\e68f"; } .mdi-action-view-array:before { content: "\e690"; } .mdi-action-view-carousel:before { content: "\e691"; } .mdi-action-view-column:before { content: "\e692"; } .mdi-action-view-day:before { content: "\e693"; } .mdi-action-view-headline:before { content: "\e694"; } .mdi-action-view-list:before { content: "\e695"; } .mdi-action-view-module:before { content: "\e696"; } .mdi-action-view-quilt:before { content: "\e697"; } .mdi-action-view-stream:before { content: "\e698"; } .mdi-action-view-week:before { content: "\e699"; } .mdi-action-visibility:before { content: "\e69a"; } .mdi-action-visibility-off:before { content: "\e69b"; } .mdi-action-wallet-giftcard:before { content: "\e69c"; } .mdi-action-wallet-membership:before { content: "\e69d"; } .mdi-action-wallet-travel:before { content: "\e69e"; } .mdi-action-work:before { content: "\e69f"; } .mdi-alert-error:before { content: "\e6a0"; } .mdi-alert-warning:before { content: "\e6a1"; } .mdi-av-album:before { content: "\e6a2"; } .mdi-av-timer:before { content: "\e6a3"; } .mdi-av-closed-caption:before { content: "\e6a4"; } .mdi-av-equalizer:before { content: "\e6a5"; } .mdi-av-explicit:before { content: "\e6a6"; } .mdi-av-fast-forward:before { content: "\e6a7"; } .mdi-av-fast-rewind:before { content: "\e6a8"; } .mdi-av-games:before { content: "\e6a9"; } .mdi-av-hearing:before { content: "\e6aa"; } .mdi-av-high-quality:before { content: "\e6ab"; } .mdi-av-loop:before { content: "\e6ac"; } .mdi-av-mic:before { content: "\e6ad"; } .mdi-av-mic-none:before { content: "\e6ae"; } .mdi-av-mic-off:before { content: "\e6af"; } .mdi-av-movie:before { content: "\e6b0"; } .mdi-av-my-library-add:before { content: "\e6b1"; } .mdi-av-my-library-books:before { content: "\e6b2"; } .mdi-av-my-library-music:before { content: "\e6b3"; } .mdi-av-new-releases:before { content: "\e6b4"; } .mdi-av-not-interested:before { content: "\e6b5"; } .mdi-av-pause:before { content: "\e6b6"; } .mdi-av-pause-circle-fill:before { content: "\e6b7"; } .mdi-av-pause-circle-outline:before { content: "\e6b8"; } .mdi-av-play-arrow:before { content: "\e6b9"; } .mdi-av-play-circle-fill:before { content: "\e6ba"; } .mdi-av-play-circle-outline:before { content: "\e6bb"; } .mdi-av-playlist-add:before { content: "\e6bc"; } .mdi-av-play-shopping-bag:before { content: "\e6bd"; } .mdi-av-queue:before { content: "\e6be"; } .mdi-av-queue-music:before { content: "\e6bf"; } .mdi-av-radio:before { content: "\e6c0"; } .mdi-av-recent-actors:before { content: "\e6c1"; } .mdi-av-repeat:before { content: "\e6c2"; } .mdi-av-repeat-one:before { content: "\e6c3"; } .mdi-av-replay:before { content: "\e6c4"; } .mdi-av-shuffle:before { content: "\e6c5"; } .mdi-av-skip-next:before { content: "\e6c6"; } .mdi-av-skip-previous:before { content: "\e6c7"; } .mdi-av-snooze:before { content: "\e6c8"; } .mdi-av-stop:before { content: "\e6c9"; } .mdi-av-subtitles:before { content: "\e6ca"; } .mdi-av-surround-sound:before { content: "\e6cb"; } .mdi-av-videocam:before { content: "\e6cc"; } .mdi-av-videocam-off:before { content: "\e6cd"; } .mdi-av-video-collection:before { content: "\e6ce"; } .mdi-av-volume-down:before { content: "\e6cf"; } .mdi-av-volume-mute:before { content: "\e6d0"; } .mdi-av-volume-off:before { content: "\e6d1"; } .mdi-av-volume-up:before { content: "\e6d2"; } .mdi-av-web:before { content: "\e6d3"; } .mdi-communication-business:before { content: "\e6d4"; } .mdi-communication-call:before { content: "\e6d5"; } .mdi-communication-call-end:before { content: "\e6d6"; } .mdi-communication-call-made:before { content: "\e6d7"; } .mdi-communication-call-merge:before { content: "\e6d8"; } .mdi-communication-call-missed:before { content: "\e6d9"; } .mdi-communication-call-received:before { content: "\e6da"; } .mdi-communication-call-split:before { content: "\e6db"; } .mdi-communication-chat:before { content: "\e6dc"; } .mdi-communication-clear-all:before { content: "\e6dd"; } .mdi-communication-comment:before { content: "\e6de"; } .mdi-communication-contacts:before { content: "\e6df"; } .mdi-communication-dialer-sip:before { content: "\e6e0"; } .mdi-communication-dialpad:before { content: "\e6e1"; } .mdi-communication-dnd-on:before { content: "\e6e2"; } .mdi-communication-email:before { content: "\e6e3"; } .mdi-communication-forum:before { content: "\e6e4"; } .mdi-communication-import-export:before { content: "\e6e5"; } .mdi-communication-invert-colors-off:before { content: "\e6e6"; } .mdi-communication-invert-colors-on:before { content: "\e6e7"; } .mdi-communication-live-help:before { content: "\e6e8"; } .mdi-communication-location-off:before { content: "\e6e9"; } .mdi-communication-location-on:before { content: "\e6ea"; } .mdi-communication-message:before { content: "\e6eb"; } .mdi-communication-messenger:before { content: "\e6ec"; } .mdi-communication-no-sim:before { content: "\e6ed"; } .mdi-communication-phone:before { content: "\e6ee"; } .mdi-communication-portable-wifi-off:before { content: "\e6ef"; } .mdi-communication-quick-contacts-dialer:before { content: "\e6f0"; } .mdi-communication-quick-contacts-mail:before { content: "\e6f1"; } .mdi-communication-ring-volume:before { content: "\e6f2"; } .mdi-communication-stay-current-landscape:before { content: "\e6f3"; } .mdi-communication-stay-current-portrait:before { content: "\e6f4"; } .mdi-communication-stay-primary-landscape:before { content: "\e6f5"; } .mdi-communication-stay-primary-portrait:before { content: "\e6f6"; } .mdi-communication-swap-calls:before { content: "\e6f7"; } .mdi-communication-textsms:before { content: "\e6f8"; } .mdi-communication-voicemail:before { content: "\e6f9"; } .mdi-communication-vpn-key:before { content: "\e6fa"; } .mdi-content-add:before { content: "\e6fb"; } .mdi-content-add-box:before { content: "\e6fc"; } .mdi-content-add-circle:before { content: "\e6fd"; } .mdi-content-add-circle-outline:before { content: "\e6fe"; } .mdi-content-archive:before { content: "\e6ff"; } .mdi-content-backspace:before { content: "\e700"; } .mdi-content-block:before { content: "\e701"; } .mdi-content-clear:before { content: "\e702"; } .mdi-content-content-copy:before { content: "\e703"; } .mdi-content-content-cut:before { content: "\e704"; } .mdi-content-content-paste:before { content: "\e705"; } .mdi-content-create:before { content: "\e706"; } .mdi-content-drafts:before { content: "\e707"; } .mdi-content-filter-list:before { content: "\e708"; } .mdi-content-flag:before { content: "\e709"; } .mdi-content-forward:before { content: "\e70a"; } .mdi-content-gesture:before { content: "\e70b"; } .mdi-content-inbox:before { content: "\e70c"; } .mdi-content-link:before { content: "\e70d"; } .mdi-content-mail:before { content: "\e70e"; } .mdi-content-markunread:before { content: "\e70f"; } .mdi-content-redo:before { content: "\e710"; } .mdi-content-remove:before { content: "\e711"; } .mdi-content-remove-circle:before { content: "\e712"; } .mdi-content-remove-circle-outline:before { content: "\e713"; } .mdi-content-reply:before { content: "\e714"; } .mdi-content-reply-all:before { content: "\e715"; } .mdi-content-report:before { content: "\e716"; } .mdi-content-save:before { content: "\e717"; } .mdi-content-select-all:before { content: "\e718"; } .mdi-content-send:before { content: "\e719"; } .mdi-content-sort:before { content: "\e71a"; } .mdi-content-text-format:before { content: "\e71b"; } .mdi-content-undo:before { content: "\e71c"; } .mdi-device-access-alarm:before { content: "\e71d"; } .mdi-device-access-alarms:before { content: "\e71e"; } .mdi-device-access-time:before { content: "\e71f"; } .mdi-device-add-alarm:before { content: "\e720"; } .mdi-device-airplanemode-off:before { content: "\e721"; } .mdi-device-airplanemode-on:before { content: "\e722"; } .mdi-device-battery-20:before { content: "\e723"; } .mdi-device-battery-30:before { content: "\e724"; } .mdi-device-battery-50:before { content: "\e725"; } .mdi-device-battery-60:before { content: "\e726"; } .mdi-device-battery-80:before { content: "\e727"; } .mdi-device-battery-90:before { content: "\e728"; } .mdi-device-battery-alert:before { content: "\e729"; } .mdi-device-battery-charging-20:before { content: "\e72a"; } .mdi-device-battery-charging-30:before { content: "\e72b"; } .mdi-device-battery-charging-50:before { content: "\e72c"; } .mdi-device-battery-charging-60:before { content: "\e72d"; } .mdi-device-battery-charging-80:before { content: "\e72e"; } .mdi-device-battery-charging-90:before { content: "\e72f"; } .mdi-device-battery-charging-full:before { content: "\e730"; } .mdi-device-battery-full:before { content: "\e731"; } .mdi-device-battery-std:before { content: "\e732"; } .mdi-device-battery-unknown:before { content: "\e733"; } .mdi-device-bluetooth:before { content: "\e734"; } .mdi-device-bluetooth-connected:before { content: "\e735"; } .mdi-device-bluetooth-disabled:before { content: "\e736"; } .mdi-device-bluetooth-searching:before { content: "\e737"; } .mdi-device-brightness-auto:before { content: "\e738"; } .mdi-device-brightness-high:before { content: "\e739"; } .mdi-device-brightness-low:before { content: "\e73a"; } .mdi-device-brightness-medium:before { content: "\e73b"; } .mdi-device-data-usage:before { content: "\e73c"; } .mdi-device-developer-mode:before { content: "\e73d"; } .mdi-device-devices:before { content: "\e73e"; } .mdi-device-dvr:before { content: "\e73f"; } .mdi-device-gps-fixed:before { content: "\e740"; } .mdi-device-gps-not-fixed:before { content: "\e741"; } .mdi-device-gps-off:before { content: "\e742"; } .mdi-device-location-disabled:before { content: "\e743"; } .mdi-device-location-searching:before { content: "\e744"; } .mdi-device-multitrack-audio:before { content: "\e745"; } .mdi-device-network-cell:before { content: "\e746"; } .mdi-device-network-wifi:before { content: "\e747"; } .mdi-device-nfc:before { content: "\e748"; } .mdi-device-now-wallpaper:before { content: "\e749"; } .mdi-device-now-widgets:before { content: "\e74a"; } .mdi-device-screen-lock-landscape:before { content: "\e74b"; } .mdi-device-screen-lock-portrait:before { content: "\e74c"; } .mdi-device-screen-lock-rotation:before { content: "\e74d"; } .mdi-device-screen-rotation:before { content: "\e74e"; } .mdi-device-sd-storage:before { content: "\e74f"; } .mdi-device-settings-system-daydream:before { content: "\e750"; } .mdi-device-signal-cellular-0-bar:before { content: "\e751"; } .mdi-device-signal-cellular-1-bar:before { content: "\e752"; } .mdi-device-signal-cellular-2-bar:before { content: "\e753"; } .mdi-device-signal-cellular-3-bar:before { content: "\e754"; } .mdi-device-signal-cellular-4-bar:before { content: "\e755"; } .mdi-device-signal-cellular-connected-no-internet-0-bar:before { content: "\e756"; } .mdi-device-signal-cellular-connected-no-internet-1-bar:before { content: "\e757"; } .mdi-device-signal-cellular-connected-no-internet-2-bar:before { content: "\e758"; } .mdi-device-signal-cellular-connected-no-internet-3-bar:before { content: "\e759"; } .mdi-device-signal-cellular-connected-no-internet-4-bar:before { content: "\e75a"; } .mdi-device-signal-cellular-no-sim:before { content: "\e75b"; } .mdi-device-signal-cellular-null:before { content: "\e75c"; } .mdi-device-signal-cellular-off:before { content: "\e75d"; } .mdi-device-signal-wifi-0-bar:before { content: "\e75e"; } .mdi-device-signal-wifi-1-bar:before { content: "\e75f"; } .mdi-device-signal-wifi-2-bar:before { content: "\e760"; } .mdi-device-signal-wifi-3-bar:before { content: "\e761"; } .mdi-device-signal-wifi-4-bar:before { content: "\e762"; } .mdi-device-signal-wifi-off:before { content: "\e763"; } .mdi-device-storage:before { content: "\e764"; } .mdi-device-usb:before { content: "\e765"; } .mdi-device-wifi-lock:before { content: "\e766"; } .mdi-device-wifi-tethering:before { content: "\e767"; } .mdi-editor-attach-file:before { content: "\e768"; } .mdi-editor-attach-money:before { content: "\e769"; } .mdi-editor-border-all:before { content: "\e76a"; } .mdi-editor-border-bottom:before { content: "\e76b"; } .mdi-editor-border-clear:before { content: "\e76c"; } .mdi-editor-border-color:before { content: "\e76d"; } .mdi-editor-border-horizontal:before { content: "\e76e"; } .mdi-editor-border-inner:before { content: "\e76f"; } .mdi-editor-border-left:before { content: "\e770"; } .mdi-editor-border-outer:before { content: "\e771"; } .mdi-editor-border-right:before { content: "\e772"; } .mdi-editor-border-style:before { content: "\e773"; } .mdi-editor-border-top:before { content: "\e774"; } .mdi-editor-border-vertical:before { content: "\e775"; } .mdi-editor-format-align-center:before { content: "\e776"; } .mdi-editor-format-align-justify:before { content: "\e777"; } .mdi-editor-format-align-left:before { content: "\e778"; } .mdi-editor-format-align-right:before { content: "\e779"; } .mdi-editor-format-bold:before { content: "\e77a"; } .mdi-editor-format-clear:before { content: "\e77b"; } .mdi-editor-format-color-fill:before { content: "\e77c"; } .mdi-editor-format-color-reset:before { content: "\e77d"; } .mdi-editor-format-color-text:before { content: "\e77e"; } .mdi-editor-format-indent-decrease:before { content: "\e77f"; } .mdi-editor-format-indent-increase:before { content: "\e780"; } .mdi-editor-format-italic:before { content: "\e781"; } .mdi-editor-format-line-spacing:before { content: "\e782"; } .mdi-editor-format-list-bulleted:before { content: "\e783"; } .mdi-editor-format-list-numbered:before { content: "\e784"; } .mdi-editor-format-paint:before { content: "\e785"; } .mdi-editor-format-quote:before { content: "\e786"; } .mdi-editor-format-size:before { content: "\e787"; } .mdi-editor-format-strikethrough:before { content: "\e788"; } .mdi-editor-functions:before { content: "\e789"; } .mdi-editor-format-textdirection-l-to-r:before { content: "\e78a"; } .mdi-editor-format-underline:before { content: "\e78b"; } .mdi-editor-format-textdirection-r-to-l:before { content: "\e78c"; } .mdi-editor-insert-chart:before { content: "\e78d"; } .mdi-editor-insert-comment:before { content: "\e78e"; } .mdi-editor-insert-drive-file:before { content: "\e78f"; } .mdi-editor-insert-emoticon:before { content: "\e790"; } .mdi-editor-insert-invitation:before { content: "\e791"; } .mdi-editor-insert-link:before { content: "\e792"; } .mdi-editor-insert-photo:before { content: "\e793"; } .mdi-editor-merge-type:before { content: "\e794"; } .mdi-editor-mode-comment:before { content: "\e795"; } .mdi-editor-mode-edit:before { content: "\e796"; } .mdi-editor-publish:before { content: "\e797"; } .mdi-editor-vertical-align-bottom:before { content: "\e798"; } .mdi-editor-vertical-align-center:before { content: "\e799"; } .mdi-editor-vertical-align-top:before { content: "\e79a"; } .mdi-editor-wrap-text:before { content: "\e79b"; } .mdi-file-attachment:before { content: "\e79c"; } .mdi-file-cloud:before { content: "\e79d"; } .mdi-file-cloud-circle:before { content: "\e79e"; } .mdi-file-cloud-done:before { content: "\e79f"; } .mdi-file-cloud-download:before { content: "\e7a0"; } .mdi-file-cloud-off:before { content: "\e7a1"; } .mdi-file-cloud-queue:before { content: "\e7a2"; } .mdi-file-cloud-upload:before { content: "\e7a3"; } .mdi-file-file-download:before { content: "\e7a4"; } .mdi-file-file-upload:before { content: "\e7a5"; } .mdi-file-folder:before { content: "\e7a6"; } .mdi-file-folder-open:before { content: "\e7a7"; } .mdi-file-folder-shared:before { content: "\e7a8"; } .mdi-hardware-cast:before { content: "\e7a9"; } .mdi-hardware-cast-connected:before { content: "\e7aa"; } .mdi-hardware-computer:before { content: "\e7ab"; } .mdi-hardware-desktop-mac:before { content: "\e7ac"; } .mdi-hardware-desktop-windows:before { content: "\e7ad"; } .mdi-hardware-dock:before { content: "\e7ae"; } .mdi-hardware-gamepad:before { content: "\e7af"; } .mdi-hardware-headset:before { content: "\e7b0"; } .mdi-hardware-headset-mic:before { content: "\e7b1"; } .mdi-hardware-keyboard:before { content: "\e7b2"; } .mdi-hardware-keyboard-alt:before { content: "\e7b3"; } .mdi-hardware-keyboard-arrow-down:before { content: "\e7b4"; } .mdi-hardware-keyboard-arrow-left:before { content: "\e7b5"; } .mdi-hardware-keyboard-arrow-right:before { content: "\e7b6"; } .mdi-hardware-keyboard-arrow-up:before { content: "\e7b7"; } .mdi-hardware-keyboard-backspace:before { content: "\e7b8"; } .mdi-hardware-keyboard-capslock:before { content: "\e7b9"; } .mdi-hardware-keyboard-control:before { content: "\e7ba"; } .mdi-hardware-keyboard-hide:before { content: "\e7bb"; } .mdi-hardware-keyboard-return:before { content: "\e7bc"; } .mdi-hardware-keyboard-tab:before { content: "\e7bd"; } .mdi-hardware-keyboard-voice:before { content: "\e7be"; } .mdi-hardware-laptop:before { content: "\e7bf"; } .mdi-hardware-laptop-chromebook:before { content: "\e7c0"; } .mdi-hardware-laptop-mac:before { content: "\e7c1"; } .mdi-hardware-laptop-windows:before { content: "\e7c2"; } .mdi-hardware-memory:before { content: "\e7c3"; } .mdi-hardware-mouse:before { content: "\e7c4"; } .mdi-hardware-phone-android:before { content: "\e7c5"; } .mdi-hardware-phone-iphone:before { content: "\e7c6"; } .mdi-hardware-phonelink:before { content: "\e7c7"; } .mdi-hardware-phonelink-off:before { content: "\e7c8"; } .mdi-hardware-security:before { content: "\e7c9"; } .mdi-hardware-sim-card:before { content: "\e7ca"; } .mdi-hardware-smartphone:before { content: "\e7cb"; } .mdi-hardware-speaker:before { content: "\e7cc"; } .mdi-hardware-tablet:before { content: "\e7cd"; } .mdi-hardware-tablet-android:before { content: "\e7ce"; } .mdi-hardware-tablet-mac:before { content: "\e7cf"; } .mdi-hardware-tv:before { content: "\e7d0"; } .mdi-hardware-watch:before { content: "\e7d1"; } .mdi-image-add-to-photos:before { content: "\e7d2"; } .mdi-image-adjust:before { content: "\e7d3"; } .mdi-image-assistant-photo:before { content: "\e7d4"; } .mdi-image-audiotrack:before { content: "\e7d5"; } .mdi-image-blur-circular:before { content: "\e7d6"; } .mdi-image-blur-linear:before { content: "\e7d7"; } .mdi-image-blur-off:before { content: "\e7d8"; } .mdi-image-blur-on:before { content: "\e7d9"; } .mdi-image-brightness-1:before { content: "\e7da"; } .mdi-image-brightness-2:before { content: "\e7db"; } .mdi-image-brightness-3:before { content: "\e7dc"; } .mdi-image-brightness-4:before { content: "\e7dd"; } .mdi-image-brightness-5:before { content: "\e7de"; } .mdi-image-brightness-6:before { content: "\e7df"; } .mdi-image-brightness-7:before { content: "\e7e0"; } .mdi-image-brush:before { content: "\e7e1"; } .mdi-image-camera:before { content: "\e7e2"; } .mdi-image-camera-alt:before { content: "\e7e3"; } .mdi-image-camera-front:before { content: "\e7e4"; } .mdi-image-camera-rear:before { content: "\e7e5"; } .mdi-image-camera-roll:before { content: "\e7e6"; } .mdi-image-center-focus-strong:before { content: "\e7e7"; } .mdi-image-center-focus-weak:before { content: "\e7e8"; } .mdi-image-collections:before { content: "\e7e9"; } .mdi-image-colorize:before { content: "\e7ea"; } .mdi-image-color-lens:before { content: "\e7eb"; } .mdi-image-compare:before { content: "\e7ec"; } .mdi-image-control-point:before { content: "\e7ed"; } .mdi-image-control-point-duplicate:before { content: "\e7ee"; } .mdi-image-crop:before { content: "\e7ef"; } .mdi-image-crop-3-2:before { content: "\e7f0"; } .mdi-image-crop-5-4:before { content: "\e7f1"; } .mdi-image-crop-7-5:before { content: "\e7f2"; } .mdi-image-crop-16-9:before { content: "\e7f3"; } .mdi-image-crop-din:before { content: "\e7f4"; } .mdi-image-crop-free:before { content: "\e7f5"; } .mdi-image-crop-landscape:before { content: "\e7f6"; } .mdi-image-crop-original:before { content: "\e7f7"; } .mdi-image-crop-portrait:before { content: "\e7f8"; } .mdi-image-crop-square:before { content: "\e7f9"; } .mdi-image-dehaze:before { content: "\e7fa"; } .mdi-image-details:before { content: "\e7fb"; } .mdi-image-edit:before { content: "\e7fc"; } .mdi-image-exposure:before { content: "\e7fd"; } .mdi-image-exposure-minus-1:before { content: "\e7fe"; } .mdi-image-exposure-minus-2:before { content: "\e7ff"; } .mdi-image-exposure-plus-1:before { content: "\e800"; } .mdi-image-exposure-plus-2:before { content: "\e801"; } .mdi-image-exposure-zero:before { content: "\e802"; } .mdi-image-filter:before { content: "\e803"; } .mdi-image-filter-1:before { content: "\e804"; } .mdi-image-filter-2:before { content: "\e805"; } .mdi-image-filter-3:before { content: "\e806"; } .mdi-image-filter-4:before { content: "\e807"; } .mdi-image-filter-5:before { content: "\e808"; } .mdi-image-filter-6:before { content: "\e809"; } .mdi-image-filter-7:before { content: "\e80a"; } .mdi-image-filter-8:before { content: "\e80b"; } .mdi-image-filter-9:before { content: "\e80c"; } .mdi-image-filter-9-plus:before { content: "\e80d"; } .mdi-image-filter-b-and-w:before { content: "\e80e"; } .mdi-image-filter-center-focus:before { content: "\e80f"; } .mdi-image-filter-drama:before { content: "\e810"; } .mdi-image-filter-frames:before { content: "\e811"; } .mdi-image-filter-hdr:before { content: "\e812"; } .mdi-image-filter-none:before { content: "\e813"; } .mdi-image-filter-tilt-shift:before { content: "\e814"; } .mdi-image-filter-vintage:before { content: "\e815"; } .mdi-image-flare:before { content: "\e816"; } .mdi-image-flash-auto:before { content: "\e817"; } .mdi-image-flash-off:before { content: "\e818"; } .mdi-image-flash-on:before { content: "\e819"; } .mdi-image-flip:before { content: "\e81a"; } .mdi-image-gradient:before { content: "\e81b"; } .mdi-image-grain:before { content: "\e81c"; } .mdi-image-grid-off:before { content: "\e81d"; } .mdi-image-grid-on:before { content: "\e81e"; } .mdi-image-hdr-off:before { content: "\e81f"; } .mdi-image-hdr-on:before { content: "\e820"; } .mdi-image-hdr-strong:before { content: "\e821"; } .mdi-image-hdr-weak:before { content: "\e822"; } .mdi-image-healing:before { content: "\e823"; } .mdi-image-image:before { content: "\e824"; } .mdi-image-image-aspect-ratio:before { content: "\e825"; } .mdi-image-iso:before { content: "\e826"; } .mdi-image-landscape:before { content: "\e827"; } .mdi-image-leak-add:before { content: "\e828"; } .mdi-image-leak-remove:before { content: "\e829"; } .mdi-image-lens:before { content: "\e82a"; } .mdi-image-looks:before { content: "\e82b"; } .mdi-image-looks-3:before { content: "\e82c"; } .mdi-image-looks-4:before { content: "\e82d"; } .mdi-image-looks-5:before { content: "\e82e"; } .mdi-image-looks-6:before { content: "\e82f"; } .mdi-image-looks-one:before { content: "\e830"; } .mdi-image-looks-two:before { content: "\e831"; } .mdi-image-loupe:before { content: "\e832"; } .mdi-image-movie-creation:before { content: "\e833"; } .mdi-image-nature:before { content: "\e834"; } .mdi-image-nature-people:before { content: "\e835"; } .mdi-image-navigate-before:before { content: "\e836"; } .mdi-image-navigate-next:before { content: "\e837"; } .mdi-image-palette:before { content: "\e838"; } .mdi-image-panorama:before { content: "\e839"; } .mdi-image-panorama-fisheye:before { content: "\e83a"; } .mdi-image-panorama-horizontal:before { content: "\e83b"; } .mdi-image-panorama-vertical:before { content: "\e83c"; } .mdi-image-panorama-wide-angle:before { content: "\e83d"; } .mdi-image-photo:before { content: "\e83e"; } .mdi-image-photo-album:before { content: "\e83f"; } .mdi-image-photo-camera:before { content: "\e840"; } .mdi-image-photo-library:before { content: "\e841"; } .mdi-image-portrait:before { content: "\e842"; } .mdi-image-remove-red-eye:before { content: "\e843"; } .mdi-image-rotate-left:before { content: "\e844"; } .mdi-image-rotate-right:before { content: "\e845"; } .mdi-image-slideshow:before { content: "\e846"; } .mdi-image-straighten:before { content: "\e847"; } .mdi-image-style:before { content: "\e848"; } .mdi-image-switch-camera:before { content: "\e849"; } .mdi-image-switch-video:before { content: "\e84a"; } .mdi-image-tag-faces:before { content: "\e84b"; } .mdi-image-texture:before { content: "\e84c"; } .mdi-image-timelapse:before { content: "\e84d"; } .mdi-image-timer:before { content: "\e84e"; } .mdi-image-timer-3:before { content: "\e84f"; } .mdi-image-timer-10:before { content: "\e850"; } .mdi-image-timer-auto:before { content: "\e851"; } .mdi-image-timer-off:before { content: "\e852"; } .mdi-image-tonality:before { content: "\e853"; } .mdi-image-transform:before { content: "\e854"; } .mdi-image-tune:before { content: "\e855"; } .mdi-image-wb-auto:before { content: "\e856"; } .mdi-image-wb-cloudy:before { content: "\e857"; } .mdi-image-wb-incandescent:before { content: "\e858"; } .mdi-image-wb-irradescent:before { content: "\e859"; } .mdi-image-wb-sunny:before { content: "\e85a"; } .mdi-maps-beenhere:before { content: "\e85b"; } .mdi-maps-directions:before { content: "\e85c"; } .mdi-maps-directions-bike:before { content: "\e85d"; } .mdi-maps-directions-bus:before { content: "\e85e"; } .mdi-maps-directions-car:before { content: "\e85f"; } .mdi-maps-directions-ferry:before { content: "\e860"; } .mdi-maps-directions-subway:before { content: "\e861"; } .mdi-maps-directions-train:before { content: "\e862"; } .mdi-maps-directions-transit:before { content: "\e863"; } .mdi-maps-directions-walk:before { content: "\e864"; } .mdi-maps-flight:before { content: "\e865"; } .mdi-maps-hotel:before { content: "\e866"; } .mdi-maps-layers:before { content: "\e867"; } .mdi-maps-layers-clear:before { content: "\e868"; } .mdi-maps-local-airport:before { content: "\e869"; } .mdi-maps-local-atm:before { content: "\e86a"; } .mdi-maps-local-attraction:before { content: "\e86b"; } .mdi-maps-local-bar:before { content: "\e86c"; } .mdi-maps-local-cafe:before { content: "\e86d"; } .mdi-maps-local-car-wash:before { content: "\e86e"; } .mdi-maps-local-convenience-store:before { content: "\e86f"; } .mdi-maps-local-drink:before { content: "\e870"; } .mdi-maps-local-florist:before { content: "\e871"; } .mdi-maps-local-gas-station:before { content: "\e872"; } .mdi-maps-local-grocery-store:before { content: "\e873"; } .mdi-maps-local-hospital:before { content: "\e874"; } .mdi-maps-local-hotel:before { content: "\e875"; } .mdi-maps-local-laundry-service:before { content: "\e876"; } .mdi-maps-local-library:before { content: "\e877"; } .mdi-maps-local-mall:before { content: "\e878"; } .mdi-maps-local-movies:before { content: "\e879"; } .mdi-maps-local-offer:before { content: "\e87a"; } .mdi-maps-local-parking:before { content: "\e87b"; } .mdi-maps-local-pharmacy:before { content: "\e87c"; } .mdi-maps-local-phone:before { content: "\e87d"; } .mdi-maps-local-pizza:before { content: "\e87e"; } .mdi-maps-local-play:before { content: "\e87f"; } .mdi-maps-local-post-office:before { content: "\e880"; } .mdi-maps-local-print-shop:before { content: "\e881"; } .mdi-maps-local-restaurant:before { content: "\e882"; } .mdi-maps-local-see:before { content: "\e883"; } .mdi-maps-local-shipping:before { content: "\e884"; } .mdi-maps-local-taxi:before { content: "\e885"; } .mdi-maps-location-history:before { content: "\e886"; } .mdi-maps-map:before { content: "\e887"; } .mdi-maps-my-location:before { content: "\e888"; } .mdi-maps-navigation:before { content: "\e889"; } .mdi-maps-pin-drop:before { content: "\e88a"; } .mdi-maps-place:before { content: "\e88b"; } .mdi-maps-rate-review:before { content: "\e88c"; } .mdi-maps-restaurant-menu:before { content: "\e88d"; } .mdi-maps-satellite:before { content: "\e88e"; } .mdi-maps-store-mall-directory:before { content: "\e88f"; } .mdi-maps-terrain:before { content: "\e890"; } .mdi-maps-traffic:before { content: "\e891"; } .mdi-navigation-apps:before { content: "\e892"; } .mdi-navigation-arrow-back:before { content: "\e893"; } .mdi-navigation-arrow-drop-down:before { content: "\e894"; } .mdi-navigation-arrow-drop-down-circle:before { content: "\e895"; } .mdi-navigation-arrow-drop-up:before { content: "\e896"; } .mdi-navigation-arrow-forward:before { content: "\e897"; } .mdi-navigation-cancel:before { content: "\e898"; } .mdi-navigation-check:before { content: "\e899"; } .mdi-navigation-chevron-left:before { content: "\e89a"; } .mdi-navigation-chevron-right:before { content: "\e89b"; } .mdi-navigation-close:before { content: "\e89c"; } .mdi-navigation-expand-less:before { content: "\e89d"; } .mdi-navigation-expand-more:before { content: "\e89e"; } .mdi-navigation-fullscreen:before { content: "\e89f"; } .mdi-navigation-fullscreen-exit:before { content: "\e8a0"; } .mdi-navigation-menu:before { content: "\e8a1"; } .mdi-navigation-more-horiz:before { content: "\e8a2"; } .mdi-navigation-more-vert:before { content: "\e8a3"; } .mdi-navigation-refresh:before { content: "\e8a4"; } .mdi-navigation-unfold-less:before { content: "\e8a5"; } .mdi-navigation-unfold-more:before { content: "\e8a6"; } .mdi-notification-adb:before { content: "\e8a7"; } .mdi-notification-bluetooth-audio:before { content: "\e8a8"; } .mdi-notification-disc-full:before { content: "\e8a9"; } .mdi-notification-dnd-forwardslash:before { content: "\e8aa"; } .mdi-notification-do-not-disturb:before { content: "\e8ab"; } .mdi-notification-drive-eta:before { content: "\e8ac"; } .mdi-notification-event-available:before { content: "\e8ad"; } .mdi-notification-event-busy:before { content: "\e8ae"; } .mdi-notification-event-note:before { content: "\e8af"; } .mdi-notification-folder-special:before { content: "\e8b0"; } .mdi-notification-mms:before { content: "\e8b1"; } .mdi-notification-more:before { content: "\e8b2"; } .mdi-notification-network-locked:before { content: "\e8b3"; } .mdi-notification-phone-bluetooth-speaker:before { content: "\e8b4"; } .mdi-notification-phone-forwarded:before { content: "\e8b5"; } .mdi-notification-phone-in-talk:before { content: "\e8b6"; } .mdi-notification-phone-locked:before { content: "\e8b7"; } .mdi-notification-phone-missed:before { content: "\e8b8"; } .mdi-notification-phone-paused:before { content: "\e8b9"; } .mdi-notification-play-download:before { content: "\e8ba"; } .mdi-notification-play-install:before { content: "\e8bb"; } .mdi-notification-sd-card:before { content: "\e8bc"; } .mdi-notification-sim-card-alert:before { content: "\e8bd"; } .mdi-notification-sms:before { content: "\e8be"; } .mdi-notification-sms-failed:before { content: "\e8bf"; } .mdi-notification-sync:before { content: "\e8c0"; } .mdi-notification-sync-disabled:before { content: "\e8c1"; } .mdi-notification-sync-problem:before { content: "\e8c2"; } .mdi-notification-system-update:before { content: "\e8c3"; } .mdi-notification-tap-and-play:before { content: "\e8c4"; } .mdi-notification-time-to-leave:before { content: "\e8c5"; } .mdi-notification-vibration:before { content: "\e8c6"; } .mdi-notification-voice-chat:before { content: "\e8c7"; } .mdi-notification-vpn-lock:before { content: "\e8c8"; } .mdi-social-cake:before { content: "\e8c9"; } .mdi-social-domain:before { content: "\e8ca"; } .mdi-social-group:before { content: "\e8cb"; } .mdi-social-group-add:before { content: "\e8cc"; } .mdi-social-location-city:before { content: "\e8cd"; } .mdi-social-mood:before { content: "\e8ce"; } .mdi-social-notifications:before { content: "\e8cf"; } .mdi-social-notifications-none:before { content: "\e8d0"; } .mdi-social-notifications-off:before { content: "\e8d1"; } .mdi-social-notifications-on:before { content: "\e8d2"; } .mdi-social-notifications-paused:before { content: "\e8d3"; } .mdi-social-pages:before { content: "\e8d4"; } .mdi-social-party-mode:before { content: "\e8d5"; } .mdi-social-people:before { content: "\e8d6"; } .mdi-social-people-outline:before { content: "\e8d7"; } .mdi-social-person:before { content: "\e8d8"; } .mdi-social-person-add:before { content: "\e8d9"; } .mdi-social-person-outline:before { content: "\e8da"; } .mdi-social-plus-one:before { content: "\e8db"; } .mdi-social-poll:before { content: "\e8dc"; } .mdi-social-public:before { content: "\e8dd"; } .mdi-social-school:before { content: "\e8de"; } .mdi-social-share:before { content: "\e8df"; } .mdi-social-whatshot:before { content: "\e8e0"; } .mdi-toggle-check-box:before { content: "\e8e1"; } .mdi-toggle-check-box-outline-blank:before { content: "\e8e2"; } .mdi-toggle-radio-button-off:before { content: "\e8e3"; } .mdi-toggle-radio-button-on:before { content: "\e8e4"; } .container { padding: 0 1.5rem; margin: 0 auto; max-width: 1280px; width: 90%; } @media only screen and (min-width : 601px) { .container { width: 85%; } } @media only screen and (min-width : 993px) { .container { width: 70%; } } .container .row { margin-left: -0.75rem; margin-right: -0.75rem; } .section { padding-top: 1rem; padding-bottom: 1rem; } .section.no-pad { padding: 0; } .section.no-pad-bot { padding-bottom: 0; } .section.no-pad-top { padding-top: 0; } .row { margin-left: auto; margin-right: auto; margin-bottom: 20px; } .row:after { content: ""; display: table; clear: both; } .row .col { -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; -ms-transition: all 0.3s; transition: all 0.3s; float: left; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 0 0.75rem; } .row .col.s1 { width: 8.33333%; margin-left: 0; } .row .col.s2 { width: 16.66667%; margin-left: 0; } .row .col.s3 { width: 25%; margin-left: 0; } .row .col.s4 { width: 33.33333%; margin-left: 0; } .row .col.s5 { width: 41.66667%; margin-left: 0; } .row .col.s6 { width: 50%; margin-left: 0; } .row .col.s7 { width: 58.33333%; margin-left: 0; } .row .col.s8 { width: 66.66667%; margin-left: 0; } .row .col.s9 { width: 75%; margin-left: 0; } .row .col.s10 { width: 83.33333%; margin-left: 0; } .row .col.s11 { width: 91.66667%; margin-left: 0; } .row .col.s12 { width: 100%; margin-left: 0; } .row .col.offset-s1 { margin-left: 8.33333%; } .row .col.offset-s2 { margin-left: 16.66667%; } .row .col.offset-s3 { margin-left: 25%; } .row .col.offset-s4 { margin-left: 33.33333%; } .row .col.offset-s5 { margin-left: 41.66667%; } .row .col.offset-s6 { margin-left: 50%; } .row .col.offset-s7 { margin-left: 58.33333%; } .row .col.offset-s8 { margin-left: 66.66667%; } .row .col.offset-s9 { margin-left: 75%; } .row .col.offset-s10 { margin-left: 83.33333%; } .row .col.offset-s11 { margin-left: 91.66667%; } .row .col.offset-s12 { margin-left: 100%; } @media only screen and (min-width : 601px) { .row .col.m1 { width: 8.33333%; margin-left: 0; } .row .col.m2 { width: 16.66667%; margin-left: 0; } .row .col.m3 { width: 25%; margin-left: 0; } .row .col.m4 { width: 33.33333%; margin-left: 0; } .row .col.m5 { width: 41.66667%; margin-left: 0; } .row .col.m6 { width: 50%; margin-left: 0; } .row .col.m7 { width: 58.33333%; margin-left: 0; } .row .col.m8 { width: 66.66667%; margin-left: 0; } .row .col.m9 { width: 75%; margin-left: 0; } .row .col.m10 { width: 83.33333%; margin-left: 0; } .row .col.m11 { width: 91.66667%; margin-left: 0; } .row .col.m12 { width: 100%; margin-left: 0; } .row .col.offset-m1 { margin-left: 8.33333%; } .row .col.offset-m2 { margin-left: 16.66667%; } .row .col.offset-m3 { margin-left: 25%; } .row .col.offset-m4 { margin-left: 33.33333%; } .row .col.offset-m5 { margin-left: 41.66667%; } .row .col.offset-m6 { margin-left: 50%; } .row .col.offset-m7 { margin-left: 58.33333%; } .row .col.offset-m8 { margin-left: 66.66667%; } .row .col.offset-m9 { margin-left: 75%; } .row .col.offset-m10 { margin-left: 83.33333%; } .row .col.offset-m11 { margin-left: 91.66667%; } .row .col.offset-m12 { margin-left: 100%; } } @media only screen and (min-width : 993px) { .row .col.l1 { width: 8.33333%; margin-left: 0; } .row .col.l2 { width: 16.66667%; margin-left: 0; } .row .col.l3 { width: 25%; margin-left: 0; } .row .col.l4 { width: 33.33333%; margin-left: 0; } .row .col.l5 { width: 41.66667%; margin-left: 0; } .row .col.l6 { width: 50%; margin-left: 0; } .row .col.l7 { width: 58.33333%; margin-left: 0; } .row .col.l8 { width: 66.66667%; margin-left: 0; } .row .col.l9 { width: 75%; margin-left: 0; } .row .col.l10 { width: 83.33333%; margin-left: 0; } .row .col.l11 { width: 91.66667%; margin-left: 0; } .row .col.l12 { width: 100%; margin-left: 0; } .row .col.offset-l1 { margin-left: 8.33333%; } .row .col.offset-l2 { margin-left: 16.66667%; } .row .col.offset-l3 { margin-left: 25%; } .row .col.offset-l4 { margin-left: 33.33333%; } .row .col.offset-l5 { margin-left: 41.66667%; } .row .col.offset-l6 { margin-left: 50%; } .row .col.offset-l7 { margin-left: 58.33333%; } .row .col.offset-l8 { margin-left: 66.66667%; } .row .col.offset-l9 { margin-left: 75%; } .row .col.offset-l10 { margin-left: 83.33333%; } .row .col.offset-l11 { margin-left: 91.66667%; } .row .col.offset-l12 { margin-left: 100%; } } nav { color: #fff; background-color: #ee6e73; width: 100%; height: 56px; line-height: 56px; } nav .nav-wrapper { position: relative; height: 100%; } nav a { color: #fff; } @media only screen and (min-width : 993px) { nav a.button-collapse { display: none; } } nav a.button-collapse { float: left; position: relative; z-index: 1; height: 56px; } nav a.button-collapse i { font-size: 2.7rem; height: 56px; line-height: 56px; } nav .brand-logo { position: absolute; color: #fff; display: inline-block; font-size: 2.1rem; padding: 0; } @media only screen and (max-width : 992px) { nav .brand-logo { left: 0; width: 100%; text-align: center; z-index: 0; } } nav .brand-logo.right { right: 0.5rem; padding: 0; } nav ul { margin: 0; } nav ul li { float: left; padding: 0px; -webkit-transition: background-color 0.3s; -moz-transition: background-color 0.3s; -o-transition: background-color 0.3s; -ms-transition: background-color 0.3s; transition: background-color 0.3s; } nav ul li:hover, nav ul li.active { background-color: rgba(0, 0, 0, 0.1); } nav ul a { font-size: 1rem; color: #fff; display: inline-block; padding: 0px 15px; } nav ul.left { float: left; } nav .input-field { margin: 0; } nav .input-field input { height: 100%; font-size: 1.2rem; border: none; padding-left: 2rem; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } nav .input-field input:focus, nav .input-field input[type=text]:valid, nav .input-field input[type=password]:valid, nav .input-field input[type=email]:valid, nav .input-field input[type=url]:valid, nav .input-field input[type=date]:valid { border: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } nav .input-field label { top: 0; left: 0; } nav .input-field label i { color: rgba(255, 255, 255, 0.7); -webkit-transition: color 0.3s; -moz-transition: color 0.3s; -o-transition: color 0.3s; -ms-transition: color 0.3s; transition: color 0.3s; } nav .input-field label.active i { color: #fff; } nav .input-field label.active { -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); } .navbar-fixed { position: relative; height: 56px; z-index: 998; } .navbar-fixed nav { position: fixed; } @media only screen and (min-width : 601px) { nav, nav .nav-wrapper i, nav a.button-collapse, nav a.button-collapse i { height: 64px; line-height: 64px; } nav .nav-wrapper i { font-size: 2rem; } .navbar-fixed { height: 64px; } } @font-face { font-family: "Roboto"; src: url("../font/roboto/Roboto-Thin.ttf"); font-weight: 200; } @font-face { font-family: "Roboto"; src: url("../font/roboto/Roboto-Light.ttf"); font-weight: 300; } @font-face { font-family: "Roboto"; src: url("../font/roboto/Roboto-Regular.ttf"); font-weight: 400; } @font-face { font-family: "Roboto"; src: url("../font/roboto/Roboto-Medium.ttf"); font-weight: 500; } @font-face { font-family: "Roboto"; src: url("../font/roboto/Roboto-Bold.ttf"); font-weight: 700; } a { text-decoration: none; } html { line-height: 1.5; font-family: "Roboto", sans-serif; font-weight: normal; color: rgba(0, 0, 0, 0.87); } @media only screen and (min-width: 0) { html { font-size: 14px; } } @media only screen and (min-width: 992px) { html { font-size: 14.5px; } } @media only screen and (min-width: 1200px) { html { font-size: 15px; } } h1, h2, h3, h4, h5, h6 { font-weight: 400; } h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; } h1 { font-size: 4.2rem; line-height: 4.62rem; margin: 2.1rem 0 1.68rem 0; } h2 { font-size: 3.56rem; line-height: 3.916rem; margin: 1.78rem 0 1.424rem 0; } h3 { font-size: 2.92rem; line-height: 3.212rem; margin: 1.46rem 0 1.168rem 0; } h4 { font-size: 2.28rem; line-height: 2.508rem; margin: 1.14rem 0 0.912rem 0; } h5 { font-size: 1.64rem; line-height: 1.804rem; margin: 0.82rem 0 0.656rem 0; } h6 { font-size: 1rem; line-height: 1.1rem; margin: 0.5rem 0 0.4rem 0; } em { font-style: italic; } strong { font-weight: 500; } small { font-size: 75%; } .light, footer.page-footer .footer-copyright { font-weight: 300; } .flow-text { font-weight: 300; } @media only screen and (min-width: 360px) { .flow-text { font-size: 1.2rem; } } @media only screen and (min-width: 0px) { .flow-text { line-height: 0.8rem; } } @media only screen and (min-width: 390px) { .flow-text { font-size: 1.224rem; } } @media only screen and (min-width: 30px) { .flow-text { line-height: 0.904rem; } } @media only screen and (min-width: 420px) { .flow-text { font-size: 1.248rem; } } @media only screen and (min-width: 60px) { .flow-text { line-height: 1.008rem; } } @media only screen and (min-width: 450px) { .flow-text { font-size: 1.272rem; } } @media only screen and (min-width: 90px) { .flow-text { line-height: 1.112rem; } } @media only screen and (min-width: 480px) { .flow-text { font-size: 1.296rem; } } @media only screen and (min-width: 120px) { .flow-text { line-height: 1.216rem; } } @media only screen and (min-width: 510px) { .flow-text { font-size: 1.32rem; } } @media only screen and (min-width: 150px) { .flow-text { line-height: 1.32rem; } } @media only screen and (min-width: 540px) { .flow-text { font-size: 1.344rem; } } @media only screen and (min-width: 180px) { .flow-text { line-height: 1.424rem; } } @media only screen and (min-width: 570px) { .flow-text { font-size: 1.368rem; } } @media only screen and (min-width: 210px) { .flow-text { line-height: 1.528rem; } } @media only screen and (min-width: 600px) { .flow-text { font-size: 1.392rem; } } @media only screen and (min-width: 240px) { .flow-text { line-height: 1.632rem; } } @media only screen and (min-width: 630px) { .flow-text { font-size: 1.416rem; } } @media only screen and (min-width: 270px) { .flow-text { line-height: 1.736rem; } } @media only screen and (min-width: 660px) { .flow-text { font-size: 1.44rem; } } @media only screen and (min-width: 300px) { .flow-text { line-height: 1.84rem; } } @media only screen and (min-width: 690px) { .flow-text { font-size: 1.464rem; } } @media only screen and (min-width: 330px) { .flow-text { line-height: 1.944rem; } } @media only screen and (min-width: 720px) { .flow-text { font-size: 1.488rem; } } @media only screen and (min-width: 360px) { .flow-text { line-height: 2.048rem; } } @media only screen and (min-width: 750px) { .flow-text { font-size: 1.512rem; } } @media only screen and (min-width: 390px) { .flow-text { line-height: 2.152rem; } } @media only screen and (min-width: 780px) { .flow-text { font-size: 1.536rem; } } @media only screen and (min-width: 420px) { .flow-text { line-height: 2.256rem; } } @media only screen and (min-width: 810px) { .flow-text { font-size: 1.56rem; } } @media only screen and (min-width: 450px) { .flow-text { line-height: 2.36rem; } } @media only screen and (min-width: 840px) { .flow-text { font-size: 1.584rem; } } @media only screen and (min-width: 480px) { .flow-text { line-height: 2.464rem; } } @media only screen and (min-width: 870px) { .flow-text { font-size: 1.608rem; } } @media only screen and (min-width: 510px) { .flow-text { line-height: 2.568rem; } } @media only screen and (min-width: 900px) { .flow-text { font-size: 1.632rem; } } @media only screen and (min-width: 540px) { .flow-text { line-height: 2.672rem; } } @media only screen and (min-width: 930px) { .flow-text { font-size: 1.656rem; } } @media only screen and (min-width: 570px) { .flow-text { line-height: 2.776rem; } } @media only screen and (min-width: 960px) { .flow-text { font-size: 1.68rem; } } @media only screen and (min-width: 600px) { .flow-text { line-height: 2.88rem; } } .card-panel { padding: 20px; margin: 0.5rem 0 1rem 0; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; background-clip: padding-box; background-color: #fff; } .card { position: relative; margin: 0.5rem 0 1rem 0; background-color: #fff; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; background-clip: padding-box; } .card .card-title { color: #fff; font-size: 24px; font-weight: 300; } .card .card-title.activator { cursor: pointer; } .card a { color: #ffab40; margin-right: 20px; -webkit-transition: color 0.3s ease; -moz-transition: color 0.3s ease; -o-transition: color 0.3s ease; -ms-transition: color 0.3s ease; transition: color 0.3s ease; text-transform: uppercase; } .card a:hover { color: #ffd8a6; } .card.small, .card.medium, .card.large { position: relative; } .card.small .card-image, .card.medium .card-image, .card.large .card-image { overflow: hidden; } .card.small .card-content, .card.medium .card-content, .card.large .card-content { overflow: hidden; } .card.small .card-action, .card.medium .card-action, .card.large .card-action { position: absolute; bottom: 0; left: 0; right: 0; } .card.small { height: 300px; } .card.small .card-image { height: 150px; } .card.small .card-content { height: 150px; } .card.medium { height: 400px; } .card.medium .card-image { height: 250px; } .card.medium .card-content { height: 150px; } .card.large { height: 500px; } .card.large .card-image { height: 330px; } .card.large .card-content { height: 170px; } .card .card-image { position: relative; } .card .card-image img { -webkit-border-radius: 2px 2px 0 0; -moz-border-radius: 2px 2px 0 0; border-radius: 2px 2px 0 0; background-clip: padding-box; position: relative; left: 0; right: 0; top: 0; bottom: 0; width: 100%; } .card .card-image .card-title { position: absolute; bottom: 0; left: 0; padding: 20px; } .card .card-content { padding: 20px; -webkit-border-radius: 0 0 2px 2px; -moz-border-radius: 0 0 2px 2px; border-radius: 0 0 2px 2px; background-clip: padding-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .card .card-content p { margin: 0; color: inherit; } .card .card-content .card-title { line-height: 48px; } .card .card-action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 20px; } .card .card-reveal { padding: 20px; position: absolute; background-color: #FFF; width: 100%; overflow-y: auto; top: 100%; height: 100%; z-index: 1; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .card .card-reveal .card-title { cursor: pointer; display: block; } #toast-container { display: block; position: fixed; z-index: 1001; } @media only screen and (max-width : 600px) { #toast-container { min-width: 100%; bottom: 0%; } } @media only screen and (min-width : 601px) and (max-width : 992px) { #toast-container { min-width: 30%; left: 5%; bottom: 7%; } } @media only screen and (min-width : 993px) { #toast-container { min-width: 8%; top: 10%; right: 7%; } } .toast { -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; background-clip: padding-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; top: 0px; width: auto; clear: both; margin-top: 10px; position: relative; max-width: 100%; height: 48px; line-height: 48px; background-color: #323232; padding: 0px 25px; font-size: 1.1rem; font-weight: 300; color: #fff; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-flex-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; -webkit-justify-content: space-between; justify-content: space-between; } .toast .btn, .toast .btn-large, .toast .btn-flat { margin: 0; margin-left: 3rem; } .toast.rounded { border-radius: 24px; } @media only screen and (max-width : 600px) { .toast { width: 100%; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; background-clip: padding-box; } } @media only screen and (min-width : 601px) and (max-width : 992px) { .toast { float: left; } } @media only screen and (min-width : 993px) { .toast { float: right; } } .tabs { position: relative; height: 48px; background-color: #FFF; margin: 0 auto; width: 100%; white-space: nowrap; } .tabs li.tab { display: block; float: left; text-align: center; background-color: #fff; line-height: 48px; height: 48px; padding: 0 20px; margin: 0; text-transform: uppercase; letter-spacing: 0.8px; width: 15%; } .tabs li.tab a { color: #ee6e73; display: block; width: 100%; height: 100%; -webkit-transition: color 0.28s ease; -moz-transition: color 0.28s ease; -o-transition: color 0.28s ease; -ms-transition: color 0.28s ease; transition: color 0.28s ease; } .tabs li.tab a:hover { color: #f9c9cb; } .tabs .indicator { position: absolute; bottom: 0; height: 2px; background-color: #f6b2b5; will-change: left, right; } ul.tabs li.tab { padding: 0; } .material-tooltip { padding: 10px 8px; font-size: 1rem; z-index: 1000; background-color: transparent; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; background-clip: padding-box; color: #fff; min-height: 36px; line-height: 1rem; opacity: 0; display: none; position: absolute; text-align: center; overflow: hidden; left: 0; top: 0; will-change: top, left; } .backdrop { position: absolute; opacity: 0; display: none; height: 7px; width: 14px; -webkit-border-radius: 0 0 14px 14px; -moz-border-radius: 0 0 14px 14px; border-radius: 0 0 14px 14px; background-clip: padding-box; background-color: #323232; z-index: -1; -webkit-transform-origin: 50% 10%; -moz-transform-origin: 50% 10%; -ms-transform-origin: 50% 10%; -o-transform-origin: 50% 10%; transform-origin: 50% 10%; will-change: transform, opacity; } .btn, .btn-large, .btn-flat { display: inline-block; height: 36px; margin-bottom: 15px; padding: 0 2rem; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; background-clip: padding-box; line-height: 36px; text-transform: uppercase; border: none; outline: 0; -webkit-tap-highlight-color: transparent; } .btn.disabled, .disabled.btn-large, .btn-floating.disabled, .btn-large.disabled, .btn:disabled, .btn-large:disabled, .btn-large:disabled, .btn-floating:disabled { background-color: #DFDFDF; box-shadow: none; color: #9F9F9F; cursor: default; } .btn.disabled:hover, .disabled.btn-large:hover, .btn-floating.disabled:hover, .btn-large.disabled:hover, .btn:disabled:hover, .btn-large:disabled:hover, .btn-large:disabled:hover, .btn-floating:disabled:hover { background-color: #DFDFDF; color: #9F9F9F; } .btn i, .btn-large i, .btn-floating i, .btn-large i, .btn-flat i { font-size: 1.3rem; line-height: inherit; } .btn, .btn-large { text-decoration: none; color: #FFF; background-color: #26a69a; text-align: center; letter-spacing: 0.5px; -webkit-transition: 0.2s ease-out; -moz-transition: 0.2s ease-out; -o-transition: 0.2s ease-out; -ms-transition: 0.2s ease-out; transition: 0.2s ease-out; cursor: pointer; } .btn:hover, .btn-large:hover { background-color: #2bbbad; } .btn-floating { display: inline-block; color: #FFF; position: relative; z-index: 1; width: 37px; height: 37px; line-height: 37px; padding: 0; background-color: #26a69a; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; background-clip: padding-box; -webkit-transition: 0.3s; -moz-transition: 0.3s; -o-transition: 0.3s; -ms-transition: 0.3s; transition: 0.3s; cursor: pointer; } .btn-floating i { width: inherit; display: inline-block; text-align: center; color: #FFF; font-size: 1.6rem; line-height: 37px; } .btn-floating.btn-large { width: 55.5px; height: 55.5px; } .btn-floating.btn-large i { line-height: 55.5px; } .fixed-action-btn { position: fixed; right: 23px; bottom: 23px; padding-top: 15px; margin-bottom: 0; z-index: 1000; } .fixed-action-btn ul { left: 0; right: 0; text-align: center; position: absolute; bottom: 64px; } .fixed-action-btn ul li { margin-bottom: 15px; } .fixed-action-btn ul a.btn-floating { -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})"; filter: "alpha(opacity=(${iefactor}))"; -moz-opacity: 0; -khtml-opacity: 0; opacity: 0; } .btn-flat { box-shadow: none; background-color: transparent; color: #343434; cursor: pointer; } .btn-flat.disabled { color: #b3b3b3; cursor: default; } .btn-large { height: 54px; line-height: 56px; } .btn-large i { font-size: 1.6rem; } .dropdown-content { display: none; position: absolute; background-color: #FFFFFF; margin: 0px; min-width: 100px; z-index: 1000; max-height: 70%; opacity: 0; overflow-y: hidden; will-change: width, height; } .dropdown-content li { cursor: pointer; font-size: 1.2rem; color: rgba(0, 0, 0, 0.87); line-height: 1.5rem; } .dropdown-content li:hover, .dropdown-content li.active { background-color: rgba(0, 0, 0, 0.06); } .dropdown-content li > a, .dropdown-content li > span { display: block; padding: 1rem 1rem; color: #26a69a; } /*! * Waves v0.6.0 * http://fian.my.id/Waves * * Copyright 2014 Alfiana E. Sibuea and other contributors * Released under the MIT license * https://github.com/fians/Waves/blob/master/LICENSE */ .waves-effect { position: relative; cursor: pointer; display: inline-block; overflow: hidden; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-tap-highlight-color: transparent; z-index: 1; will-change: opacity, transform; -webkit-transition: all 0.3s ease-out; -moz-transition: all 0.3s ease-out; -o-transition: all 0.3s ease-out; -ms-transition: all 0.3s ease-out; transition: all 0.3s ease-out; } .waves-effect .waves-ripple { position: absolute; border-radius: 50%; width: 20px; height: 20px; margin-top: -10px; margin-left: -10px; opacity: 0; background: rgba(0, 0, 0, 0.2); -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out; -o-transition: all 0.7s ease-out; -ms-transition: all 0.7s ease-out; transition: all 0.7s ease-out; -webkit-transition-property: -webkit-transform, opacity; -moz-transition-property: -moz-transform, opacity; -o-transition-property: -o-transform, opacity; transition-property: transform, opacity; -webkit-transform: scale(0); -moz-transform: scale(0); -ms-transform: scale(0); -o-transform: scale(0); transform: scale(0); pointer-events: none; } .waves-effect.waves-light .waves-ripple { background-color: rgba(255, 255, 255, 0.45); } .waves-effect.waves-red .waves-ripple { background-color: rgba(244, 67, 54, 0.7); } .waves-effect.waves-yellow .waves-ripple { background-color: rgba(255, 235, 59, 0.7); } .waves-effect.waves-orange .waves-ripple { background-color: rgba(255, 152, 0, 0.7); } .waves-effect.waves-purple .waves-ripple { background-color: rgba(156, 39, 176, 0.7); } .waves-effect.waves-green .waves-ripple { background-color: rgba(76, 175, 80, 0.7); } .waves-effect.waves-teal .waves-ripple { background-color: rgba(0, 150, 136, 0.7); } .waves-notransition { -webkit-transition: none !important; -moz-transition: none !important; -o-transition: none !important; -ms-transition: none !important; transition: none !important; } .waves-circle { -webkit-transform: translateZ(0); -moz-transform: translateZ(0); -ms-transform: translateZ(0); -o-transform: translateZ(0); transform: translateZ(0); -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%); } .waves-input-wrapper { border-radius: 0.2em; vertical-align: bottom; } .waves-input-wrapper .waves-button-input { position: relative; top: 0; left: 0; z-index: 1; } .waves-circle { text-align: center; width: 2.5em; height: 2.5em; line-height: 2.5em; border-radius: 50%; -webkit-mask-image: none; } .waves-block { display: block; } /* Firefox Bug: link not triggered */ a.waves-effect .waves-ripple { z-index: -1; } .modal { display: none; position: fixed; left: 0; right: 0; background-color: #eee; padding: 0; max-height: 70%; width: 55%; margin: auto; overflow-y: auto; z-index: 1000; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; background-clip: padding-box; -webkit-transform: translate(0); -moz-transform: translate(0); -ms-transform: translate(0); -o-transform: translate(0); transform: translate(0); will-change: top, opacity; } @media only screen and (max-width : 992px) { .modal { width: 80%; } } .modal h1, .modal h2, .modal h3, .modal h4 { margin-top: 0; } .modal .modal-content { padding: 24px; } .modal .modal-footer { background-color: #eee; padding: 4px 6px; height: 56px; width: 100%; } .modal .modal-footer .btn, .modal .modal-footer .btn-large, .modal .modal-footer .btn-flat { float: right; margin: 6px 0; } #lean-overlay { position: fixed; z-index: 999; top: 0; left: 0; bottom: 0; right: 0; height: 115%; width: 100%; background: #000; display: none; will-change: opacity; } .modal.modal-fixed-footer { padding: 0; height: 70%; } .modal.modal-fixed-footer .modal-content { position: fixed; max-height: 100%; padding-bottom: 64px; width: 100%; overflow-y: auto; } .modal.modal-fixed-footer .modal-footer { border-top: 1px solid rgba(0, 0, 0, 0.1); position: fixed; bottom: 0; } .collapsible { border-top: 1px solid #ddd; border-right: 1px solid #ddd; border-left: 1px solid #ddd; margin: 0.5rem 0 1rem 0; } .collapsible li { -webkit-transition: 0.3s; -moz-transition: 0.3s; -o-transition: 0.3s; -ms-transition: 0.3s; transition: 0.3s; } .collapsible-header { display: block; cursor: pointer; height: 3rem; line-height: 3rem; padding: 0 1rem; background-color: #fff; border-bottom: 1px solid #ddd; } .collapsible-header i { width: 2rem; font-size: 1.6rem; line-height: 3rem; display: block; float: left; text-align: center; margin-right: 1rem; } .collapsible-body { overflow: hidden; display: none; border-bottom: 1px solid #ddd; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .collapsible-body p { margin: 0; padding: 2rem; } ul.side-nav ul.collapsible { border: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } ul.side-nav ul.collapsible li { padding: 0; } ul.side-nav .collapsible-header { background-color: transparent; border: none; line-height: inherit; height: inherit; margin: 0 1rem; } ul.side-nav .collapsible-header i { line-height: inherit; } ul.side-nav .collapsible-body { border: 0; background-color: #FFF; } ul.side-nav .collapsible-body li a { margin: 0 1rem 0 2rem; } li.no-padding { padding: 0 !important; } .materialboxed { cursor: zoom-in; position: relative; -webkit-transition: opacity 0.4s; -moz-transition: opacity 0.4s; -o-transition: opacity 0.4s; -ms-transition: opacity 0.4s; transition: opacity 0.4s; } .materialboxed:hover { will-change: left, top, width, height; } .materialboxed:hover:not(.active) { -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})"; filter: "alpha(opacity=(${iefactor}))"; -moz-opacity: 0.8; -khtml-opacity: 0.8; opacity: 0.8; } .materialboxed.active { cursor: zoom-out; } #materialbox-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #292929; z-index: 999; will-change: opacity; } .materialbox-caption { position: fixed; display: none; color: #fff; line-height: 50px; bottom: 0px; width: 100%; box-sizing: border-box; text-align: center; padding: 0% 15%; height: 50px; z-index: 1000; -webkit-font-smoothing: antialiased; } /* Remove Focus Boxes */ select:focus { outline: 1px solid #f8c1c3; } button:focus { outline: none; background-color: #30d0c1; } label { font-size: 0.8rem; color: #9e9e9e; } /*************************** Text Inputs + Textarea ****************************/ .input-field { position: relative; margin-top: 1rem; } .input-field label { color: #9e9e9e; position: absolute; top: 0.8rem; left: 0.75rem; font-size: 1rem; cursor: text; -webkit-transition: 0.2s ease-out; -moz-transition: 0.2s ease-out; -o-transition: 0.2s ease-out; -ms-transition: 0.2s ease-out; transition: 0.2s ease-out; } .input-field label.active { font-size: 0.8rem; -webkit-transform: translateY(-140%); -moz-transform: translateY(-140%); -ms-transform: translateY(-140%); -o-transform: translateY(-140%); transform: translateY(-140%); } .input-field input[type=text]:focus + label, .input-field input[type=password]:focus + label, .input-field input[type=email]:focus + label, .input-field input[type=url]:focus + label, .input-field input[type=date]:focus + label, .input-field input[type=tel]:focus + label, .input-field input[type=number]:focus + label, .input-field input[type=search]:focus + label, .input-field textarea:focus.materialize-textarea + label { color: #26a69a; } .input-field input[type=text].valid, .input-field input[type=password].valid, .input-field input[type=email].valid, .input-field input[type=url].valid, .input-field input[type=date].valid, .input-field input[type=tel].valid, .input-field input[type=number].valid, .input-field input[type=search].valid, .input-field textarea.materialize-textarea.valid { border-bottom: 1px solid #4CAF50; -webkit-box-shadow: 0 1px 0 0 #4CAF50; -moz-box-shadow: 0 1px 0 0 #4CAF50; box-shadow: 0 1px 0 0 #4CAF50; } .input-field input[type=text].invalid, .input-field input[type=password].invalid, .input-field input[type=email].invalid, .input-field input[type=url].invalid, .input-field input[type=date].invalid, .input-field input[type=tel].invalid, .input-field input[type=number].invalid, .input-field input[type=search].invalid, .input-field textarea.materialize-textarea.invalid { border-bottom: 1px solid #F44336; -webkit-box-shadow: 0 1px 0 0 #F44336; -moz-box-shadow: 0 1px 0 0 #F44336; box-shadow: 0 1px 0 0 #F44336; } .input-field .prefix { position: absolute; width: 3rem; font-size: 2rem; -webkit-transition: color 0.2s; -moz-transition: color 0.2s; -o-transition: color 0.2s; -ms-transition: color 0.2s; transition: color 0.2s; } .input-field .prefix.active { color: #26a69a; } .input-field .prefix ~ input, .input-field .prefix ~ textarea { margin-left: 3rem; width: 92%; width: calc(100% - 3rem); } .input-field .prefix ~ textarea { padding-top: 0.8rem; } .input-field .prefix ~ label { margin-left: 3rem; } @media only screen and (max-width : 992px) { .input-field .prefix ~ input { width: 86%; width: calc(100% - 3rem); } } @media only screen and (max-width : 600px) { .input-field .prefix ~ input { width: 80%; width: calc(100% - 3rem); } } textarea { width: 100%; height: 3rem; background-color: transparent; } input[type=text], input[type=password], input[type=email], input[type=url], input[type=date], input[type=tel], input[type=number], input[type=search], textarea.materialize-textarea { background-color: transparent; border: none; border-bottom: 1px solid #9e9e9e; outline: none; height: 3rem; width: 100%; font-size: 1rem; margin: 0 0 15px 0; padding: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-transition: 0.3s; -moz-transition: 0.3s; -o-transition: 0.3s; -ms-transition: 0.3s; transition: 0.3s; } input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=url]:focus, input[type=date]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=search]:focus, textarea:focus.materialize-textarea { border-bottom: 1px solid #26a69a; -webkit-box-shadow: 0 1px 0 0 #26a69a; -moz-box-shadow: 0 1px 0 0 #26a69a; box-shadow: 0 1px 0 0 #26a69a; } textarea.materialize-textarea { overflow-y: hidden; /* prevents scroll bar flash */ padding: 1.6rem 0; /* prevents text jump on Enter keypress */ resize: none; min-height: 3rem; } .hiddendiv { display: none; white-space: pre-wrap; word-wrap: break-word; overflow-wrap: break-word; /* future version of deprecated 'word-wrap' */ padding-top: 1.2rem; /* prevents text jump on Enter keypress */ } /*************** Radio Buttons ***************/ /* Remove default Radio Buttons */ [type="radio"]:not(:checked), [type="radio"]:checked { position: absolute; left: -9999px; } [type="radio"]:not(:checked) + label, [type="radio"]:checked + label { position: relative; padding-left: 35px; cursor: pointer; display: inline-block; height: 25px; line-height: 25px; font-size: 1rem; -webkit-transition: 0.28s ease; -moz-transition: 0.28s ease; -o-transition: 0.28s ease; -ms-transition: 0.28s ease; transition: 0.28s ease; -webkit-user-select: none; /* webkit (safari, chrome) browsers */ -moz-user-select: none; /* mozilla browsers */ -khtml-user-select: none; /* webkit (konqueror) browsers */ -ms-user-select: none; /* IE10+ */ } [type="radio"] + label:before, [type="radio"] + label:after { content: ''; position: absolute; left: 0px; top: 0px; margin: 4px; width: 16px; height: 16px; z-index: 0; -webkit-transition: 0.28s ease; -moz-transition: 0.28s ease; -o-transition: 0.28s ease; -ms-transition: 0.28s ease; transition: 0.28s ease; } /* Unchecked styles */ [type="radio"]:not(:checked) + label:before { border-radius: 50%; border: 2px solid #5a5a5a; } [type="radio"]:not(:checked) + label:after { border-radius: 50%; border: 2px solid #5a5a5a; z-index: -1; -webkit-transform: scale(0); -moz-transform: scale(0); -ms-transform: scale(0); -o-transform: scale(0); transform: scale(0); } /* Checked styles */ [type="radio"]:checked + label:before { border-radius: 50%; border: 2px solid transparent; } [type="radio"]:checked + label:after { border-radius: 50%; border: 2px solid #26a69a; background-color: #26a69a; z-index: 0; -webkit-transform: scale(1.02); -moz-transform: scale(1.02); -ms-transform: scale(1.02); -o-transform: scale(1.02); transform: scale(1.02); } /* Radio With gap */ [type="radio"].with-gap:checked + label:before { border-radius: 50%; border: 2px solid #26a69a; } [type="radio"].with-gap:checked + label:after { border-radius: 50%; border: 2px solid #26a69a; background-color: #26a69a; z-index: 0; -webkit-transform: scale(0.5); -moz-transform: scale(0.5); -ms-transform: scale(0.5); -o-transform: scale(0.5); transform: scale(0.5); } /* Disabled style */ [type="radio"]:disabled:not(:checked) + label:before, [type="radio"]:disabled:checked + label:before { background-color: transparent; border-color: rgba(0, 0, 0, 0.26); } [type="radio"]:disabled + label { color: rgba(0, 0, 0, 0.26); } [type="radio"]:disabled:not(:checked) + label:hover:before { border-color: rgba(0, 0, 0, 0.26); } /*************** Checkboxes ***************/ /* CUSTOM CSS CHECKBOXES */ form p { margin-bottom: 10px; text-align: left; } form p:last-child { margin-bottom: 0px; } /* Remove default checkbox */ [type="checkbox"]:not(:checked), [type="checkbox"]:checked { position: absolute; left: -9999px; } [type="checkbox"]:not(:checked) + label, [type="checkbox"]:checked + label { position: relative; padding-left: 35px; cursor: pointer; display: inline-block; height: 25px; line-height: 25px; font-size: 1rem; -webkit-user-select: none; /* webkit (safari, chrome) browsers */ -moz-user-select: none; /* mozilla browsers */ -khtml-user-select: none; /* webkit (konqueror) browsers */ -ms-user-select: none; /* IE10+ */ } /* checkbox aspect */ [type="checkbox"] + label:before { content: ''; position: absolute; margin-top: 2px; left: 0; z-index: 0; -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; background-clip: padding-box; -webkit-transition: 0.2s; -moz-transition: 0.2s; -o-transition: 0.2s; -ms-transition: 0.2s; transition: 0.2s; } /* Unchecked styles */ [type="checkbox"]:not(:checked) + label:before { top: 0px; width: 18px; height: 18px; border: 2px solid #5a5a5a; } /* Checked styles */ [type="checkbox"]:checked + label:before { left: -3px; top: -4px; width: 12px; height: 22px; border-top: 2px solid transparent; border-left: 2px solid transparent; border-right: 2px solid #26a69a; border-bottom: 2px solid #26a69a; -webkit-transform: rotateZ(40deg); -moz-transform: rotateZ(40deg); -ms-transform: rotateZ(40deg); -o-transform: rotateZ(40deg); transform: rotateZ(40deg); -webkit-backface-visibility: hidden; -webkit-transform-origin: 100% 100%; -moz-transform-origin: 100% 100%; -ms-transform-origin: 100% 100%; -o-transform-origin: 100% 100%; transform-origin: 100% 100%; } /* disabled checkbox */ [type="checkbox"]:disabled:not(:checked) + label:before { top: 0; left: 0; box-shadow: none; background-color: rgba(0, 0, 0, 0.26); width: 18px; height: 18px; border: 2px solid rgba(0, 0, 0, 0.26); -webkit-transform: rotateZ(0deg); -moz-transform: rotateZ(0deg); -ms-transform: rotateZ(0deg); -o-transform: rotateZ(0deg); transform: rotateZ(0deg); } [type="checkbox"]:disabled:checked + label:before { left: -3px; top: -4px; width: 12px; height: 22px; border-top: 2px solid transparent; border-left: 2px solid transparent; border-right: 2px solid rgba(0, 0, 0, 0.26); border-bottom: 2px solid rgba(0, 0, 0, 0.26); -webkit-transform: rotateZ(40deg); -moz-transform: rotateZ(40deg); -ms-transform: rotateZ(40deg); -o-transform: rotateZ(40deg); transform: rotateZ(40deg); -webkit-backface-visibility: hidden; -webkit-transform-origin: 100% 100%; -moz-transform-origin: 100% 100%; -ms-transform-origin: 100% 100%; -o-transform-origin: 100% 100%; transform-origin: 100% 100%; } [type="checkbox"]:disabled:checked + label { color: rgba(0, 0, 0, 0.26); } [type="checkbox"]:disabled:not(:checked) + label:hover:before { border-color: rgba(0, 0, 0, 0.26); } .switch, .switch * { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; } .switch label { cursor: pointer; } .switch label input[type=checkbox]:first-child { opacity: 0; width: 0; height: 0; } .switch label input[type=checkbox]:first-child:checked + .lever { background-color: #7bc5be; } .switch label input[type=checkbox]:first-child:checked + .lever:after { background-color: #009587; } .switch label .lever, .switch label input[type=checkbox][disabled]:first-child + .lever { content: ""; display: inline-block; width: 45px; height: 15px; background-color: #818181; border-radius: 15px; margin-right: 10px; transition: background 0.3s ease; vertical-align: middle; margin: 0px 16px; } .switch label .lever:after { content: ""; display: inline-block; width: 20px; height: 20px; background-color: #F1F1F1; border-radius: 20px; position: relative; box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4); left: -5px; top: -2px; transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease; } input[type=checkbox]:first-child:checked:not(:disabled) ~ .lever:active:after { box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 149, 135, 0.1); } input[type=checkbox]:first-child:not(:disabled) ~ .lever:active:after { box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.1); } .switch label input[type=checkbox][disabled]:first-child + .lever:after, .switch label input[type=checkbox][disabled]:checked:first-child + .lever:after { background-color: #BDBDBD; } .switch label input[type=checkbox]:first-child:checked + .lever:after { left: 30px; } /*************** Select Field ***************/ .select-label { position: absolute; } .select-wrapper { position: relative; margin-top: 15px; } .select-wrapper input.select-dropdown { position: relative; cursor: pointer; color: #444; background-color: transparent; border: none; border-bottom: 1px solid #9e9e9e; outline: none; height: 3rem; line-height: 3rem; width: 100%; font-size: 1rem; margin: 0 0 15px 0; padding: 0; display: block; } .select-wrapper .mdi-navigation-arrow-drop-down { position: absolute; right: 0; top: 0; font-size: 23px; } select { display: none; } select.browser-default { display: block; } select:disabled { color: rgba(0, 0, 0, 0.3); } .select-wrapper input.select-dropdown:disabled { color: rgba(0, 0, 0, 0.3); border-bottom: 1px solid rgba(0, 0, 0, 0.3); } .select-wrapper i { color: rgba(0, 0, 0, 0.3); } .select-dropdown li.disabled { color: rgba(0, 0, 0, 0.3); } .select-dropdown li.disabled:hover { background-color: transparent; } /********************* File Input **********************/ .file-field { position: relative; overflow: hidden; } .file-field input.file-path { margin-left: 100px; } .file-field .btn, .file-field .btn-large { position: absolute; top: 0; height: 3rem; line-height: 3rem; } .file-field span { cursor: pointer; } .file-field input[type=file] { position: absolute; top: 0; right: 0; left: 0; bottom: 0; width: 100%; margin: 0; padding: 0; font-size: 20px; cursor: pointer; opacity: 0; filter: alpha(opacity=0); } /*************** Range ***************/ .range-field { position: relative; } input[type=range], input[type=range] + .thumb { cursor: pointer; } input[type=range] { position: relative; background-color: transparent; border: none; outline: none; width: 100%; margin: 15px 0px; padding: 0; } input[type=range] + .thumb { position: absolute; border: none; height: 0; width: 0; border-radius: 50%; background-color: #26a69a; top: 10px; margin-left: -6px; -webkit-transform-origin: 50% 50%; -moz-transform-origin: 50% 50%; -ms-transform-origin: 50% 50%; -o-transform-origin: 50% 50%; transform-origin: 50% 50%; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } input[type=range] + .thumb .value { display: block; width: 30px; text-align: center; color: #26a69a; font-size: 0px; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } input[type=range] + .thumb.active { border-radius: 50% 50% 50% 0; } input[type=range] + .thumb.active .value { color: #fff; margin-left: -1px; margin-top: 8px; font-size: 10px; } input[type=range]:focus { outline: none; } input[type=range] { -webkit-appearance: none; } input[type=range]::-webkit-slider-runnable-track { height: 3px; background: #c2c0c2; border: none; } input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; border: none; height: 14px; width: 14px; border-radius: 50%; background-color: #26a69a; transform-origin: 50% 50%; margin: -5px 0 0 0; -webkit-transition: 0.3s; -moz-transition: 0.3s; -o-transition: 0.3s; -ms-transition: 0.3s; transition: 0.3s; } input[type=range]:focus::-webkit-slider-runnable-track { background: #ccc; } input[type=range] { /* fix for FF unable to apply focus style bug */ border: 1px solid white; /*required for proper track sizing in FF*/ } input[type=range]::-moz-range-track { height: 3px; background: #ddd; border: none; } input[type=range]::-moz-range-thumb { border: none; height: 14px; width: 14px; border-radius: 50%; background: #26a69a; margin-top: -5px; } /*hide the outline behind the border*/ input[type=range]:-moz-focusring { outline: 1px solid white; outline-offset: -1px; } input[type=range]:focus::-moz-range-track { background: #ccc; } input[type=range]::-ms-track { height: 3px; /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */ background: transparent; /*leave room for the larger thumb to overflow with a transparent border */ border-color: transparent; border-width: 6px 0; /*remove default tick marks*/ color: transparent; } input[type=range]::-ms-fill-lower { background: #777; } input[type=range]::-ms-fill-upper { background: #ddd; } input[type=range]::-ms-thumb { border: none; height: 14px; width: 14px; border-radius: 50%; background: #26a69a; } input[type=range]:focus::-ms-fill-lower { background: #888; } input[type=range]:focus::-ms-fill-upper { background: #ccc; } /*************************** Text Inputs + Textarea ****************************/ select { background-color: #fffafa; width: 100%; padding: 5px; border: 1px solid #f2f2f2; border-radius: 2px; height: 3rem; } /*************** Nav List ***************/ ul.table-of-contents.fixed { position: fixed; } ul.table-of-contents li { padding: 2px 0; } ul.table-of-contents a { display: inline-block; font-weight: 300; color: #757575; padding-left: 20px; height: 1.5rem; line-height: 1.5rem; letter-spacing: 0.4; display: inline-block; } ul.table-of-contents a:hover { color: #a8a8a8; padding-left: 19px; border-left: 1px solid #ea4a4f; } ul.table-of-contents a.active { font-weight: 500; padding-left: 18px; border-left: 2px solid #ea4a4f; } ul.side-nav { position: fixed; width: 240px; left: -105%; top: 0; margin: 0; height: 100%; height: calc(100% + 60px); padding-bottom: 60px; background-color: #FFF; z-index: 999; will-change: left; } ul.side-nav.right-aligned { will-change: right; right: -105%; left: auto; } ul.side-nav .collapsible { margin: 0; } ul.side-nav li { float: none; padding: 0 15px; } ul.side-nav li:hover, ul.side-nav li.active { background-color: #ddd; } ul.side-nav a { color: #444; } .drag-target { height: 100%; width: 10px; position: fixed; top: 0; z-index: 998; } ul.side-nav.fixed a { display: block; padding: 0 15px; color: #444; } ul.side-nav.fixed { left: 0; position: fixed; } ul.side-nav.fixed.right-aligned { right: 0; left: auto; } @media only screen and (max-width : 992px) { ul.side-nav.fixed { left: -105%; } ul.side-nav.fixed.right-aligned { right: -105%; left: auto; } } ul.side-nav .collapsible-body li.active, ul.side-nav.fixed .collapsible-body li.active { background-color: #ee6e73; } ul.side-nav .collapsible-body li.active a, ul.side-nav.fixed .collapsible-body li.active a { color: #fff; } #sidenav-overlay { position: fixed; top: 0px; left: 0px; right: 0px; height: 120vh; background-color: rgba(0, 0, 0, 0.5); z-index: 997; will-change: opacity; } /* @license Copyright (c) 2014 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt */ /**************************/ /* STYLES FOR THE SPINNER */ /**************************/ /* * Constants: * STROKEWIDTH = 3px * ARCSIZE = 270 degrees (amount of circle the arc takes up) * ARCTIME = 1333ms (time it takes to expand and contract arc) * ARCSTARTROT = 216 degrees (how much the start location of the arc * should rotate each time, 216 gives us a * 5 pointed star shape (it's 360/5 * 3). * For a 7 pointed star, we might do * 360/7 * 3 = 154.286) * CONTAINERWIDTH = 28px * SHRINK_TIME = 400ms */ .preloader-wrapper { display: inline-block; position: relative; width: 48px; height: 48px; } .preloader-wrapper.small { width: 36px; height: 36px; } .preloader-wrapper.big { width: 64px; height: 64px; } .preloader-wrapper.active { /* duration: 360 * ARCTIME / (ARCSTARTROT + (360-ARCSIZE)) */ -webkit-animation: container-rotate 1568ms linear infinite; animation: container-rotate 1568ms linear infinite; } @-webkit-keyframes container-rotate { to { -webkit-transform: rotate(360deg); } } @keyframes container-rotate { to { transform: rotate(360deg); } } .spinner-layer { position: absolute; width: 100%; height: 100%; opacity: 0; } .spinner-blue { border-color: #4285f4; } .spinner-red { border-color: #db4437; } .spinner-yellow { border-color: #f4b400; } .spinner-green { border-color: #0f9d58; } /** * IMPORTANT NOTE ABOUT CSS ANIMATION PROPERTIES (keanulee): * * iOS Safari (tested on iOS 8.1) does not handle animation-delay very well - it doesn't * guarantee that the animation will start _exactly_ after that value. So we avoid using * animation-delay and instead set custom keyframes for each color (as redundant as it * seems). * * We write out each animation in full (instead of separating animation-name, * animation-duration, etc.) because under the polyfill, Safari does not recognize those * specific properties properly, treats them as -webkit-animation, and overrides the * other animation rules. See https://github.com/Polymer/platform/issues/53. */ .active .spinner-layer.spinner-blue { /* durations: 4 * ARCTIME */ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, blue-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .active .spinner-layer.spinner-red { /* durations: 4 * ARCTIME */ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, red-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .active .spinner-layer.spinner-yellow { /* durations: 4 * ARCTIME */ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, yellow-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .active .spinner-layer.spinner-green { /* durations: 4 * ARCTIME */ -webkit-animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: fill-unfill-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both, green-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } @-webkit-keyframes fill-unfill-rotate { /* 0.5 * ARCSIZE */ /* 1 * ARCSIZE */ /* 1.5 * ARCSIZE */ /* 2 * ARCSIZE */ /* 2.5 * ARCSIZE */ /* 3 * ARCSIZE */ /* 3.5 * ARCSIZE */ /* 4 * ARCSIZE */ 12.5% { -webkit-transform: rotate(135deg); } 25% { -webkit-transform: rotate(270deg); } 37.5% { -webkit-transform: rotate(405deg); } 50% { -webkit-transform: rotate(540deg); } 62.5% { -webkit-transform: rotate(675deg); } 75% { -webkit-transform: rotate(810deg); } 87.5% { -webkit-transform: rotate(945deg); } to { -webkit-transform: rotate(1080deg); } } @keyframes fill-unfill-rotate { /* 0.5 * ARCSIZE */ /* 1 * ARCSIZE */ /* 1.5 * ARCSIZE */ /* 2 * ARCSIZE */ /* 2.5 * ARCSIZE */ /* 3 * ARCSIZE */ /* 3.5 * ARCSIZE */ /* 4 * ARCSIZE */ 12.5% { transform: rotate(135deg); } 25% { transform: rotate(270deg); } 37.5% { transform: rotate(405deg); } 50% { transform: rotate(540deg); } 62.5% { transform: rotate(675deg); } 75% { transform: rotate(810deg); } 87.5% { transform: rotate(945deg); } to { transform: rotate(1080deg); } } @-webkit-keyframes blue-fade-in-out { from { opacity: 1; } 25% { opacity: 1; } 26% { opacity: 0; } 89% { opacity: 0; } 90% { opacity: 1; } 100% { opacity: 1; } } @keyframes blue-fade-in-out { from { opacity: 1; } 25% { opacity: 1; } 26% { opacity: 0; } 89% { opacity: 0; } 90% { opacity: 1; } 100% { opacity: 1; } } @-webkit-keyframes red-fade-in-out { from { opacity: 0; } 15% { opacity: 0; } 25% { opacity: 1; } 50% { opacity: 1; } 51% { opacity: 0; } } @keyframes red-fade-in-out { from { opacity: 0; } 15% { opacity: 0; } 25% { opacity: 1; } 50% { opacity: 1; } 51% { opacity: 0; } } @-webkit-keyframes yellow-fade-in-out { from { opacity: 0; } 40% { opacity: 0; } 50% { opacity: 1; } 75% { opacity: 1; } 76% { opacity: 0; } } @keyframes yellow-fade-in-out { from { opacity: 0; } 40% { opacity: 0; } 50% { opacity: 1; } 75% { opacity: 1; } 76% { opacity: 0; } } @-webkit-keyframes green-fade-in-out { from { opacity: 0; } 65% { opacity: 0; } 75% { opacity: 1; } 90% { opacity: 1; } 100% { opacity: 0; } } @keyframes green-fade-in-out { from { opacity: 0; } 65% { opacity: 0; } 75% { opacity: 1; } 90% { opacity: 1; } 100% { opacity: 0; } } /** * Patch the gap that appear between the two adjacent div.circle-clipper while the * spinner is rotating (appears on Chrome 38, Safari 7.1, and IE 11). */ .gap-patch { position: absolute; box-sizing: border-box; top: 0; left: 45%; width: 10%; height: 100%; overflow: hidden; border-color: inherit; } .gap-patch .circle { width: 1000%; left: -450%; } .circle-clipper { display: inline-block; position: relative; width: 50%; height: 100%; overflow: hidden; border-color: inherit; } .circle-clipper .circle { width: 200%; box-sizing: border-box; height: 100%; border-width: 3px; /* STROKEWIDTH */ border-style: solid; border-color: inherit; border-bottom-color: transparent !important; border-radius: 50%; -webkit-animation: none; animation: none; position: absolute; top: 0; right: 0; bottom: 0; } .circle-clipper.left .circle { left: 0; border-right-color: transparent !important; -webkit-transform: rotate(129deg); transform: rotate(129deg); } .circle-clipper.right .circle { left: -100%; border-left-color: transparent !important; -webkit-transform: rotate(-129deg); transform: rotate(-129deg); } .active .circle-clipper.left .circle { /* duration: ARCTIME */ -webkit-animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } .active .circle-clipper.right .circle { /* duration: ARCTIME */ -webkit-animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; } @-webkit-keyframes left-spin { from { -webkit-transform: rotate(130deg); } 50% { -webkit-transform: rotate(-5deg); } to { -webkit-transform: rotate(130deg); } } @keyframes left-spin { from { transform: rotate(130deg); } 50% { transform: rotate(-5deg); } to { transform: rotate(130deg); } } @-webkit-keyframes right-spin { from { -webkit-transform: rotate(-130deg); } 50% { -webkit-transform: rotate(5deg); } to { -webkit-transform: rotate(-130deg); } } @keyframes right-spin { from { transform: rotate(-130deg); } 50% { transform: rotate(5deg); } to { transform: rotate(-130deg); } } #spinnerContainer.cooldown { /* duration: SHRINK_TIME */ -webkit-animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1); animation: container-rotate 1568ms linear infinite, fade-out 400ms cubic-bezier(0.4, 0, 0.2, 1); } @-webkit-keyframes fade-out { from { opacity: 1; } to { opacity: 0; } } @keyframes fade-out { from { opacity: 1; } to { opacity: 0; } } .slider { position: relative; height: 440px; width: 100%; } .slider.fullscreen { height: 100%; width: 100%; position: absolute; top: 0; left: 0; right: 0; bottom: 0; } .slider.fullscreen ul.slides { height: 100%; } .slider.fullscreen ul.indicators { z-index: 2; bottom: 30px; } .slider ul.slides { background-color: #9e9e9e; margin: 0; height: 400px; } .slider ul.slides li { -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})"; filter: "alpha(opacity=(${iefactor}))"; -moz-opacity: 0; -khtml-opacity: 0; opacity: 0; position: absolute; top: 0; left: 0; z-index: 1; width: 100%; height: inherit; overflow: hidden; } .slider ul.slides li img { height: 100%; width: 100%; background-size: cover; } .slider ul.slides li .caption { color: #fff; position: absolute; top: 15%; left: 15%; width: 70%; -ms-filter: "progid:DXImageTransform@mixin Microsoft@mixin Alpha(Opacity=${iefactor})"; filter: "alpha(opacity=(${iefactor}))"; -moz-opacity: 0; -khtml-opacity: 0; opacity: 0; } .slider ul.slides li .caption p { color: #e0e0e0; } .slider ul.slides li.active { z-index: 2; } .slider ul.indicators { position: absolute; text-align: center; left: 0; right: 0; bottom: 0; margin: 0; } .slider ul.indicators li.indicator-item { display: inline-block; position: relative; cursor: pointer; height: 16px; width: 16px; margin: 0 12px; background-color: #e0e0e0; -webkit-transition: background-color 0.3s; -moz-transition: background-color 0.3s; -o-transition: background-color 0.3s; -ms-transition: background-color 0.3s; transition: background-color 0.3s; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; background-clip: padding-box; } .slider ul.indicators li.indicator-item.active { background-color: #4CAF50; } /* ========================================================================== $BASE-PICKER ========================================================================== */ /** * Note: the root picker element should *NOT* be styled more than what's here. */ .picker { font-size: 16px; text-align: left; line-height: 1.2; color: #000000; position: absolute; z-index: 10000; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /** * The picker input element. */ .picker__input { cursor: default; } /** * When the picker is opened, the input element is "activated". */ .picker__input.picker__input--active { border-color: #0089ec; } /** * The holder is the only "scrollable" top-level container element. */ .picker__holder { width: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; } /*! * Default mobile-first, responsive styling for pickadate.js * Demo: http://amsul.github.io/pickadate.js */ /** * Note: the root picker element should *NOT* be styled more than what's here. */ /** * Make the holder and frame fullscreen. */ .picker__holder, .picker__frame { bottom: 0; left: 0; right: 0; top: 100%; } /** * The holder should overlay the entire screen. */ .picker__holder { position: fixed; -webkit-transition: background 0.15s ease-out, top 0s 0.15s; -moz-transition: background 0.15s ease-out, top 0s 0.15s; transition: background 0.15s ease-out, top 0s 0.15s; -webkit-backface-visibility: hidden; } /** * The frame that bounds the box contents of the picker. */ .picker__frame { position: absolute; margin: 0 auto; min-width: 256px; max-width: 300px; max-height: 350px; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -moz-opacity: 0; opacity: 0; -webkit-transition: all 0.15s ease-out; -moz-transition: all 0.15s ease-out; transition: all 0.15s ease-out; } @media (min-height: 28.875em) { .picker__frame { overflow: visible; top: auto; bottom: -100%; max-height: 80%; } } @media (min-height: 40.125em) { .picker__frame { margin-bottom: 7.5%; } } /** * The wrapper sets the stage to vertically align the box contents. */ .picker__wrap { display: table; width: 100%; height: 100%; } @media (min-height: 28.875em) { .picker__wrap { display: block; } } /** * The box contains all the picker contents. */ .picker__box { background: #ffffff; display: table-cell; vertical-align: middle; } @media (min-height: 28.875em) { .picker__box { display: block; border: 1px solid #777777; border-top-color: #898989; border-bottom-width: 0; -webkit-border-radius: 5px 5px 0 0; -moz-border-radius: 5px 5px 0 0; border-radius: 5px 5px 0 0; -webkit-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24); box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24); } } /** * When the picker opens... */ .picker--opened .picker__holder { top: 0; background: transparent; -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)"; zoom: 1; background: rgba(0, 0, 0, 0.32); -webkit-transition: background 0.15s ease-out; -moz-transition: background 0.15s ease-out; transition: background 0.15s ease-out; } .picker--opened .picker__frame { top: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); -moz-opacity: 1; opacity: 1; } @media (min-height: 35.875em) { .picker--opened .picker__frame { top: 10%; bottom: 20% auto; } } /** * For `large` screens, transform into an inline picker. */ /* ========================================================================== CUSTOM MATERIALIZE STYLES ========================================================================== */ .picker__input.picker__input--active { border-color: #E3F2FD; } .picker__frame { margin: 0 auto; max-width: 325px; } @media (min-height: 38.875em) { .picker--opened .picker__frame { top: 10%; bottom: auto; } } /* ========================================================================== $BASE-DATE-PICKER ========================================================================== */ /** * The picker box. */ .picker__box { padding: 0 1em; } /** * The header containing the month and year stuff. */ .picker__header { text-align: center; position: relative; margin-top: 0.75em; } /** * The month and year labels. */ .picker__month, .picker__year { display: inline-block; margin-left: 0.25em; margin-right: 0.25em; } /** * The month and year selectors. */ .picker__select--month, .picker__select--year { height: 2em; padding: 0.5em; margin-left: 0.25em; margin-right: 0.25em; } @media (min-width: 24.5em) { .picker__select--month, .picker__select--year { margin-top: -0.5em; } } .picker__select--month { width: 35%; } .picker__select--year { width: 22.5%; } .picker__select--month:focus, .picker__select--year:focus { border-color: #0089ec; } /** * The month navigation buttons. */ .picker__nav--prev, .picker__nav--next { position: absolute; padding: 0.5em 1.25em; width: 1em; height: 1em; box-sizing: content-box; top: -0.25em; } .picker__nav--prev { left: -1em; padding-right: 1.25em; } .picker__nav--next { right: -1em; padding-left: 1.25em; } .picker__nav--prev:hover, .picker__nav--next:hover { cursor: pointer; color: #000000; background: #b1dcfb; } .picker__nav--disabled, .picker__nav--disabled:hover, .picker__nav--disabled:before, .picker__nav--disabled:before:hover { cursor: default; background: none; border-right-color: #f5f5f5; border-left-color: #f5f5f5; } /** * The calendar table of dates */ .picker__table { text-align: center; border-collapse: collapse; border-spacing: 0; table-layout: fixed; font-size: 1rem; width: 100%; margin-top: 0.75em; margin-bottom: 0.5em; } .picker__table th, .picker__table td { text-align: center; } .picker__table td { margin: 0; padding: 0; } /** * The weekday labels */ .picker__weekday { width: 14.285714286%; font-size: 0.75em; padding-bottom: 0.25em; color: #999999; font-weight: 500; /* Increase the spacing a tad */ } @media (min-height: 33.875em) { .picker__weekday { padding-bottom: 0.5em; } } /** * The days on the calendar */ .picker__day--today { position: relative; color: #595959; letter-spacing: -0.3; padding: 0.75rem 0; font-weight: 400; border: 1px solid transparent; } .picker__day--disabled:before { border-top-color: #aaaaaa; } .picker__day--infocus:hover { cursor: pointer; color: #000; font-weight: 500; } .picker__day--outfocus { padding: 0.75rem 0; color: #fff; } .picker__day--outfocus:hover { cursor: pointer; color: #dddddd; font-weight: 500; } .picker__day--highlighted:hover, .picker--focused .picker__day--highlighted { cursor: pointer; color: #000000; } .picker__day--selected, .picker__day--selected:hover, .picker--focused .picker__day--selected { border-radius: 50%; -webkit-transform: scale(0.75); -moz-transform: scale(0.75); -ms-transform: scale(0.75); -o-transform: scale(0.75); transform: scale(0.75); background: #0089ec; color: #ffffff; } .picker__day--disabled, .picker__day--disabled:hover, .picker--focused .picker__day--disabled { background: #f5f5f5; border-color: #f5f5f5; color: #dddddd; cursor: default; } .picker__day--highlighted.picker__day--disabled, .picker__day--highlighted.picker__day--disabled:hover { background: #bbbbbb; } /** * The footer containing the "today", "clear", and "close" buttons. */ .picker__footer { text-align: center; display: flex; align-items: center; justify-content: space-between; } .picker__button--today, .picker__button--clear, .picker__button--close { border: 1px solid #ffffff; background: #ffffff; font-size: 0.8em; padding: 0.66em 0; font-weight: bold; width: 33%; display: inline-block; vertical-align: bottom; } .picker__button--today:hover, .picker__button--clear:hover, .picker__button--close:hover { cursor: pointer; color: #000000; background: #b1dcfb; border-bottom-color: #b1dcfb; } .picker__button--today:focus, .picker__button--clear:focus, .picker__button--close:focus { background: #b1dcfb; border-color: #0089ec; outline: none; } .picker__button--today:before, .picker__button--clear:before, .picker__button--close:before { position: relative; display: inline-block; height: 0; } .picker__button--today:before, .picker__button--clear:before { content: " "; margin-right: 0.45em; } .picker__button--today:before { top: -0.05em; width: 0; border-top: 0.66em solid #0059bc; border-left: 0.66em solid transparent; } .picker__button--clear:before { top: -0.25em; width: 0.66em; border-top: 3px solid #ee2200; } .picker__button--close:before { content: "\D7"; top: -0.1em; vertical-align: top; font-size: 1.1em; margin-right: 0.35em; color: #777777; } .picker__button--today[disabled], .picker__button--today[disabled]:hover { background: #f5f5f5; border-color: #f5f5f5; color: #dddddd; cursor: default; } .picker__button--today[disabled]:before { border-top-color: #aaaaaa; } /* ========================================================================== CUSTOM MATERIALIZE STYLES ========================================================================== */ .picker__box { border-radius: 2px; overflow: hidden; } .picker__date-display { text-align: center; background-color: #26a69a; color: #fff; padding-bottom: 15px; font-weight: 300; } .picker__weekday-display { background-color: #00897b; padding: 10px; font-weight: 200; letter-spacing: 0.5; font-size: 1rem; margin-bottom: 15px; } .picker__month-display { text-transform: uppercase; font-size: 2rem; } .picker__day-display { font-size: 4.5rem; font-weight: 400; } .picker__year-display { font-size: 1.8rem; color: #80cbc4; } .picker__box { padding: 0; } .picker__calendar-container { padding: 0 1rem; } .picker__calendar-container thead { border: none; } .picker__table { margin-top: 0; margin-bottom: 0.5em; } .picker__day--infocus { color: #595959; letter-spacing: -0.3; padding: 0.75rem 0; font-weight: 400; border: 1px solid transparent; } .picker--focused .picker__day--highlighted { color: #26a69a; } .picker__weekday { font-size: 0.9rem; } .picker--focused .picker__day--selected { border-radius: 50%; -webkit-transform: scale(0.9); -moz-transform: scale(0.9); -ms-transform: scale(0.9); -o-transform: scale(0.9); transform: scale(0.9); background-color: #009688; color: #ffffff; } .picker--focused .picker__day--selected.picker__day--outfocus { background-color: #b2dfdb; } .picker__footer { text-align: right; padding: 5px 10px; } .picker__close, .picker__today { font-size: 1.1rem; padding: 0 1rem; color: #26a69a; } .picker__nav--prev:before, .picker__nav--next:before { content: " "; border-top: 0.5em solid transparent; border-bottom: 0.5em solid transparent; border-right: 0.75em solid #676767; width: 0; height: 0; display: block; margin: 0 auto; } .picker__nav--next:before { border-right: 0; border-left: 0.75em solid #676767; } /* ========================================================================== $BASE-TIME-PICKER ========================================================================== */ /** * The list of times. */ .picker__list { list-style: none; padding: 0.75em 0 4.2em; margin: 0; } /** * The times on the clock. */ .picker__list-item { border-bottom: 1px solid #dddddd; border-top: 1px solid #dddddd; margin-bottom: -1px; position: relative; background: #ffffff; padding: 0.75em 1.25em; } @media (min-height: 46.75em) { .picker__list-item { padding: 0.5em 1em; } } /* Hovered time */ .picker__list-item:hover { cursor: pointer; color: #000000; background: #b1dcfb; border-color: #0089ec; z-index: 10; } /* Highlighted and hovered/focused time */ .picker__list-item--highlighted { border-color: #0089ec; z-index: 10; } .picker__list-item--highlighted:hover, .picker--focused .picker__list-item--highlighted { cursor: pointer; color: #000000; background: #b1dcfb; } /* Selected and hovered/focused time */ .picker__list-item--selected, .picker__list-item--selected:hover, .picker--focused .picker__list-item--selected { background: #0089ec; color: #ffffff; z-index: 10; } /* Disabled time */ .picker__list-item--disabled, .picker__list-item--disabled:hover, .picker--focused .picker__list-item--disabled { background: #f5f5f5; border-color: #f5f5f5; color: #dddddd; cursor: default; border-color: #dddddd; z-index: auto; } /** * The clear button */ .picker--time .picker__button--clear { display: block; width: 80%; margin: 1em auto 0; padding: 1em 1.25em; background: none; border: 0; font-weight: 500; font-size: 0.67em; text-align: center; text-transform: uppercase; color: #666; } .picker--time .picker__button--clear:hover, .picker--time .picker__button--clear:focus { color: #000000; background: #b1dcfb; background: #ee2200; border-color: #ee2200; cursor: pointer; color: #ffffff; outline: none; } .picker--time .picker__button--clear:before { top: -0.25em; color: #666; font-size: 1.25em; font-weight: bold; } .picker--time .picker__button--clear:hover:before, .picker--time .picker__button--clear:focus:before { color: #ffffff; } /* ========================================================================== $DEFAULT-TIME-PICKER ========================================================================== */ /** * The frame the bounds the time picker. */ .picker--time .picker__frame { min-width: 256px; max-width: 320px; } /** * The picker box. */ .picker--time .picker__box { font-size: 1em; background: #f2f2f2; padding: 0; } @media (min-height: 40.125em) { .picker--time .picker__box { margin-bottom: 5em; } } .border { border-radius: 0.5px; }
prerequisites/CMake.app/Contents/doc/cmake/html/variable/CMAKE_LANG_GHS_KERNEL_FLAGS_DEBUG.html
ARMmbed/yotta_osx_installer
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>CMAKE_&lt;LANG&gt;_GHS_KERNEL_FLAGS_DEBUG &mdash; CMake 3.3.2 Documentation</title> <link rel="stylesheet" href="../_static/cmake.css" type="text/css" /> <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../', VERSION: '3.3.2', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="../_static/jquery.js"></script> <script type="text/javascript" src="../_static/underscore.js"></script> <script type="text/javascript" src="../_static/doctools.js"></script> <link rel="shortcut icon" href="../_static/cmake-favicon.ico"/> <link rel="top" title="CMake 3.3.2 Documentation" href="../index.html" /> <link rel="up" title="cmake-variables(7)" href="../manual/cmake-variables.7.html" /> <link rel="next" title="CMAKE_&lt;LANG&gt;_GHS_KERNEL_FLAGS_MINSIZEREL" href="CMAKE_LANG_GHS_KERNEL_FLAGS_MINSIZEREL.html" /> <link rel="prev" title="CMAKE_&lt;LANG&gt;_FLAGS" href="CMAKE_LANG_FLAGS.html" /> </head> <body role="document"> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="CMAKE_LANG_GHS_KERNEL_FLAGS_MINSIZEREL.html" title="CMAKE_&lt;LANG&gt;_GHS_KERNEL_FLAGS_MINSIZEREL" accesskey="N">next</a> |</li> <li class="right" > <a href="CMAKE_LANG_FLAGS.html" title="CMAKE_&lt;LANG&gt;_FLAGS" accesskey="P">previous</a> |</li> <li> <img src="../_static/cmake-logo-16.png" alt="" style="vertical-align: middle; margin-top: -2px" /> </li> <li> <a href="http://www.cmake.org/">CMake</a> &raquo; </li> <li> <a href="../index.html">3.3.2 Documentation</a> &raquo; </li> <li class="nav-item nav-item-1"><a href="../manual/cmake-variables.7.html" accesskey="U">cmake-variables(7)</a> &raquo;</li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <div class="section" id="cmake-lang-ghs-kernel-flags-debug"> <span id="variable:CMAKE_<LANG>_GHS_KERNEL_FLAGS_DEBUG"></span><h1>CMAKE_&lt;LANG&gt;_GHS_KERNEL_FLAGS_DEBUG<a class="headerlink" href="#cmake-lang-ghs-kernel-flags-debug" title="Permalink to this headline">¶</a></h1> <p>GHS kernel flags for Debug build type or configuration.</p> <p>&lt;LANG&gt; flags used when CMAKE_BUILD_TYPE is Debug.</p> </div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h4>Previous topic</h4> <p class="topless"><a href="CMAKE_LANG_FLAGS.html" title="previous chapter">CMAKE_&lt;LANG&gt;_FLAGS</a></p> <h4>Next topic</h4> <p class="topless"><a href="CMAKE_LANG_GHS_KERNEL_FLAGS_MINSIZEREL.html" title="next chapter">CMAKE_&lt;LANG&gt;_GHS_KERNEL_FLAGS_MINSIZEREL</a></p> <div role="note" aria-label="source link"> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="../_sources/variable/CMAKE_LANG_GHS_KERNEL_FLAGS_DEBUG.txt" rel="nofollow">Show Source</a></li> </ul> </div> <div id="searchbox" style="display: none" role="search"> <h3>Quick search</h3> <form class="search" action="../search.html" method="get"> <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> <p class="searchtip" style="font-size: 90%"> Enter search terms or a module, class or function name. </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="CMAKE_LANG_GHS_KERNEL_FLAGS_MINSIZEREL.html" title="CMAKE_&lt;LANG&gt;_GHS_KERNEL_FLAGS_MINSIZEREL" >next</a> |</li> <li class="right" > <a href="CMAKE_LANG_FLAGS.html" title="CMAKE_&lt;LANG&gt;_FLAGS" >previous</a> |</li> <li> <img src="../_static/cmake-logo-16.png" alt="" style="vertical-align: middle; margin-top: -2px" /> </li> <li> <a href="http://www.cmake.org/">CMake</a> &raquo; </li> <li> <a href="../index.html">3.3.2 Documentation</a> &raquo; </li> <li class="nav-item nav-item-1"><a href="../manual/cmake-variables.7.html" >cmake-variables(7)</a> &raquo;</li> </ul> </div> <div class="footer" role="contentinfo"> &copy; Copyright 2000-2015 Kitware, Inc.. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.4a0+. </div> </body> </html>
doc/html_document/help-doc.html
geniusgithub/KJFrameForAndroid
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="zh"> <head> <!-- Generated by javadoc (1.8.0_05) on Thu Oct 23 11:22:39 CST 2014 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>API 帮助</title> <meta name="date" content="2014-10-23"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <script type="text/javascript" src="script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="API \u5E2E\u52A9"; } } catch(err) { } //--> </script> <noscript> <div>您的浏览器已禁用 JavaScript。</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="跳过导航链接">跳过导航链接</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="overview-summary.html">概览</a></li> <li>程序包</li> <li>类</li> <li>使用</li> <li><a href="overview-tree.html">树</a></li> <li><a href="deprecated-list.html">已过时</a></li> <li><a href="index-files/index-1.html">索引</a></li> <li class="navBarCell1Rev">帮助</li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>上一个</li> <li>下一个</li> </ul> <ul class="navList"> <li><a href="index.html?help-doc.html" target="_top">框架</a></li> <li><a href="help-doc.html" target="_top">无框架</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="allclasses-noframe.html">所有类</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">此 API 文档的组织方式</h1> <div class="subTitle">此 API (应用程序编程接口) 文档包含对应于导航栏中的项目的页面, 如下所述。</div> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <h2>概览</h2> <p><a href="overview-summary.html">概览</a> 页面是此 API 文档的首页, 提供了所有程序包的列表及其概要。此页面也可能包含这些程序包的总体说明。</p> </li> <li class="blockList"> <h2>程序包</h2> <p>每个程序包都有一个页面, 其中包含它的类和接口的列表及其概要。此页面可以包含六个类别:</p> <ul> <li>接口 (斜体)</li> <li>类</li> <li>枚举</li> <li>异常错误</li> <li>错误</li> <li>注释类型</li> </ul> </li> <li class="blockList"> <h2>类/接口</h2> <p>每个类, 接口, 嵌套类和嵌套接口都有各自的页面。其中每个页面都由三部分 (类/接口说明, 概要表, 以及详细的成员说明) 组成:</p> <ul> <li>类继承图</li> <li>直接子类</li> <li>所有已知子接口</li> <li>所有已知实现类</li> <li>类/接口声明</li> <li>类/接口说明</li> </ul> <ul> <li>嵌套类概要</li> <li>字段概要</li> <li>构造器概要</li> <li>方法概要</li> </ul> <ul> <li>字段详细资料</li> <li>构造器详细资料</li> <li>方法详细资料</li> </ul> <p>每个概要条目都包含该项目的详细说明的第一句。概要条目按字母顺序排列, 而详细说明则按其在源代码中出现的顺序排列。这样保持了程序员所建立的逻辑分组。</p> </li> <li class="blockList"> <h2>注释类型</h2> <p>每个注释类型都有各自的页面, 其中包含以下部分:</p> <ul> <li>注释类型声明</li> <li>注释类型说明</li> <li>必需元素概要</li> <li>可选元素概要</li> <li>元素详细资料</li> </ul> </li> <li class="blockList"> <h2>枚举</h2> <p>每个枚举都有各自的页面, 其中包含以下部分:</p> <ul> <li>枚举声明</li> <li>枚举说明</li> <li>枚举常量概要</li> <li>枚举常量详细资料</li> </ul> </li> <li class="blockList"> <h2>使用</h2> <p>每个已文档化的程序包, 类和接口都有各自的“使用”页面。此页面介绍了使用给定类或程序包的任何部分的程序包, 类, 方法, 构造器和字段。对于给定的类或接口 A, 其“使用”页面包含 A 的子类, 声明为 A 的字段, 返回 A 的方法, 以及带有类型为 A 的参数的方法和构造器。访问此页面的方法是: 首先转至程序包, 类或接口, 然后单击导航栏中的 "使用" 链接。</p> </li> <li class="blockList"> <h2>树 (类分层结构)</h2> <p>对于所有程序包, 有一个<a href="overview-tree.html">类分层结构</a>页面, 以及每个程序包的分层结构。每个分层结构页面都包含类的列表和接口的列表。从<code>java.lang.Object</code>开始, 按继承结构对类进行排列。接口不从<code>java.lang.Object</code>继承。</p> <ul> <li>查看“概览”页面时, 单击 "树" 将显示所有程序包的分层结构。</li> <li>查看特定程序包, 类或接口页面时, 单击 "树" 将仅显示该程序包的分层结构。</li> </ul> </li> <li class="blockList"> <h2>已过时的 API</h2> <p><a href="deprecated-list.html">已过时的 API</a> 页面列出了所有已过时的 API。一般由于进行了改进并且通常提供了替代的 API, 所以建议不要使用已过时的 API。在将来的实现过程中, 可能会删除已过时的 API。</p> </li> <li class="blockList"> <h2>索引</h2> <p><a href="index-files/index-1.html">索引</a> 包含按字母顺序排列的所有类, 接口, 构造器, 方法和字段的列表。</p> </li> <li class="blockList"> <h2>上一个/下一个</h2> <p>这些链接使您可以转至下一个或上一个类, 接口, 程序包或相关页面。</p> </li> <li class="blockList"> <h2>框架/无框架</h2> <p>这些链接用于显示和隐藏 HTML 框架。所有页面均具有有框架和无框架两种显示方式。</p> </li> <li class="blockList"> <h2>所有类</h2> <p><a href="allclasses-noframe.html">所有类</a>链接显示所有类和接口 (除了非静态嵌套类型)。</p> </li> <li class="blockList"> <h2>序列化表格</h2> <p>每个可序列化或可外部化的类都有其序列化字段和方法的说明。此信息对重新实现者有用, 而对使用 API 的开发者则没有什么用处。尽管导航栏中没有链接, 但您可以通过下列方式获取此信息: 转至任何序列化类, 然后单击类说明的 "另请参阅" 部分中的 "序列化表格"。</p> </li> <li class="blockList"> <h2>常量字段值</h2> <p><a href="constant-values.html">常量字段值</a>页面列出了静态最终字段及其值。</p> </li> </ul> <span class="emphasizedPhrase">此帮助文件适用于使用标准 doclet 生成的 API 文档。</span></div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="跳过导航链接">跳过导航链接</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="overview-summary.html">概览</a></li> <li>程序包</li> <li>类</li> <li>使用</li> <li><a href="overview-tree.html">树</a></li> <li><a href="deprecated-list.html">已过时</a></li> <li><a href="index-files/index-1.html">索引</a></li> <li class="navBarCell1Rev">帮助</li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>上一个</li> <li>下一个</li> </ul> <ul class="navList"> <li><a href="index.html?help-doc.html" target="_top">框架</a></li> <li><a href="help-doc.html" target="_top">无框架</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="allclasses-noframe.html">所有类</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
lib/cassandra/apache-cassandra-3.7/javadoc/org/apache/cassandra/gms/GossipShutdownVerbHandler.html
jasonwee/videoOnCloud
<!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_91) on Mon Jun 06 14:51:10 EDT 2016 --> <title>GossipShutdownVerbHandler (apache-cassandra API)</title> <meta name="date" content="2016-06-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="GossipShutdownVerbHandler (apache-cassandra API)"; } } catch(err) { } //--> var methods = {"i0":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/GossipShutdownVerbHandler.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/apache/cassandra/gms/GossiperMBean.html" title="interface in org.apache.cassandra.gms"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/apache/cassandra/gms/IEndpointStateChangeSubscriber.html" title="interface in org.apache.cassandra.gms"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/gms/GossipShutdownVerbHandler.html" target="_top">Frames</a></li> <li><a href="GossipShutdownVerbHandler.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.cassandra.gms</div> <h2 title="Class GossipShutdownVerbHandler" class="title">Class GossipShutdownVerbHandler</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.apache.cassandra.gms.GossipShutdownVerbHandler</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd><a href="../../../../org/apache/cassandra/net/IVerbHandler.html" title="interface in org.apache.cassandra.net">IVerbHandler</a></dd> </dl> <hr> <br> <pre>public class <span class="typeNameLabel">GossipShutdownVerbHandler</span> extends java.lang.Object implements <a href="../../../../org/apache/cassandra/net/IVerbHandler.html" title="interface in org.apache.cassandra.net">IVerbHandler</a></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/gms/GossipShutdownVerbHandler.html#GossipShutdownVerbHandler--">GossipShutdownVerbHandler</a></span>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/gms/GossipShutdownVerbHandler.html#doVerb-org.apache.cassandra.net.MessageIn-int-">doVerb</a></span>(<a href="../../../../org/apache/cassandra/net/MessageIn.html" title="class in org.apache.cassandra.net">MessageIn</a>&nbsp;message, int&nbsp;id)</code> <div class="block">This method delivers a message to the implementing class (if the implementing class was registered by a call to MessagingService.registerVerbHandlers).</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="GossipShutdownVerbHandler--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>GossipShutdownVerbHandler</h4> <pre>public&nbsp;GossipShutdownVerbHandler()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="doVerb-org.apache.cassandra.net.MessageIn-int-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>doVerb</h4> <pre>public&nbsp;void&nbsp;doVerb(<a href="../../../../org/apache/cassandra/net/MessageIn.html" title="class in org.apache.cassandra.net">MessageIn</a>&nbsp;message, int&nbsp;id)</pre> <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../org/apache/cassandra/net/IVerbHandler.html#doVerb-org.apache.cassandra.net.MessageIn-int-">IVerbHandler</a></code></span></div> <div class="block">This method delivers a message to the implementing class (if the implementing class was registered by a call to MessagingService.registerVerbHandlers). Note that the caller should not be holding any locks when calling this method because the implementation may be synchronized.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/net/IVerbHandler.html#doVerb-org.apache.cassandra.net.MessageIn-int-">doVerb</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/net/IVerbHandler.html" title="interface in org.apache.cassandra.net">IVerbHandler</a></code></dd> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>message</code> - - incoming message that needs handling.</dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/GossipShutdownVerbHandler.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/apache/cassandra/gms/GossiperMBean.html" title="interface in org.apache.cassandra.gms"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/apache/cassandra/gms/IEndpointStateChangeSubscriber.html" title="interface in org.apache.cassandra.gms"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/gms/GossipShutdownVerbHandler.html" target="_top">Frames</a></li> <li><a href="GossipShutdownVerbHandler.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2016 The Apache Software Foundation</small></p> </body> </html>
DATASTAX_CASSANDRA-3.5.0/javadoc/org/apache/cassandra/transport/Event.StatusChange.Status.html
elisska/cloudera-cassandra
<!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_40) on Wed Apr 13 18:09:35 UTC 2016 --> <title>Event.StatusChange.Status (apache-cassandra API)</title> <meta name="date" content="2016-04-13"> <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="Event.StatusChange.Status (apache-cassandra API)"; } } catch(err) { } //--> var methods = {"i0":9,"i1":9}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/Event.StatusChange.Status.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/transport/Event.StatusChange.html" title="class in org.apache.cassandra.transport"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/apache/cassandra/transport/Event.TopologyChange.html" title="class in org.apache.cassandra.transport"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/transport/Event.StatusChange.Status.html" target="_top">Frames</a></li> <li><a href="Event.StatusChange.Status.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.cassandra.transport</div> <h2 title="Enum Event.StatusChange.Status" class="title">Enum Event.StatusChange.Status</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>java.lang.Enum&lt;<a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.html" title="enum in org.apache.cassandra.transport">Event.StatusChange.Status</a>&gt;</li> <li> <ul class="inheritance"> <li>org.apache.cassandra.transport.Event.StatusChange.Status</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Serializable, java.lang.Comparable&lt;<a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.html" title="enum in org.apache.cassandra.transport">Event.StatusChange.Status</a>&gt;</dd> </dl> <dl> <dt>Enclosing class:</dt> <dd><a href="../../../../org/apache/cassandra/transport/Event.StatusChange.html" title="class in org.apache.cassandra.transport">Event.StatusChange</a></dd> </dl> <hr> <br> <pre>public static enum <span class="typeNameLabel">Event.StatusChange.Status</span> extends java.lang.Enum&lt;<a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.html" title="enum in org.apache.cassandra.transport">Event.StatusChange.Status</a>&gt;</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== ENUM CONSTANT SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="enum.constant.summary"> <!-- --> </a> <h3>Enum Constant Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation"> <caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Enum Constant and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.html#DOWN">DOWN</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.html#UP">UP</a></span></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.html" title="enum in org.apache.cassandra.transport">Event.StatusChange.Status</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.html#valueOf-java.lang.String-">valueOf</a></span>(java.lang.String&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.html" title="enum in org.apache.cassandra.transport">Event.StatusChange.Status</a>[]</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.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> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Enum"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Enum</h3> <code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>getClass, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ ENUM CONSTANT DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="enum.constant.detail"> <!-- --> </a> <h3>Enum Constant Detail</h3> <a name="UP"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>UP</h4> <pre>public static final&nbsp;<a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.html" title="enum in org.apache.cassandra.transport">Event.StatusChange.Status</a> UP</pre> </li> </ul> <a name="DOWN"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>DOWN</h4> <pre>public static final&nbsp;<a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.html" title="enum in org.apache.cassandra.transport">Event.StatusChange.Status</a> DOWN</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="values--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>values</h4> <pre>public static&nbsp;<a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.html" title="enum in org.apache.cassandra.transport">Event.StatusChange.Status</a>[]&nbsp;values()</pre> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows: <pre> for (Event.StatusChange.Status c : Event.StatusChange.Status.values()) &nbsp; System.out.println(c); </pre></div> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>an array containing the constants of this enum type, in the order they are declared</dd> </dl> </li> </ul> <a name="valueOf-java.lang.String-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>valueOf</h4> <pre>public static&nbsp;<a href="../../../../org/apache/cassandra/transport/Event.StatusChange.Status.html" title="enum in org.apache.cassandra.transport">Event.StatusChange.Status</a>&nbsp;valueOf(java.lang.String&nbsp;name)</pre> <div class="block">Returns the enum constant of this type with the specified name. The string must match <i>exactly</i> an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>name</code> - the name of the enum constant to be returned.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>the enum constant with the specified name</dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd> <dd><code>java.lang.NullPointerException</code> - if the argument is null</dd> </dl> </li> </ul> </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/Event.StatusChange.Status.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/transport/Event.StatusChange.html" title="class in org.apache.cassandra.transport"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/apache/cassandra/transport/Event.TopologyChange.html" title="class in org.apache.cassandra.transport"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/transport/Event.StatusChange.Status.html" target="_top">Frames</a></li> <li><a href="Event.StatusChange.Status.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2016 The Apache Software Foundation</small></p> </body> </html>
Documentation/WPILib-doxygen/html/functions_func_0x73.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 - Functions</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&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;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&nbsp;List</span></a></li> <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li> <li class="current"><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="functions.html"><span>All</span></a></li> <li class="current"><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&nbsp;Functions</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="functions_func.html#index_a"><span>a</span></a></li> <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> <li><a href="functions_func_0x6a.html#index_j"><span>j</span></a></li> <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> <li><a href="functions_func_0x6e.html#index_n"><span>n</span></a></li> <li><a href="functions_func_0x6f.html#index_o"><span>o</span></a></li> <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> <li class="current"><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> <li><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> <li><a href="functions_func_0x7e.html#index_~"><span>~</span></a></li> </ul> </div> </div> <div class="contents"> &nbsp; <p> <h3><a class="anchor" name="index_s">- s -</a></h3><ul> <li>SafePWM() : <a class="el" href="classSafePWM.html#00a1366b4da440711a1f02d037950a2f">SafePWM</a> <li>Scanf() : <a class="el" href="classSerialPort.html#59c35256ee16b2afa2012e2dbd7f5c20">SerialPort</a> <li>sendMessage() : <a class="el" href="classCANJaguar.html#987e2191d5fc2500c8716aae68b0c567">CANJaguar</a> <li>SensorBase() : <a class="el" href="classSensorBase.html#4e1878930538022da5ac42038d754e0e">SensorBase</a> <li>SerialPort() : <a class="el" href="classSerialPort.html#52c48c5f1dd124a65008640efd4d1cd6">SerialPort</a> <li>Servo() : <a class="el" href="classServo.html#0ec824dc7c4958c1386100b0e71419ee">Servo</a> <li>Set() : <a class="el" href="classSolenoid.html#913e4530ea804c7c0e3baf2458b4dee3">Solenoid</a> , <a class="el" href="classSolenoidBase.html#7aa6f30b9b7337867667f24fec115058">SolenoidBase</a> , <a class="el" href="classCANJaguar.html#a8a4f32b3c1839557cd73996693a116a">CANJaguar</a> , <a class="el" href="classSpeedController.html#baa1c81b41a9cc673fe92978bb12f82e">SpeedController</a> , <a class="el" href="classVictor.html#abd64f11a67851b3a4eed9b2ea1016ca">Victor</a> , <a class="el" href="classDigitalOutput.html#f818325de1365e6b3902e64d7e902d72">DigitalOutput</a> , <a class="el" href="classDoubleSolenoid.html#538ae9e357b7c97e01f213f8fe0a7c20">DoubleSolenoid</a> , <a class="el" href="classError.html#b06aa51c2d0b1a2c2178bdc69c0fa1d3">Error</a> , <a class="el" href="classJaguar.html#1a15089e9ea94102f1d003bce3ae2f54">Jaguar</a> , <a class="el" href="classRelay.html#35d0aa67e99f6ed89ccaa489a4275a31">Relay</a> , <a class="el" href="classServo.html#9ab93d2e70c8be9d2599aa225a6f8610">Servo</a> <li>SetAccumulatorCenter() : <a class="el" href="classAnalogChannel.html#1e28d604275cfda65b8a5e1b5bd79134">AnalogChannel</a> <li>SetAccumulatorDeadband() : <a class="el" href="classAnalogChannel.html#c404eb71545eb04daf9d09c465e0997a">AnalogChannel</a> <li>SetAccumulatorInitialValue() : <a class="el" href="classAnalogChannel.html#ae43ed632a10270fd163d44eea2d8f8f">AnalogChannel</a> <li>SetAnalogOut() : <a class="el" href="classDriverStationEnhancedIO.html#b6888ed427c283821a7b6e7e728486bc">DriverStationEnhancedIO</a> <li>SetAngle() : <a class="el" href="classServo.html#0046f9431e42de3fe63f8ce1b3995eb5">Servo</a> <li>SetAutomaticMode() : <a class="el" href="classUltrasonic.html#16105fb0a316d780b8ea1554e3109825">Ultrasonic</a> <li>SetAverageBits() : <a class="el" href="classAnalogChannel.html#64da26075ace6b51c635ed4b0646742b">AnalogChannel</a> , <a class="el" href="classAnalogModule.html#7c7f2eade6ca95f337d394c89f7f9da5">AnalogModule</a> <li>SetAveraged() : <a class="el" href="classAnalogTrigger.html#450ceb7903cc3cc62beb712bdb2365b4">AnalogTrigger</a> <li>SetAxisChannel() : <a class="el" href="classJoystick.html#4909b232134c0748bc61e223e3552396">Joystick</a> <li>SetBitsPerWord() : <a class="el" href="classSPI.html#f1d668c7056784c19d2d7b494e3c214a">SPI</a> <li>SetBounds() : <a class="el" href="classPWM.html#57047fe0445577e94cebad0aa96165be">PWM</a> <li>SetClockActiveHigh() : <a class="el" href="classSPI.html#5581a5f70c8e49dd712d44f40ee81e6f">SPI</a> <li>SetClockActiveLow() : <a class="el" href="classSPI.html#a1b8cb48216e0a502bb34486636da047">SPI</a> <li>SetClockRate() : <a class="el" href="classSPI.html#27b450354fc78eb4441e7d59f8fe65f2">SPI</a> <li>SetCompatibilityMode() : <a class="el" href="classI2C.html#f4c0a331591f394ae78e3ab03c0d6520">I2C</a> <li>SetContinuous() : <a class="el" href="classPIDController.html#dc068e4069028a0546fad0bee0ef32ca">PIDController</a> <li>SetData() : <a class="el" href="classDriverStation.html#01eb31617213308c3688a5e863c53449">DriverStation</a> <li>SetDefaultAnalogModule() : <a class="el" href="classSensorBase.html#8c49fc685a6e7f75c8b96e3b3c16a576">SensorBase</a> <li>SetDefaultDigitalModule() : <a class="el" href="classSensorBase.html#9918cc94af5adbaa73d92fe5cce66eab">SensorBase</a> <li>SetDefaultSolenoidModule() : <a class="el" href="classSensorBase.html#960a069e2bdca4896dd1049fd4ae4aa1">SensorBase</a> <li>SetDigitalConfig() : <a class="el" href="classDriverStationEnhancedIO.html#fad555dfa62bf621e92edda0b36613d0">DriverStationEnhancedIO</a> <li>SetDigitalOut() : <a class="el" href="classDriverStation.html#a6f189f102414ed3abc4a04aa310bcf3">DriverStation</a> <li>SetDigitalOutput() : <a class="el" href="classDriverStationEnhancedIO.html#1b17805cb755900f4bc9f34f1444d822">DriverStationEnhancedIO</a> <li>SetDIO() : <a class="el" href="classDigitalModule.html#bd4f1500090e6e48cbbf8ad244d29fcd">DigitalModule</a> <li>SetDirection() : <a class="el" href="classRelay.html#2bb78af9da762fe6fb7f3339149720b5">Relay</a> <li>SetDistancePerPulse() : <a class="el" href="classEncoder.html#0bfacc84063e402077f1f620ea863ce5">Encoder</a> <li>SetDistanceUnits() : <a class="el" href="classUltrasonic.html#0fc0d0787d943c45e04194727addaac0">Ultrasonic</a> <li>SetDO_PWMDutyCycle() : <a class="el" href="classDigitalModule.html#74d6d4ae310213e91891de4b8940b917">DigitalModule</a> <li>SetDO_PWMOutputChannel() : <a class="el" href="classDigitalModule.html#c9b8da9267956e905c9083dcfb6b4a8f">DigitalModule</a> <li>SetDO_PWMRate() : <a class="el" href="classDigitalModule.html#3419b44d9ab72e95df6c0917e5e7db72">DigitalModule</a> <li>SetDownSource() : <a class="el" href="classCounter.html#61624bde53b714db868b422ad1e35813">Counter</a> <li>SetDownSourceEdge() : <a class="el" href="classCounter.html#929a270422ce7fe72955f76e33e60fd2">Counter</a> <li>SetEnabled() : <a class="el" href="classUltrasonic.html#a3e3a0dc833cc2549026e6d3c3d7fe47">Ultrasonic</a> , <a class="el" href="classWatchdog.html#7b7f75dc69e94b17f62e57b915f3871a">Watchdog</a> <li>SetEncoderIndexEnable() : <a class="el" href="classDriverStationEnhancedIO.html#01d34032c4d8c282359c62c3b44f8a85">DriverStationEnhancedIO</a> <li>SetError() : <a class="el" href="classErrorBase.html#a2f089952c538a73d3e65a6a0bdb09ea">ErrorBase</a> <li>SetExpiration() : <a class="el" href="classMotorSafetyHelper.html#7b41cb1bf51aa167d97a82691ac94f81">MotorSafetyHelper</a> , <a class="el" href="classRobotDrive.html#6e3e5ca44b0806dec67c92abbe8cc27a">RobotDrive</a> , <a class="el" href="classSafePWM.html#30ee2880db771df845a8fe47f3184953">SafePWM</a> , <a class="el" href="classWatchdog.html#9c38cdfcd21f1b66e4f19793c3116f63">Watchdog</a> , <a class="el" href="classCANJaguar.html#a7de5a947804cc2233a8246b9801e025">CANJaguar</a> , <a class="el" href="classMotorSafety.html#63f5e664f03d4f2c2501a5c191c326bc">MotorSafety</a> <li>SetExternalDirectionMode() : <a class="el" href="classCounter.html#750cad2fc33948da6a8f595bfdd126c8">Counter</a> <li>SetFiltered() : <a class="el" href="classAnalogTrigger.html#1a362d7f7e82eed22d3d384b7a7792fa">AnalogTrigger</a> <li>SetFixedDigitalOutput() : <a class="el" href="classDriverStationEnhancedIO.html#97ef0ba03c428cb102d7a8687e482f17">DriverStationEnhancedIO</a> <li>SetFlowControl() : <a class="el" href="classSerialPort.html#d1163b360e467c7c49fcd8467f8d30ad">SerialPort</a> <li>SetHighPriorityDashboardPackerToUse() : <a class="el" href="classDriverStation.html#656cd215d890fdf28736e950ac664b42">DriverStation</a> <li>SetInputRange() : <a class="el" href="classPIDController.html#a105ab2c2020dfc767fe9b585be0103a">PIDController</a> <li>setInstance() : <a class="el" href="classRobotBase.html#2bc3fec3a452f5aaaa3d13b06dfc4798">RobotBase</a> <li>SetInvertedMotor() : <a class="el" href="classRobotDrive.html#707c3160f50bf6ddf72660f1afefdc0c">RobotDrive</a> <li>SetLED() : <a class="el" href="classDriverStationEnhancedIO.html#34d6429692d4a27bc384533319e4127b">DriverStationEnhancedIO</a> <li>SetLEDs() : <a class="el" href="classDriverStationEnhancedIO.html#476ebdc37d1dd1fa58ab0a0ec09c1c17">DriverStationEnhancedIO</a> <li>SetLeftRightMotorOutputs() : <a class="el" href="classRobotDrive.html#6f17b92a6867d512188b497f192f0715">RobotDrive</a> <li>SetLimitsRaw() : <a class="el" href="classAnalogTrigger.html#495e6dbbca044e64399e28af60bf5ca1">AnalogTrigger</a> <li>SetLimitsVoltage() : <a class="el" href="classAnalogTrigger.html#2c93aad3d8086ef2627bad4f642e538d">AnalogTrigger</a> <li>SetLowPriorityDashboardPackerToUse() : <a class="el" href="classDriverStation.html#693f723f6be659c9385fad63c17d157d">DriverStation</a> <li>SetLSBFirst() : <a class="el" href="classSPI.html#cd12e6ca307ec0dc0fb80f4cc9aa6ee3">SPI</a> <li>SetMaxOutput() : <a class="el" href="classRobotDrive.html#6537ad67ea0306727bbf23a9b8d9b3a8">RobotDrive</a> <li>SetMaxPeriod() : <a class="el" href="classCounter.html#8496d29a6b9424f76075396e9c729bca">Counter</a> , <a class="el" href="classCounterBase.html#ecc60bf699c067a61dc6abd6c077d3dc">CounterBase</a> , <a class="el" href="classEncoder.html#53e9481bd248b04a00809a3ea69d97c1">Encoder</a> <li>SetMinRate() : <a class="el" href="classEncoder.html#ed57d1224b55a28c666f2888102efbec">Encoder</a> <li>SetMSBFirst() : <a class="el" href="classSPI.html#66ed807d9a76400a74e815837b3ff32b">SPI</a> <li>SetNumChannelsToActivate() : <a class="el" href="classAnalogModule.html#3f61de452642508316a5d23bb5b018ec">AnalogModule</a> <li>SetOffline() : <a class="el" href="classServo.html#b151adcbbabc49c1bbe41ec349f17c23">Servo</a> <li>SetOutputRange() : <a class="el" href="classPIDController.html#fa64ecde5d075a47a4cd1431f77b6060">PIDController</a> <li>SetOversampleBits() : <a class="el" href="classAnalogChannel.html#69c5b8dd70a0a5792f2522b2b4758fc3">AnalogChannel</a> , <a class="el" href="classAnalogModule.html#556054af12905bd3d38972d15ecd08dc">AnalogModule</a> <li>SetPeriod() : <a class="el" href="classIterativeRobot.html#1e49eb27408751ea8ce757bfe38717e2">IterativeRobot</a> <li>SetPeriodMultiplier() : <a class="el" href="classPWM.html#274fbac1ce527d1b08fab2ef4d66c35b">PWM</a> <li>SetPID() : <a class="el" href="classCANJaguar.html#e6650f4f7aea62f9df00056076b3d462">CANJaguar</a> , <a class="el" href="classPIDController.html#1e4bf6acfb4eccb1b38f3f74ef74f995">PIDController</a> <li>SetPIDSourceParameter() : <a class="el" href="classEncoder.html#1254bae484d9ac5d794c760d097e10b9">Encoder</a> <li>SetPosition() : <a class="el" href="classPWM.html#93e43862c48e9a06d95bd916b77c183a">PWM</a> <li>SetPositionReference() : <a class="el" href="classCANJaguar.html#e99bbad1a99dcdd8f4620e4cc99705bf">CANJaguar</a> <li>SetPriority() : <a class="el" href="classTask.html#ab7f714e8bbe56738a377b551b65abea">Task</a> <li>SetPulseLengthMode() : <a class="el" href="classCounter.html#dc8d4c41b26c8654fe3775afdb6439f5">Counter</a> <li>SetPWM() : <a class="el" href="classDigitalModule.html#bc8303e66903fec0e24714f307cbb68c">DigitalModule</a> <li>SetPWMOutput() : <a class="el" href="classDriverStationEnhancedIO.html#a343765022e453e9be07719b3e247eb5">DriverStationEnhancedIO</a> <li>SetPWMPeriod() : <a class="el" href="classDriverStationEnhancedIO.html#6f1c7196f6cbcce00a928d7380b9d46f">DriverStationEnhancedIO</a> <li>SetPWMPeriodScale() : <a class="el" href="classDigitalModule.html#af1ce0fcdc44fa5b542a34c3c0f308c0">DigitalModule</a> <li>SetPWMRate() : <a class="el" href="classDigitalOutput.html#d02dd24082f2b19215ee3dba04e54cd9">DigitalOutput</a> <li>SetRaw() : <a class="el" href="classPWM.html#e0916ef0dec0ad1e7793a16d3d6c42c3">PWM</a> <li>SetReadBufferSize() : <a class="el" href="classSerialPort.html#f361b5d5d045d6d36df507a3006c7cb1">SerialPort</a> <li>SetRelayForward() : <a class="el" href="classDigitalModule.html#ef58ca9a278fae8525da6324ec0f0b1a">DigitalModule</a> <li>SetRelayReverse() : <a class="el" href="classDigitalModule.html#6ce11154d9a4480ff1f017c9d8f0b9a5">DigitalModule</a> <li>SetRelayValue() : <a class="el" href="classCompressor.html#fc6d48dce81c1c8a3d14c5da4c8cde99">Compressor</a> <li>SetReverseDirection() : <a class="el" href="classCounter.html#b9f8c0a4b5491767c48262a5471992cd">Counter</a> , <a class="el" href="classEncoder.html#efeeb7018f6f8ee57d824577c1c31f42">Encoder</a> <li>SetSafetyEnabled() : <a class="el" href="classSafePWM.html#882453a32c881e9114623072b7d905e5">SafePWM</a> , <a class="el" href="classCANJaguar.html#0a8faf4d9564c4d78dd3177b6dd66f90">CANJaguar</a> , <a class="el" href="classMotorSafety.html#ddc7856cb3e0c51385efc81d5e659ada">MotorSafety</a> , <a class="el" href="classMotorSafetyHelper.html#d3904b781b0d4e88aba0e9a93995b122">MotorSafetyHelper</a> , <a class="el" href="classRobotDrive.html#09817084c895e48104ff66454174c2af">RobotDrive</a> <li>SetSampleDataOnFalling() : <a class="el" href="classSPI.html#463dc7cb26d0b865c44c73538bc23ae0">SPI</a> <li>SetSampleDataOnRising() : <a class="el" href="classSPI.html#00eec7d4310c18e8cfb4b36592b488d9">SPI</a> <li>SetSampleRate() : <a class="el" href="classAnalogModule.html#19bfb0c8ddf33573c4da105bee04b951">AnalogModule</a> <li>SetSemiPeriodMode() : <a class="el" href="classCounter.html#1047b8a9c109942ecbbeaa66a1ba1842">Counter</a> <li>SetSensitivity() : <a class="el" href="classAccelerometer.html#d34599b5f2dbd1cd62de2c05b4d8e430">Accelerometer</a> , <a class="el" href="classGyro.html#af5c11137c5428c427b2a2162cd43f09">Gyro</a> , <a class="el" href="classRobotDrive.html#e9838cbcf783b2eeca8ace11484ce79f">RobotDrive</a> <li>SetSetpoint() : <a class="el" href="classPIDController.html#60e89182f28d2cc1ee5adf481c2003c9">PIDController</a> <li>SetSlaveSelect() : <a class="el" href="classSPI.html#f0a6cd80fbc758c2a8e344f044e1a59d">SPI</a> <li>SetSpeed() : <a class="el" href="classPWM.html#947e5f6073da9e4d1b60db0c7791ca9c">PWM</a> , <a class="el" href="classSafePWM.html#f1ed936d88f3ee6446b01c17feb24b78">SafePWM</a> <li>SetSpeedReference() : <a class="el" href="classCANJaguar.html#581f44af48079151da32f6399e196c33">CANJaguar</a> <li>SetTimeout() : <a class="el" href="classSerialPort.html#a3ad209dd5ab32427fccf711b476d8bf">SerialPort</a> <li>SetTolerance() : <a class="el" href="classPIDController.html#86cba2e65c803b3f3d2c63ea0dfdaec4">PIDController</a> <li>setTransaction() : <a class="el" href="classCANJaguar.html#dbe1668f13ba9cc7275c694c5aae01e0">CANJaguar</a> <li>SetUpdateWhenEmpty() : <a class="el" href="classCounter.html#6701899f12600eabff3345223d65d4db">Counter</a> <li>SetUpDownCounterMode() : <a class="el" href="classCounter.html#a71cea0b77f6664454f0f56a665b00c4">Counter</a> <li>SetUpSource() : <a class="el" href="classCounter.html#2788b50d591e9b9058bc7250268ced5d">Counter</a> <li>SetUpSourceEdge() : <a class="el" href="classCounter.html#f75f91bb8b014b04585b5bebb102e65d">Counter</a> , <a class="el" href="classDigitalInput.html#b53b8614e977073f11f601d484951349">DigitalInput</a> , <a class="el" href="classDigitalOutput.html#1aeededcacfa0d99f29b72bfaed873f3">DigitalOutput</a> <li>SetVoltageRampRate() : <a class="el" href="classCANJaguar.html#73540797125ae698a72806f9cf10330d">CANJaguar</a> <li>SetWriteBufferMode() : <a class="el" href="classSerialPort.html#1fd9a6370da04fee0bdc978d04a95c78">SerialPort</a> <li>SetWriteBufferSize() : <a class="el" href="classSerialPort.html#819775c096d0a679d0aad4ee420413a4">SerialPort</a> <li>SetZero() : <a class="el" href="classAccelerometer.html#a769546f0fd9e93a25e8f696102ff8dd">Accelerometer</a> <li>SimpleRobot() : <a class="el" href="classSimpleRobot.html#8d757e76408f3873308f77c989f3a44b">SimpleRobot</a> <li>SlotToIndex() : <a class="el" href="classAnalogModule.html#bb75added412545431fbc6a8fb6d6fbc">AnalogModule</a> , <a class="el" href="classSolenoidBase.html#279a4e4d5ef5973208fd468ab17efdba">SolenoidBase</a> , <a class="el" href="classDigitalModule.html#4ad8f109a2f9a6a5a7a73bc3fbb0b073">DigitalModule</a> <li>SmartDashboard() : <a class="el" href="classSmartDashboard.html#8ea30571169aaa8d656765084d14221d">SmartDashboard</a> <li>Solenoid() : <a class="el" href="classSolenoid.html#a155888eec5f296d849847d804612f59">Solenoid</a> <li>SolenoidBase() : <a class="el" href="classSolenoidBase.html#1ba5489c438cb364c4f97dd86e3d6533">SolenoidBase</a> <li>SPI() : <a class="el" href="classSPI.html#b8a031abcb911915f2221324211f37b4">SPI</a> <li>Start() : <a class="el" href="classCompressor.html#710bb74699442b508062a109ed24e6a0">Compressor</a> , <a class="el" href="classEncoder.html#c998caf5c4685e1497cac25f25534c9d">Encoder</a> , <a class="el" href="classCounter.html#0766c0a11e84866758b20b29e2e17cc0">Counter</a> , <a class="el" href="classCounterBase.html#c8c376e198e0402fd46712e323475302">CounterBase</a> , <a class="el" href="classTimer.html#4e607b129b392c11adddd9641a320436">Timer</a> , <a class="el" href="classTask.html#ed180b79ad986ff5e55170400db3c226">Task</a> <li>StartCompetition() : <a class="el" href="classSimpleRobot.html#e8a0924c156c64ecee70101e1e17e7b2">SimpleRobot</a> , <a class="el" href="classIterativeRobot.html#b0af04a781b0390981b9f0dd75358515">IterativeRobot</a> , <a class="el" href="classRobotBase.html#4eadc124fd0004a681055a51223a4c7a">RobotBase</a> <li>StartPeriodic() : <a class="el" href="classNotifier.html#d86c4d07ac2947b0fa51b2ec4ed95dbf">Notifier</a> <li>startRobotTask() : <a class="el" href="classRobotBase.html#17eddc47e75e82e61b89afc9f6ce3fcb">RobotBase</a> <li>StartSingle() : <a class="el" href="classNotifier.html#f62f654c1918a9c4256b201c5a9f78f7">Notifier</a> <li>StatusIsFatal() : <a class="el" href="classErrorBase.html#05790f219c9e436a09752f73f7344024">ErrorBase</a> <li>Stop() : <a class="el" href="classCounter.html#a6ea006a3109769cc1e0a37dc25e11f4">Counter</a> , <a class="el" href="classCounterBase.html#ea8ddd4a23c5d0fc05164a9b55fb22f8">CounterBase</a> , <a class="el" href="classEncoder.html#2b4d86aa679b2b305739165ce24d0df0">Encoder</a> , <a class="el" href="classCompressor.html#293182b6bfc18782b29deb8d7a99ff40">Compressor</a> , <a class="el" href="classTimer.html#6379e797f968aaee6ac3bb12dc6b81c5">Timer</a> , <a class="el" href="classNotifier.html#cbd1d398b7338e18d273a3acb6c1bf63">Notifier</a> , <a class="el" href="classTask.html#8249580436a83b7c1b089057a5f3d366">Task</a> <li>StopMotor() : <a class="el" href="classRobotDrive.html#7768e45b579e742d21c279bf84d4613b">RobotDrive</a> , <a class="el" href="classCANJaguar.html#5ce4840f1e80913836cfb2ddb2d7d50b">CANJaguar</a> , <a class="el" href="classMotorSafety.html#4efa2234874ade30cc093118b96b42e1">MotorSafety</a> , <a class="el" href="classSafePWM.html#66a27761982521795879b6067d81a6dc">SafePWM</a> <li>Suspend() : <a class="el" href="classTask.html#ec1f9e1c674e60ea4591dfb0994dbd31">Task</a> <li>Synchronized() : <a class="el" href="classSynchronized.html#05041c29b6ec042b9537f62e40f022fa">Synchronized</a> </ul> </div> <hr size="1"><address style="text-align: right;"><small>Generated on Wed Feb 9 11:20:45 2011 for WPILIB by&nbsp; <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>
doc/html/interface_s_c_general_components_open_hours.html
secucard/secucard-connect-ios-sdk
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.11"/> <title>SecucardConnectSDK: SCGeneralComponentsOpenHours Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">SecucardConnectSDK </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.11 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</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> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#properties">Properties</a> &#124; <a href="class_s_c_general_components_open_hours-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">SCGeneralComponentsOpenHours Class Reference</div> </div> </div><!--header--> <div class="contents"> <div class="dynheader"> Inheritance diagram for SCGeneralComponentsOpenHours:</div> <div class="dyncontent"> <div class="center"> <img src="interface_s_c_general_components_open_hours.png" usemap="#SCGeneralComponentsOpenHours_map" alt=""/> <map id="SCGeneralComponentsOpenHours_map" name="SCGeneralComponentsOpenHours_map"> </map> </div></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a> Properties</h2></td></tr> <tr class="memitem:a7cdda8de07da1991ab3fd341f6219393"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7cdda8de07da1991ab3fd341f6219393"></a> <a class="el" href="interface_s_c_general_components_day_time.html">SCGeneralComponentsDayTime</a> *&#160;</td><td class="memItemRight" valign="bottom"><b>open</b></td></tr> <tr class="separator:a7cdda8de07da1991ab3fd341f6219393"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a33554074aa197cc51778d52c7ccf96b7"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a33554074aa197cc51778d52c7ccf96b7"></a> <a class="el" href="interface_s_c_general_components_day_time.html">SCGeneralComponentsDayTime</a> *&#160;</td><td class="memItemRight" valign="bottom"><b>close</b></td></tr> <tr class="separator:a33554074aa197cc51778d52c7ccf96b7"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <hr/>The documentation for this class was generated from the following file:<ul> <li>Pod/Classes/Model/General/Components/<a class="el" href="_s_c_general_components_open_hours_8h_source.html">SCGeneralComponentsOpenHours.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.11 </small></address> </body> </html>
app/basket/basketModal.html
ebi-uniprot/QuickGoFE
<span ng-click="openBasket()"> Basket &nbsp; <span id="basket" class="pop-basket" ng-show="countBasket>0"><strong>{{countBasket}}</strong></span></span> <script type="text/ng-template" id="basketModalContent.html"> <div class="quickgo-modal" cg-busy="basketPromises"> <div id="basket-contents-show" cg-busy="basketPromise"> <div class="row column small-12"> <h2>Basket <small>(maximum 400 entries)</small></h2> <button ng-click="ok()" class="close-button" aria-label="Close reveal" type="button"> <span aria-hidden="true">&times;</span> </button> </div> <!--Show message if the basket is empty--> <div ng-show="basketItems.length <= 0" class="row column small-12"> <h3> Your basket is currently empty.</h3> <p>You can add a GO term to the Term Basket by clicking on the <element class="icon icon-static" data-icon="b"></element> icon that appears next to its identifier in QuickGO.</p> </div> <!--List GO Terms in the basket--> <div ng-show="basketItems.length > 0" class="row"> <div class="column small-12 overflow-pane"> <table id="basketTermsTable"> <thead> <tr> <th>Term ID</th> <th>Term name</th> <th>Remove</th> </tr> </thead> <tbody id="basketTermsRows" class="basket-rows"> <tr ng-repeat="basketItem in basketItems"> <td><a href="term/{{basketItem.id}}" class="quickgo-link selectable" ng-click="ok()">{{basketItem.id}}</a></td> <td>{{basketItem.name}}</td> <td><a ng-click="removeItem(basketItem)" class="icon icon-functional basket-remove" data-icon="d"></a></td> </tr> </tbody> </table> </div> <div class="row column small-12"> <div class="float-right"> <chart-icon ids="{{basketIds}}"></chart-icon> <button class="button" ng-click="filterUsingBasketTerms()">Filter With Terms</button> <a class="button icon-generic" ng-href="{{getJsonBasket()}}" data-icon="L" target="_blank"> JSON</a> <button class="button icon-functional" data-icon="=" ng-click="exportBasket()">Export</button> <button class="button" ng-click="emptyBasket()">Clear</button> </div> </div> <hr> </div> <div class="row columns small-12"> <!-- Enter GO Terms Directly--> <div> <label>Enter a list of terms to be added to your basket: <textarea ng-model="form.inputTerms" placeholder="e.g. GO:0016887,GO:0000166, ..."></textarea> </label> </div> <button class="button float-right" ng-click="submit()">Add Terms</button> </div> </div> <!--End of basket--> </div> </script>
datavecdoc/org/datavec/api/formats/input/impl/package-tree.html
YeewenTan/YeewenTan.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_73) on Mon Sep 19 13:17:58 PDT 2016 --> <title>org.datavec.api.formats.input.impl Class Hierarchy</title> <meta name="date" content="2016-09-19"> <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.datavec.api.formats.input.impl 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-files/index-1.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/datavec/api/formats/input/package-tree.html">Prev</a></li> <li><a href="../../../../../../org/datavec/api/formats/output/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/datavec/api/formats/input/impl/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 class="title">Hierarchy For Package org.datavec.api.formats.input.impl</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.Object <ul> <li type="circle">org.datavec.api.formats.input.<a href="../../../../../../org/datavec/api/formats/input/BaseInputFormat.html" title="class in org.datavec.api.formats.input"><span class="typeNameLink">BaseInputFormat</span></a> (implements org.datavec.api.formats.input.<a href="../../../../../../org/datavec/api/formats/input/InputFormat.html" title="interface in org.datavec.api.formats.input">InputFormat</a>) <ul> <li type="circle">org.datavec.api.formats.input.impl.<a href="../../../../../../org/datavec/api/formats/input/impl/CSVInputFormat.html" title="class in org.datavec.api.formats.input.impl"><span class="typeNameLink">CSVInputFormat</span></a></li> <li type="circle">org.datavec.api.formats.input.impl.<a href="../../../../../../org/datavec/api/formats/input/impl/LibSvmInputFormat.html" title="class in org.datavec.api.formats.input.impl"><span class="typeNameLink">LibSvmInputFormat</span></a></li> <li type="circle">org.datavec.api.formats.input.impl.<a href="../../../../../../org/datavec/api/formats/input/impl/LineInputFormat.html" title="class in org.datavec.api.formats.input.impl"><span class="typeNameLink">LineInputFormat</span></a></li> <li type="circle">org.datavec.api.formats.input.impl.<a href="../../../../../../org/datavec/api/formats/input/impl/MatlabInputFormat.html" title="class in org.datavec.api.formats.input.impl"><span class="typeNameLink">MatlabInputFormat</span></a></li> <li type="circle">org.datavec.api.formats.input.impl.<a href="../../../../../../org/datavec/api/formats/input/impl/SVMLightInputFormat.html" title="class in org.datavec.api.formats.input.impl"><span class="typeNameLink">SVMLightInputFormat</span></a></li> </ul> </li> <li type="circle">org.datavec.api.formats.input.impl.<a href="../../../../../../org/datavec/api/formats/input/impl/ListStringInputFormat.html" title="class in org.datavec.api.formats.input.impl"><span class="typeNameLink">ListStringInputFormat</span></a> (implements org.datavec.api.formats.input.<a href="../../../../../../org/datavec/api/formats/input/InputFormat.html" title="interface in org.datavec.api.formats.input">InputFormat</a>)</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-files/index-1.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/datavec/api/formats/input/package-tree.html">Prev</a></li> <li><a href="../../../../../../org/datavec/api/formats/output/package-tree.html">Next</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/datavec/api/formats/input/impl/package-tree.html" target="_top">Frames</a></li> <li><a href="package-tree.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
target13/site/clover/com/cardatechnologies/utils/validators/abaroutevalidator/Test_AbaRouteValidator_13b_testAbaNumberCheck_28712_bad_oe7.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">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <a href="http://cardatechnologies.com" target="_top"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </a> </div> <div class="aui-page-header-main" > <h1> <a href="http://cardatechnologies.com" target="_top"> ABA Route Transit Number Validator 1.0.1-SNAPSHOT </a> </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../../" data-package-name="com.cardatechnologies.utils.validators.abaroutevalidator"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <div class="aui-page-header-main"><ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../../dashboard.html"> Project Clover database Sat Aug 7 2021 12:29:33 MDT</a></li> <li><a href="test-pkg-summary.html">Package com.cardatechnologies.utils.validators.abaroutevalidator</a></li> <li><a href="test-Test_AbaRouteValidator_13b.html">Class Test_AbaRouteValidator_13b</a></li> </ol></div> <h1 class="aui-h2-clover"> Test testAbaNumberCheck_28712_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_13b.html?line=36352#src-36352" >testAbaNumberCheck_28712_bad</a> </td> <td> <span class="sortValue">1</span><span class="aui-lozenge aui-lozenge-success">PASS</span> </td> <td> 7 Aug 12:43:09 </td> <td> 0.0 </td> <td> <div></div> <div class="errorMessage"></div> </td> </tr> </tbody> </table> <div>&#160;</div> <table class="aui aui-table-sortable"> <thead> <tr> <th style="white-space:nowrap;"><label title="A class that was directly hit by this test.">Target Class</label></th> <th colspan="4"><label title="The percentage of coverage contributed by each single test.">Coverage contributed by</label> testAbaNumberCheck_28712_bad</th> </tr> </thead> <tbody> <tr> <td> <span class="sortValue">com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException</span> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/exceptions/AbaRouteValidationException.html?id=31615#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> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/ErrorCodes.html?id=31615#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> &#160;&#160;<a href="../../../../../com/cardatechnologies/utils/validators/abaroutevalidator/AbaRouteValidator.html?id=31615#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>
app/www/demos/index_backbone_ajax.html
ericwgreene/intuit-bootcamp
<!DOCTYPE html> <html dir="ltr"> <head> <title>Intuit Boot Camp Demonstrations</title> <link href='libs/bootstrap/dist/css/bootstrap.min.css' rel="stylesheet"> <link href='libs/bootstrap/dist/css/bootstrap-theme.min.css' rel="stylesheet"> <link href='css/site.css' rel="stylesheet"> </head> <body> <script src="libs/jquery/dist/jquery.js"></script> <script src="libs/bootstrap/dist/js/bootstrap.js"></script> <script src="libs/underscore/underscore.js"></script> <script src="libs/backbone/backbone.js"></script> <script> Backbone.ajax = function(options) { var xhr = new XMLHttpRequest(); xhr.onreadystatechange = function() { if (xhr.status !== 200 && xhr.readyState > 1) { options.error(xhr); } if (xhr.readyState == 4) { options.success(xhr); } } xhr.open(options.type, options.url); xhr.setRequestHeader("Content-Type", options.contentType); xhr.send(options.data); } var Transaction = Backbone.Model.extend({ idAttribute: "_id", url: "/api/transaction", initialize: function() { this._id = null; this.accountNumber = null; this.payee = null; this.taxItem = null; this.amount = 39; this.description = null; } }); var t = new Transaction(); t.set("accountNumber", 345); t.set("payee", "Intuit"); t.set("taxItem", "Payroll"); t.set("amount", 230); t.set("description", "Because I love paying people..."); t.save(null, { success: function() { console.dir(t.attributes); } }); /* var t = new Transaction({ "accountNumber" : 1, "payee" : "Intuit", "taxItem" : "Business Deduction", "amount" : 39.0000000000000000, "description" : "Paid My Quickbooks Subscription Fee" }); */ console.dir(t.attributes); </script> </body> </html>
treebanks/pt_bosque/pt-feat-AdpType.html
UniversalDependencies/universaldependencies.github.io
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-GB" xml:lang="en-GB" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>Statistics of AdpType in UD_Portuguese</title> <link rel="root" href=""/> <!-- for JS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="../../css/jquery-ui-redmond.css"/> <link rel="stylesheet" type="text/css" href="../../css/style.css"/> <link rel="stylesheet" type="text/css" href="../../css/style-vis.css"/> <link rel="stylesheet" type="text/css" href="../../css/hint.css"/> <script type="text/javascript" src="../../lib/ext/head.load.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/3.2.2/anchor.min.js"></script> <script>document.addEventListener("DOMContentLoaded", function(event) {anchors.add();});</script> <!-- Set up this custom Google search at https://cse.google.com/cse/business/settings?cx=001145188882102106025:dl1mehhcgbo --> <!-- DZ 2021-01-22: I am temporarily hiding the search field to find out whether it slows down loading of the title page. <script> (function() { var cx = '001145188882102106025:dl1mehhcgbo'; var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; gcse.src = 'https://cse.google.com/cse.js?cx=' + cx; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s); })(); </script> --> <!-- <link rel="shortcut icon" href="favicon.ico"/> --> </head> <body> <div id="main" class="center"> <div id="hp-header"> <table width="100%"><tr><td width="50%"> <span class="header-text"><a href="http://universaldependencies.org/#language-">home</a></span> <span class="header-text"><a href="https://github.com/universaldependencies/docs/edit/pages-source/treebanks/pt_bosque/pt-feat-AdpType.md" target="#">edit page</a></span> <span class="header-text"><a href="https://github.com/universaldependencies/docs/issues">issue tracker</a></span> </td><td> <gcse:search></gcse:search> </td></tr></table> </div> <hr/> <div class="v2complete"> This page pertains to UD version 2. </div> <div id="content"> <noscript> <div id="noscript"> It appears that you have Javascript disabled. Please consider enabling Javascript for this page to see the visualizations. </div> </noscript> <!-- The content may include scripts and styles, hence we must load the shared libraries before the content. --> <script type="text/javascript"> console.time('loading libraries'); var root = '../../'; // filled in by jekyll head.js( // External libraries // DZ: Copied from embedding.html. I don't know which one is needed for what, so I'm currently keeping them all. root + 'lib/ext/jquery.min.js', root + 'lib/ext/jquery.svg.min.js', root + 'lib/ext/jquery.svgdom.min.js', root + 'lib/ext/jquery.timeago.js', root + 'lib/ext/jquery-ui.min.js', root + 'lib/ext/waypoints.min.js', root + 'lib/ext/jquery.address.min.js' ); </script> <h2 id="treebank-statistics-ud_portuguese-features-adptype">Treebank Statistics: UD_Portuguese: Features: <code class="language-plaintext highlighter-rouge">AdpType</code></h2> <p>This feature is language-specific. It occurs with 2 different values: <code class="language-plaintext highlighter-rouge">Prep</code>, <code class="language-plaintext highlighter-rouge">Preppron</code>.</p> <p>5 tokens (0%) have a non-empty value of <code class="language-plaintext highlighter-rouge">AdpType</code>. 4 types (0%) occur at least once with a non-empty value of <code class="language-plaintext highlighter-rouge">AdpType</code>. 4 lemmas (0%) occur at least once with a non-empty value of <code class="language-plaintext highlighter-rouge">AdpType</code>. The feature is used with 1 part-of-speech tags: <tt><a href="pt-pos-ADP.html">ADP</a></tt> (5; 0% instances).</p> <h3 id="adp"><code class="language-plaintext highlighter-rouge">ADP</code></h3> <p>5 <tt><a href="pt-pos-ADP.html">ADP</a></tt> tokens (0% of all <code class="language-plaintext highlighter-rouge">ADP</code> tokens) have a non-empty value of <code class="language-plaintext highlighter-rouge">AdpType</code>.</p> <p><code class="language-plaintext highlighter-rouge">ADP</code> tokens may have the following values of <code class="language-plaintext highlighter-rouge">AdpType</code>:</p> <ul> <li><code class="language-plaintext highlighter-rouge">Prep</code> (4; 80% of non-empty <code class="language-plaintext highlighter-rouge">AdpType</code>): <em>de, com, por</em></li> <li><code class="language-plaintext highlighter-rouge">Preppron</code> (1; 20% of non-empty <code class="language-plaintext highlighter-rouge">AdpType</code>): <em>da</em></li> </ul> </div> <!-- support for embedded visualizations --> <script type="text/javascript"> var root = '../../'; // filled in by jekyll head.js( // We assume that external libraries such as jquery.min.js have already been loaded outside! // (See _layouts/base.html.) // brat helper modules root + 'lib/brat/configuration.js', root + 'lib/brat/util.js', root + 'lib/brat/annotation_log.js', root + 'lib/ext/webfont.js', // brat modules root + 'lib/brat/dispatcher.js', root + 'lib/brat/url_monitor.js', root + 'lib/brat/visualizer.js', // embedding configuration root + 'lib/local/config.js', // project-specific collection data root + 'lib/local/collections.js', // Annodoc root + 'lib/annodoc/annodoc.js', // NOTE: non-local libraries 'https://spyysalo.github.io/conllu.js/conllu.js' ); var webFontURLs = [ // root + 'static/fonts/Astloch-Bold.ttf', root + 'static/fonts/PT_Sans-Caption-Web-Regular.ttf', root + 'static/fonts/Liberation_Sans-Regular.ttf' ]; var setupTimeago = function() { jQuery("time.timeago").timeago(); }; head.ready(function() { setupTimeago(); // mark current collection (filled in by Jekyll) Collections.listing['_current'] = ''; // perform all embedding and support functions Annodoc.activate(Config.bratCollData, Collections.listing); }); </script> <!-- google analytics --> <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-55233688-1', 'auto'); ga('send', 'pageview'); </script> <div id="footer"> <p class="footer-text">&copy; 2014–2021 <a href="http://universaldependencies.org/introduction.html#contributors" style="color:gray">Universal Dependencies contributors</a>. Site powered by <a href="http://spyysalo.github.io/annodoc" style="color:gray">Annodoc</a> and <a href="http://brat.nlplab.org/" style="color:gray">brat</a></p>. </div> </div> </body> </html>
src/font/verb_mediumitalic/stylesheet.css
appcubator/appbuild
/* * All OpenType features and all extended glyphs have been removed. * The fonts included in this stylesheet are subject to the End User License you purchased * from Yellow Design Studio. The fonts are protected under domestic and international trademark and * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or * distributing this font software. * (c) 2012 Yellow Design Studio. www.yellowdesignstudio.com */ @font-face { font-family: 'verb_mediumitalic'; src: url('VerbMedium-Italic-webfont.eot'); src: url('VerbMedium-Italic-webfont.eot?#iefix') format('embedded-opentype'), url('VerbMedium-Italic-webfont.woff') format('woff'), url('VerbMedium-Italic-webfont.ttf') format('truetype'), url('VerbMedium-Italic-webfont.svg#verb_mediumitalic') format('svg'); font-weight: normal; font-style: normal; }
webroot/rsrc/css/phui/phui-form-view.css
akkakks/phabricator
/** * @provides phui-form-view-css */ .phui-form-view { padding: 16px; } .phui-form-view.phui-form-full-width { padding: 0; } /* only used in transaction comments */ .phui-form-shaded .phui-form-view { border-bottom: 1px solid #D4DAE0; background: #F4F5F8; } .phui-form-view label.aphront-form-label { padding-top: 5px; width: 19%; float: left; text-align: right; font-weight: bold; font-size: 13px; color: {$bluetext}; -webkit-font-smoothing: antialiased; } .device-phone .phui-form-view label.aphront-form-label, .phui-form-full-width.phui-form-view label.aphront-form-label { display: block; float: none; text-align: left; width: 100%; margin-bottom: 3px; } .aphront-form-control-select label.aphront-form-label { padding-top: 4px; } .aphront-form-input { margin-left: 20%; margin-right: 20%; width: 60%; } .device-phone .aphront-form-input, .phui-form-full-width .aphront-form-input { margin-left: 0%; margin-right: 0%; width: 100%; } .aphront-form-input *::-webkit-input-placeholder { color:{$greytext} !important; } .aphront-form-input *::-moz-placeholder { color:{$greytext} !important; opacity: 1; /* Firefox nudges the opacity to 0.4 */ } .aphront-form-input *:-ms-input-placeholder { color:{$greytext} !important; } .aphront-form-error { width: 18%; float: right; color: {$red}; font-weight: bold; padding-top: 5px; } .aphront-dialog-body .phui-form-full-width { margin-top: -10px; } .aphront-dialog-body .phui-form-view { padding: 0; } .device-phone .aphront-form-error, .phui-form-full-width .aphront-form-error { float: none; width: 100%; } .device-phone .aphront-form-drag-and-drop-upload { display: none; } .aphront-form-required { font-weight: normal; color: {$lightgreytext}; font-size: 11px; -webkit-font-smoothing: antialiased; } .aphront-form-input input { width: 100%; } .aphront-form-input textarea { display: block; width: 100%; box-sizing: border-box; height: 12em; } .aphront-form-control { padding: 5px; } .phui-form-full-width .aphront-form-control { padding: 4px 0; } .aphront-form-control-submit button, .aphront-form-control-submit a.button { float: right; margin: 4px 0 0 8px; } .phui-form-control-multi-submit input, .phui-form-control-multi-submit button, .phui-form-control-multi-submit a { float: right; margin: 4px 0 0 8px; width: auto; } .aphront-form-control-textarea textarea.aphront-textarea-very-short { height: 44px; } .aphront-form-control-textarea textarea.aphront-textarea-very-tall { height: 24em; } .aphront-form-control-select .aphront-form-input { padding-top: 2px; } .phui-form-view .aphront-form-caption { font-size: 12px; color: {$bluetext}; padding: 8px 4px; text-align: right; margin-right: 20%; margin-left: 20%; -webkit-font-smoothing: antialiased; line-height: 15px; } .device-phone .phui-form-view .aphront-form-caption, .phui-form-full-width .phui-form-view .aphront-form-caption { margin-right: 0%; } /* override for when inside an aphront-panel-view */ .aphront-panel-view .phui-form-view h1 { padding: 0em 0em .8em 0em; } .aphront-form-instructions { width: 60%; margin-left: 20%; padding: 10px 4px; } .device .aphront-form-instructions, .phui-form-full-width .aphront-form-instructions { width: 100%; margin: 0; } .aphront-form-important { margin: .5em 0; background: #ffffdd; padding: .5em 1em; } .aphront-form-important code { display: block; padding: .25em; margin: .5em 2em; } .aphront-form-control-static .aphront-form-input, .aphront-form-control-markup .aphront-form-input { padding-top: 6px; font-size: 13px; } .aphront-form-control-togglebuttons .aphront-form-input { padding: 2px 0 0 0; } table.aphront-form-control-radio-layout, table.aphront-form-control-checkbox-layout { margin-top: 3px; font-size: 13px; } table.aphront-form-control-radio-layout th { padding-top: 3px; padding-left: 8px; padding-bottom: 4px; font-weight: bold; color: {$darkgreytext}; } table.aphront-form-control-checkbox-layout th { padding-top: 2px; padding-left: 8px; padding-bottom: 4px; color: {$darkgreytext}; } .aphront-form-control-radio-layout td input, .aphront-form-control-checkbox-layout td input { margin-top: 4px; width: auto; } .aphront-form-control-radio-layout label.disabled, .aphront-form-control-checkbox-layout label.disabled { color: {$greytext}; } .aphront-form-radio-caption { margin-top: 4px; font-size: 12px; font-weight: normal; color: #555; } .aphront-form-control-image span { margin: 0 4px 0 2px; } .aphront-form-control-image .default-image { display: inline; width: 12px; } .aphront-form-input hr { border: none; background: #bbbbbb; height: 1px; position: relative; } .aphront-form-inset { margin: 0 0 8px; padding: 8px; background: #fff; border: 1px solid #d4dae0; } .aphront-form-inset h1 { color: {$greytext}; font-weight: normal; padding-bottom: 8px; } .aphront-form-drag-and-drop-file-list { width: 400px; } .drag-and-drop-instructions { color: {$darkgreytext}; font-size: 11px; padding: 6px 8px; } .drag-and-drop-file-target { border: 1px dashed #bfbfbf; padding-top: 12px; padding-bottom: 12px; } .aphront-textarea-drag-and-drop { background: {$lightgreen}; border-color: {$green}; } .aphront-form-crop .crop-box { cursor: move; overflow: hidden; } .aphront-form-crop .crop-box .crop-image { position: relative; top: 0px; left: 0px; } .calendar-button { display: inline; padding: 8px 4px; margin: 2px 8px 2px 2px; position: relative; } .aphront-form-date-container { position: relative; display: inline; } .aphront-form-date-container select { margin: 2px; display: inline; } .aphront-form-date-container input.aphront-form-date-enabled-input { width: auto; display: inline; margin-right: 8px; font-size: 16px; } .aphront-form-date-container input.aphront-form-date-time-input { width: 7em; display: inline; } .fancy-datepicker { position: absolute; width: 240px; } .fancy-datepicker-core { padding: 1px; font-size: 12px; text-align: center; } .fancy-datepicker-core .month-table, .fancy-datepicker-core .day-table { margin: 0 auto; border-collapse: separate; border-spacing: 1px; width: 100%; } .fancy-datepicker-core .month-table { margin-bottom: 6px; font-size: 13px; background-color: {$hoverblue}; border-radius: 2px; } .fancy-datepicker-core .month-table td.lrbutton { width: 18%; color: {$lightbluetext}; } .fancy-datepicker-core .month-table td { padding: 4px; font-weight: bold; color: {$bluetext}; } .fancy-datepicker-core .month-table td.lrbutton:hover { border-radius: 2px; background: {$hoverselectedblue}; color: {$darkbluetext}; } .fancy-datepicker-core .day-table td { overflow: hidden; vertical-align: center; text-align: center; border: 1px solid {$thinblueborder}; padding: 4px 0; } .fancy-datepicker .fancy-datepicker-core .day-table td.day:hover { background-color: {$hoverblue}; border-color: {$lightblueborder}; } .fancy-datepicker-core .day-table td.day-placeholder { border-color: transparent; background: transparent; } .fancy-datepicker-core .day-table td.weekend { color: {$lightgreytext}; border-color: {$lightgreyborder}; background: {$lightgreybackground}; } .fancy-datepicker-core .day-table td.day-name { background: transparent; border: 1px transparent; vertical-align: bottom; color: {$lightgreytext}; } .fancy-datepicker-core .day-table td.today { background: {$greybackground}; border-color: {$greyborder}; color: {$darkgreytext}; font-weight: bold; } .fancy-datepicker-core .day-table td.datepicker-selected { background: {$lightgreen}; border-color: {$green}; color: {$green}; } .fancy-datepicker-core td { cursor: pointer; } .fancy-datepicker-core td.novalue { cursor: inherit; } .picker-open .calendar-button .phui-icon-view { color: {$sky}; } .fancy-datepicker-core { background-color: white; border: 1px solid {$lightblueborder}; border-bottom: 1px solid {$blueborder}; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35); border-radius: 3px; } .login-to-comment { margin: 12px; } .phui-form-divider hr { height: 1px; border: 0; background: #c0c0c0; width: 85%; margin: 15px auto; } .recaptcha_only_if_privacy { display: none; } .phabricator-standard-custom-field-header { font-size: 16px; color: {$bluetext}; border-bottom: 1px solid {$lightbluetext}; padding: 16px 0 4px; margin-bottom: 4px; } .device-desktop .text-with-submit-control-outer-bounds { position: relative; } .device-desktop .text-with-submit-control-text-bounds { position: absolute; left: 0; right: 184px; } .device-desktop .text-with-submit-control-submit-bounds { text-align: right; } .device-desktop .text-with-submit-control-submit { width: 180px; } .aphront-form-choose-table td { vertical-align: middle; padding: 4px 0; } .aphront-form-choose-table .aphront-form-choose-button-cell { padding: 4px 8px; }
2017.9.5/apidocs/org/wildfly/swarm/config/naming/package-summary.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:23 MST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>org.wildfly.swarm.config.naming (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="org.wildfly.swarm.config.naming (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 class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.9.5</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/config/modcluster/mod_cluster_config/dynamic_load_provider/package-summary.html">Prev&nbsp;Package</a></li> <li><a href="../../../../../org/wildfly/swarm/config/remoting/package-summary.html">Next&nbsp;Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/naming/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;org.wildfly.swarm.config.naming</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Interface Summary table, listing interfaces, and an explanation"> <caption><span>Interface Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Interface</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/wildfly/swarm/config/naming/BindingConsumer.html" title="interface in org.wildfly.swarm.config.naming">BindingConsumer</a>&lt;T extends <a href="../../../../../org/wildfly/swarm/config/naming/Binding.html" title="class in org.wildfly.swarm.config.naming">Binding</a>&lt;T&gt;&gt;</td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/wildfly/swarm/config/naming/BindingSupplier.html" title="interface in org.wildfly.swarm.config.naming">BindingSupplier</a>&lt;T extends <a href="../../../../../org/wildfly/swarm/config/naming/Binding.html" title="class in org.wildfly.swarm.config.naming">Binding</a>&gt;</td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/wildfly/swarm/config/naming/RemoteNamingServiceConsumer.html" title="interface in org.wildfly.swarm.config.naming">RemoteNamingServiceConsumer</a>&lt;T extends <a href="../../../../../org/wildfly/swarm/config/naming/RemoteNamingService.html" title="class in org.wildfly.swarm.config.naming">RemoteNamingService</a>&lt;T&gt;&gt;</td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/wildfly/swarm/config/naming/RemoteNamingServiceSupplier.html" title="interface in org.wildfly.swarm.config.naming">RemoteNamingServiceSupplier</a>&lt;T extends <a href="../../../../../org/wildfly/swarm/config/naming/RemoteNamingService.html" title="class in org.wildfly.swarm.config.naming">RemoteNamingService</a>&gt;</td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/wildfly/swarm/config/naming/Binding.html" title="class in org.wildfly.swarm.config.naming">Binding</a>&lt;T extends <a href="../../../../../org/wildfly/swarm/config/naming/Binding.html" title="class in org.wildfly.swarm.config.naming">Binding</a>&lt;T&gt;&gt;</td> <td class="colLast"> <div class="block">JNDI bindings for primitive types</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../org/wildfly/swarm/config/naming/RemoteNamingService.html" title="class in org.wildfly.swarm.config.naming">RemoteNamingService</a>&lt;T extends <a href="../../../../../org/wildfly/swarm/config/naming/RemoteNamingService.html" title="class in org.wildfly.swarm.config.naming">RemoteNamingService</a>&lt;T&gt;&gt;</td> <td class="colLast"> <div class="block">The remote naming server</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Summary table, listing enums, and an explanation"> <caption><span>Enum Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Enum</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../org/wildfly/swarm/config/naming/Binding.BindingType.html" title="enum in org.wildfly.swarm.config.naming">Binding.BindingType</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.9.5</div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/wildfly/swarm/config/modcluster/mod_cluster_config/dynamic_load_provider/package-summary.html">Prev&nbsp;Package</a></li> <li><a href="../../../../../org/wildfly/swarm/config/remoting/package-summary.html">Next&nbsp;Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/naming/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
apidocs/org/apache/wicket/util/resource/class-use/StringBufferResourceStream.html
afiantara/apache-wicket-1.5.7
<!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_22) on Wed May 30 16:48:32 EEST 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class org.apache.wicket.util.resource.StringBufferResourceStream (Wicket Parent 1.5.7 API) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="Uses of Class org.apache.wicket.util.resource.StringBufferResourceStream (Wicket Parent 1.5.7 API)"; } </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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/wicket/util/resource/StringBufferResourceStream.html" title="class in org.apache.wicket.util.resource"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/wicket/util/resource/class-use/StringBufferResourceStream.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="StringBufferResourceStream.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.wicket.util.resource.StringBufferResourceStream</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/wicket/util/resource/StringBufferResourceStream.html" title="class in org.apache.wicket.util.resource">StringBufferResourceStream</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.wicket.util.resource"><B>org.apache.wicket.util.resource</B></A></TD> <TD> Base support for resources.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.wicket.util.resource"><!-- --></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/wicket/util/resource/StringBufferResourceStream.html" title="class in org.apache.wicket.util.resource">StringBufferResourceStream</A> in <A HREF="../../../../../../org/apache/wicket/util/resource/package-summary.html">org.apache.wicket.util.resource</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../org/apache/wicket/util/resource/package-summary.html">org.apache.wicket.util.resource</A> that return <A HREF="../../../../../../org/apache/wicket/util/resource/StringBufferResourceStream.html" title="class in org.apache.wicket.util.resource">StringBufferResourceStream</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../org/apache/wicket/util/resource/StringBufferResourceStream.html" title="class in org.apache.wicket.util.resource">StringBufferResourceStream</A></CODE></FONT></TD> <TD><CODE><B>StringBufferResourceStream.</B><B><A HREF="../../../../../../org/apache/wicket/util/resource/StringBufferResourceStream.html#append(java.lang.CharSequence)">append</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/CharSequence.html" title="class or interface in java.lang">CharSequence</A>&nbsp;s)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adds to this string buffer resource</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../org/apache/wicket/util/resource/StringBufferResourceStream.html" title="class in org.apache.wicket.util.resource">StringBufferResourceStream</A></CODE></FONT></TD> <TD><CODE><B>StringBufferResourceStream.</B><B><A HREF="../../../../../../org/apache/wicket/util/resource/StringBufferResourceStream.html#clear()">clear</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Clears the string buffer resource.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../org/apache/wicket/util/resource/StringBufferResourceStream.html" title="class in org.apache.wicket.util.resource">StringBufferResourceStream</A></CODE></FONT></TD> <TD><CODE><B>StringBufferResourceStream.</B><B><A HREF="../../../../../../org/apache/wicket/util/resource/StringBufferResourceStream.html#prepend(java.lang.CharSequence)">prepend</A></B>(<A HREF="http://download.oracle.com/javase/1.5.0/docs/api/java/lang/CharSequence.html" title="class or interface in java.lang">CharSequence</A>&nbsp;s)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Prepends to this string buffer resource</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/wicket/util/resource/StringBufferResourceStream.html" title="class in org.apache.wicket.util.resource"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/wicket/util/resource/class-use/StringBufferResourceStream.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="StringBufferResourceStream.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2006-2012 <a href="http://apache.org">Apache Software Foundation</a>. All Rights Reserved. </BODY> </HTML>
api/constant-values.html
impactcentre/ocrevalUAtion
<!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 Fri Dec 06 06:56:42 CET 2013 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Constant Field Values (ocrevalUAtion 1.2.4 API)</title> <meta name="date" content="2013-12-06"> <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="Constant Field Values (ocrevalUAtion 1.2.4 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>Package</li> <li>Class</li> <li>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?constant-values.html" target="_top">Frames</a></li> <li><a href="constant-values.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="Constant Field Values" class="title">Constant Field Values</h1> <h2 title="Contents">Contents</h2> </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>Package</li> <li>Class</li> <li>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?constant-values.html" target="_top">Frames</a></li> <li><a href="constant-values.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2009&#x2013;2013 <a href="http://www.digitisation.eu/">IMPACT Centre of Competence</a>. All rights reserved.</small></p> </body> </html>
app/assets/stylesheets/forms.css
edpaget/Panoptes
/* Base Form Styles */ .form-container { margin: 0 auto; max-width: 510px; width: 100%; } .form-container .form { width: 100%; } .form fieldset { border: 0; margin: 0 0 2em; padding: 0; } .form label { color: #646464; font-size: 1.2em; font-weight: 700; } .form input[type="text"], .form input[type="password"], .form input[type="email"] { background-color: #ffffff; border: solid 1px #bebfc1; border-radius: 2px; box-sizing: border-box; color: #646464; font-size: 1.4em; max-width: 510px; padding: 0.75em; width: 100%; } .form input[type="text"]:focus, .form input[type="password"]:focus, .form input[type="email"]:focus { border-color: #0072ff; border-width: 2px; outline: none; } .form input[type="submit"] { background-color: #0072ff; border: 0; border-radius: 6px; max-width: 160px; width: 100%; color: #ffffff; cursor: pointer; display: inline-block; float: right; font-size: 1.4em; margin: 0; outline: none; padding: 1em 0; position: relative; text-align: center; } .form input[type="submit"]:hover { background-color: #33A5FF; } @media screen and (max-width: 768px) { .form .submit-container { width: 100%; } .form input[type="submit"] { max-width: 100%; } } /**************************/ /* Devise specific styles */ /**************************/ /* Styles for new session form */ .form--new-session > fieldset:nth-last-of-type(2) { margin: 0; } .form--new-session > .fieldset--remember { margin: 1em 0; } /* Styles for new user form */ .form--new-user .fieldset--password { display: inline-block; float: left; } .form--new-user fieldset.fieldset--password:nth-last-of-type(2) { margin-right: 1em; } .form--new-user .fieldset--password > input[type="password"] { width: 250px; } @media screen and (max-width: 768px) { .form--new-user .fieldset--password { display: block; float: none; } .form--new-user fieldset.fieldset--password:nth-last-of-type(2) { margin-right: 0; } .form--new-user .fieldset--password > input[type="password"] { width: 100%; } } /* Styles for _links partial */ .devise-shared-links { line-height: 45px; position: relative; } .oath-links, .action-links { display: inline-block; } .oauth-links { float: left; } .action-links { float: right; margin-right: 1.75em; } .devise-shared-link { margin-right: 0.25em; } .forgot-password-link, .sign-up-link, .sign-in-link { color: #989898; font-size: 1.2em; font-weight: 700; text-decoration: none; } .forgot-password-link:visited, .sign-up-link:visited, .sign-in-link:visited { color: #989898; } .forgot-password-link:hover, .sign-up-link:hover, .sign-in-link:hover { color: #656565; } .forgot-password-link { bottom: -6.5em; left: 0; position: absolute; } .facebook-link, .gplus-link { font-size: 1.2em; text-decoration: none; white-space: nowrap; } .facebook-link { background: linear-gradient(#4c69ba, #3b55a0); background: -webkit-linear-gradient(#4c69ba, #3b55a0); border-color: #4c69ba; border-radius: 2px; color: #fff; font-family: "Helvetica neue"; padding: 0.35em 0.5em; text-shadow: 0 -1px 0 #354c8c; } .facebook-link:hover { background: linear-gradient(#6683D4, #3b55a0); border-bottom-color: #3b5998; border-left-color: #4961a8; border-right-color: #4961a8; border-top-color: #5874c3; box-shadow: inset 0 1px 0 #607fd6; } .gplus-link { background: #dd4b39; border: none; border-radius: 2px; -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.1); box-shadow: 0 1px 0 rgba(0,0,0,.1); color: #fff; padding: 0.35em 0.5em; } .gplus-link:hover { background-color: #e74b37; } @media screen and (max-width: 768px) { .oauth-links, .action-links { text-align: center; width: 100%; } .action-links { margin: 0; } .forgot-password-link { bottom: 0; position: relative; } }
AdminUI/src/app/invoice/invoicedocument.component.html
gerardogrisolini/Webretail
<p-progressSpinner *ngIf="isBusy" class="loading" strokeWidth="6" [style]="{width: '50px', height: '50px'}"></p-progressSpinner> <div class="container-fluid"> <div class="noprint"> <button pButton type="button" title="{{ 'Back' | translate }}" (click)="cancelClick()" class="ui-button-secondary" style="width:50px" icon="fa-reply"></button> <button pButton type="button" label="{{ 'Print' | translate }}" (click)="printClick()" class="ui-button-secondary" icon="fa-print"></button> <button pButton type="button" label="{{ 'PDF' | translate }}" (click)="pdfClick()" [disabled]="isBusy" class="ui-button-secondary" icon="fa-file-pdf-o"></button> <button pButton type="button" label="{{ 'Send mail' | translate }}" (click)="sendMailClick()" [disabled]="isBusy" class="ui-button-secondary" icon="fa-envelope"></button> </div> <div *ngIf="invoice" #doc> <div *ngFor="let items of groups" class="pdfDocument"> <table class="table" style="width: 100%"> <thead> <tr> <td colspan="5"><img height="100" width="100%" src="/media/header.png" style="margin: 10px 0"></td> </tr> <tr> <td><strong>{{ 'Invoice' | translate }} n°</strong></td> <td align="right">{{invoice.invoiceNumber}}</td> <td style="width: 20%">&nbsp;</td> <td><strong>{{ 'Payment' | translate }}</strong></td> <td align="right">{{invoice.invoicePayment}}</td> </tr> <tr> <td><strong>{{ 'Date' | translate }}</strong></td> <td align="right">{{invoice.invoiceDate | date: 'yyyy-MM-dd'}}</td> <td style="width: 20%">&nbsp;</td> <td><strong>{{ 'Registry' | translate }}</strong></td> <td rowspan="3" align="right"> {{invoice.invoiceRegistry.registryName}} <br/>{{invoice.invoiceRegistry.registryAddress}} <br/>{{invoice.invoiceRegistry.registryCity}} <br/>{{invoice.invoiceRegistry.registryVatNumber !== '' ? invoice.invoiceRegistry.registryVatNumber : invoice.invoiceRegistry.registryFiscalCode}} </td> </tr> <tr> <td colspan="4"><strong>{{ 'Note' | translate }}</strong></td> </tr> <tr> <td colspan="4">{{invoice.invoiceNote}}</td> </tr> </thead> </table> <table class="table" cellpadding="2" cellspacing="2" style="width: 100%"> <thead> <tr style="background-color: whitesmoke"> <td><strong>{{ 'Barcode' | translate }}</strong></td> <td><strong>{{ 'Product' | translate }}</strong></td> <td align="center"><strong>{{ 'Quantity' | translate }}</strong></td> <td align="right"><strong>{{ 'Price' | translate }}</strong></td> <td align="right"><strong>{{ 'Amount' | translate }}</strong></td> </tr> </thead> <tfoot style="background-color: whitesmoke"> <tr> <td colspan="2">{{ 'Amount' | translate }}</td> <td colspan="3" align="right">{{amount | currencyFormat}}</td> </tr> <tr> <td colspan="2">{{ 'Tax' | translate }} 22%</td> <td colspan="3" align="right">{{total - amount | currencyFormat}}</td> </tr> <tr> <td colspan="2"><strong>{{ 'Total' | translate }}</strong></td> <td align="center"><strong>{{totalItems}}</strong></td> <td colspan="2" align="right"><strong>{{total | currencyFormat}}</strong></td> </tr> </tfoot> <tbody> <tr *ngFor="let item of items" style="height: 39px"> <td><span>{{item.movementArticleBarcode}}</span></td> <td><span>{{item.movementArticleProduct | articleInfo:item.movementArticleBarcode}}</span></td> <td align="center"><span>{{item.movementArticleBarcode ? item.movementArticleQuantity : ''}}</span></td> <td align="right"><span>{{!item.movementArticleBarcode ? '' : item.movementArticlePrice | currencyFormat}}</span></td> <td align="right"><span>{{!item.movementArticleBarcode ? '' : item.movementArticleAmount | currencyFormat}}</span></td> </tr> </tbody> </table> </div> </div> </div>
KoDeMat_TouchScreen/lib/hazelcast-3.4.2/hazelcast-3.4.2/docs/javadoc/com/hazelcast/multimap/impl/operations/class-use/MultiMapBackupAwareOperation.html
akiskip/KoDeMat-Collaboration-Platform-Application
<!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 Thu Mar 26 16:48:36 UTC 2015 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class com.hazelcast.multimap.impl.operations.MultiMapBackupAwareOperation (Hazelcast Root 3.4.2 API) </TITLE> <META NAME="date" CONTENT="2015-03-26"> <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.hazelcast.multimap.impl.operations.MultiMapBackupAwareOperation (Hazelcast Root 3.4.2 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/hazelcast/multimap/impl/operations/MultiMapBackupAwareOperation.html" title="class in com.hazelcast.multimap.impl.operations"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?com/hazelcast/multimap/impl/operations//class-useMultiMapBackupAwareOperation.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MultiMapBackupAwareOperation.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>com.hazelcast.multimap.impl.operations.MultiMapBackupAwareOperation</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/hazelcast/multimap/impl/operations/MultiMapBackupAwareOperation.html" title="class in com.hazelcast.multimap.impl.operations">MultiMapBackupAwareOperation</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#com.hazelcast.multimap.impl.operations"><B>com.hazelcast.multimap.impl.operations</B></A></TD> <TD>Contains operations for Hazelcast MultiMap module.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#com.hazelcast.multimap.impl.txn"><B>com.hazelcast.multimap.impl.txn</B></A></TD> <TD>This package contains the Transaction behavior for the Multimap.<br/>&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="com.hazelcast.multimap.impl.operations"><!-- --></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/hazelcast/multimap/impl/operations/MultiMapBackupAwareOperation.html" title="class in com.hazelcast.multimap.impl.operations">MultiMapBackupAwareOperation</A> in <A HREF="../../../../../../com/hazelcast/multimap/impl/operations/package-summary.html">com.hazelcast.multimap.impl.operations</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../../../com/hazelcast/multimap/impl/operations/MultiMapBackupAwareOperation.html" title="class in com.hazelcast.multimap.impl.operations">MultiMapBackupAwareOperation</A> in <A HREF="../../../../../../com/hazelcast/multimap/impl/operations/package-summary.html">com.hazelcast.multimap.impl.operations</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../com/hazelcast/multimap/impl/operations/PutOperation.html" title="class in com.hazelcast.multimap.impl.operations">PutOperation</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../com/hazelcast/multimap/impl/operations/RemoveAllOperation.html" title="class in com.hazelcast.multimap.impl.operations">RemoveAllOperation</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../com/hazelcast/multimap/impl/operations/RemoveOperation.html" title="class in com.hazelcast.multimap.impl.operations">RemoveOperation</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="com.hazelcast.multimap.impl.txn"><!-- --></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/hazelcast/multimap/impl/operations/MultiMapBackupAwareOperation.html" title="class in com.hazelcast.multimap.impl.operations">MultiMapBackupAwareOperation</A> in <A HREF="../../../../../../com/hazelcast/multimap/impl/txn/package-summary.html">com.hazelcast.multimap.impl.txn</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Subclasses of <A HREF="../../../../../../com/hazelcast/multimap/impl/operations/MultiMapBackupAwareOperation.html" title="class in com.hazelcast.multimap.impl.operations">MultiMapBackupAwareOperation</A> in <A HREF="../../../../../../com/hazelcast/multimap/impl/txn/package-summary.html">com.hazelcast.multimap.impl.txn</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../com/hazelcast/multimap/impl/txn/TxnCommitOperation.html" title="class in com.hazelcast.multimap.impl.txn">TxnCommitOperation</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../com/hazelcast/multimap/impl/txn/TxnPrepareOperation.html" title="class in com.hazelcast.multimap.impl.txn">TxnPrepareOperation</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../../com/hazelcast/multimap/impl/txn/TxnRollbackOperation.html" title="class in com.hazelcast.multimap.impl.txn">TxnRollbackOperation</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../com/hazelcast/multimap/impl/operations/MultiMapBackupAwareOperation.html" title="class in com.hazelcast.multimap.impl.operations"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?com/hazelcast/multimap/impl/operations//class-useMultiMapBackupAwareOperation.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MultiMapBackupAwareOperation.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2015 <a href="http://www.hazelcast.com/">Hazelcast, Inc.</a>. All Rights Reserved. </BODY> </HTML>
Tests/BrilliantTemplateTests/files/test_brilliant_tag.html
ucotta/BrilliantTemplate
<!DOCTYPE html> <html lang="en"> <body> <brilliant> Single tag to be replaced </brilliant> <brilliant tid="sayHello"></brilliant> </body> </html>
2017.11.0/apidocs/org/wildfly/swarm/config/messaging/activemq/server/class-use/SharedStoreSlaveHAPolicySupplier.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.messaging.activemq.server.SharedStoreSlaveHAPolicySupplier (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.messaging.activemq.server.SharedStoreSlaveHAPolicySupplier (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/messaging/activemq/server/SharedStoreSlaveHAPolicySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">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/messaging/activemq/server/class-use/SharedStoreSlaveHAPolicySupplier.html" target="_top">Frames</a></li> <li><a href="SharedStoreSlaveHAPolicySupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.messaging.activemq.server.SharedStoreSlaveHAPolicySupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.messaging.activemq.server.SharedStoreSlaveHAPolicySupplier</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/SharedStoreSlaveHAPolicySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">SharedStoreSlaveHAPolicySupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.messaging.activemq">org.wildfly.swarm.config.messaging.activemq</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.messaging.activemq"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/SharedStoreSlaveHAPolicySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">SharedStoreSlaveHAPolicySupplier</a> in <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/package-summary.html">org.wildfly.swarm.config.messaging.activemq</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/package-summary.html">org.wildfly.swarm.config.messaging.activemq</a> with parameters of type <a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/SharedStoreSlaveHAPolicySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">SharedStoreSlaveHAPolicySupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/Server.html" title="type parameter in Server">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Server.</span><code><span class="memberNameLink"><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/Server.html#sharedStoreSlaveHaPolicy-org.wildfly.swarm.config.messaging.activemq.server.SharedStoreSlaveHAPolicySupplier-">sharedStoreSlaveHaPolicy</a></span>(<a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/SharedStoreSlaveHAPolicySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">SharedStoreSlaveHAPolicySupplier</a>&nbsp;supplier)</code> <div class="block">A messaging resource that allows you to configure High Availability for the ActiveMQ server (the value of ha-policy can be live-only, replication-master, replication-slave, or replication-colocated).</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../org/wildfly/swarm/config/messaging/activemq/server/SharedStoreSlaveHAPolicySupplier.html" title="interface in org.wildfly.swarm.config.messaging.activemq.server">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">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/messaging/activemq/server/class-use/SharedStoreSlaveHAPolicySupplier.html" target="_top">Frames</a></li> <li><a href="SharedStoreSlaveHAPolicySupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
projects/leaderboard/scaladocs/net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html
kolotyluk/kolotyluk.github.io
<!DOCTYPE html > <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <title>Leaderboard Micro Service 0.0.1-SNAPSHOT API - net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation</title> <meta name="description" content="Leaderboard Micro Service 0.0.1 - SNAPSHOT API - net.kolotyluk.leaderboard.akka specific.endpoint.leaderboard.Implementation" /> <meta name="keywords" content="Leaderboard Micro Service 0.0.1 SNAPSHOT API net.kolotyluk.leaderboard.akka specific.endpoint.leaderboard.Implementation" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <link href="../../../../../../lib/index.css" media="screen" type="text/css" rel="stylesheet" /> <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"></script> <script type="text/javascript" src="../../../../../../lib/jquery.panzoom.min.js"></script> <script type="text/javascript" src="../../../../../../lib/jquery.mousewheel.min.js"></script> <script type="text/javascript" src="../../../../../../lib/index.js"></script> <script type="text/javascript" src="../../../../../../index.js"></script> <script type="text/javascript" src="../../../../../../lib/scheduler.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"> /* this variable can be used by the JS to determine the path to the root document */ var toRoot = '../../../../../../'; </script> </head> <body> <div id="search"> <span id="doc-title">Leaderboard Micro Service 0.0.1-SNAPSHOT API<span id="doc-version"></span></span> <span class="close-results"><span class="left">&lt;</span> Back</span> <div id="textfilter"> <span class="input"> <input autocapitalize="none" placeholder="Search" id="index-input" type="text" accesskey="/" /> <i class="clear material-icons"></i> <i id="search-icon" class="material-icons"></i> </span> </div> </div> <div id="search-results"> <div id="search-progress"> <div id="progress-fill"></div> </div> <div id="results-content"> <div id="entity-results"></div> <div id="member-results"></div> </div> </div> <div id="content-scroll-container" style="-webkit-overflow-scrolling: touch;"> <div id="content-container" style="-webkit-overflow-scrolling: touch;"> <div id="subpackage-spacer"> <div id="packages"> <h1>Packages</h1> <ul> <li name="_root_.root" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="_root_"></a><a id="root:_root_"></a> <span class="permalink"> <a href="index.html#_root_" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">package</span> </span> <span class="symbol"> <a title="Akka based micro service proving general leaderboard functionality for applications such as back-end game servers." href="../../../../../../index.html"><span class="name">root</span></a> </span> <p class="shortcomment cmt">Akka based micro service proving general leaderboard functionality for applications such as back-end game servers.</p><div class="fullcomment"><div class="comment cmt"><h3>Leaderboard Micro Service</h3><p>Akka based micro service proving general leaderboard functionality for applications such as back-end game servers.</p><h3>Overview</h3></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../../../../../index.html" class="extype" name="_root_">root</a></dd></dl></div> </li><li name="_root_.net" visbl="pub" class="indented1 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="net"></a><a id="net:net"></a> <span class="permalink"> <a href="index.html#net" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">package</span> </span> <span class="symbol"> <a title="" href="../../../../../index.html"><span class="name">net</span></a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../../../../../index.html" class="extype" name="_root_">root</a></dd></dl></div> </li><li name="net.kolotyluk" visbl="pub" class="indented2 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="kolotyluk"></a><a id="kolotyluk:kolotyluk"></a> <span class="permalink"> <a href="../net/index.html#kolotyluk" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">package</span> </span> <span class="symbol"> <a title="" href="../../../../index.html"><span class="name">kolotyluk</span></a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../../../../index.html" class="extype" name="net">net</a></dd></dl></div> </li><li name="net.kolotyluk.leaderboard" visbl="pub" class="indented3 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="leaderboard"></a><a id="leaderboard:leaderboard"></a> <span class="permalink"> <a href="../../net/kolotyluk/index.html#leaderboard" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">package</span> </span> <span class="symbol"> <a title="Leaderboard Microservice which implements standalone leaderboard service inspired by Redis Sorted Sets" href="../../../index.html"><span class="name">leaderboard</span></a> </span> <p class="shortcomment cmt">Leaderboard Microservice which implements standalone leaderboard service inspired by <a href="https://redis.io/topics/data-types" target="_blank">Redis Sorted Sets</a></p><div class="fullcomment"><div class="comment cmt"><h3>Leaderboard Service</h3><p>Leaderboard Microservice which implements standalone leaderboard service inspired by <a href="https://redis.io/topics/data-types" target="_blank">Redis Sorted Sets</a></p><p>Many leaderboard implementation make use of the general Sorted Set operations in <a href="https://redis.io" target="_blank">Redis</a> such as <a href="https://redis.io/commands/zadd" target="_blank">ZADD</a>, <a href="https://redis.io/commands/zrank" target="_blank">ZRANK</a>, <a href="https://redis.io/commands/zrange" target="_blank">ZRANGE</a>, etc. This project is an academic exercise which attempts to improve on some of the restrictions of Redis, while maintaining the robustness of it. Academically, it is also an exercise in designing and implementing a micro service, and experimenting with modern cloud principles.</p><p>Also known as a <a href="https://en.wikipedia.org/wiki/Score_(game)#High_score" target="_blank">High Score Table</a>, this service tracks scores for a number of contests, events, etc. See also: <a href="https://github.com/kolotyluk/leaderboard" target="_blank">README</a> </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../../../index.html" class="extype" name="net.kolotyluk">kolotyluk</a></dd></dl></div> </li><li name="net.kolotyluk.leaderboard.akka_specific" visbl="pub" class="indented4 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="akka_specific"></a><a id="akka_specific:akka_specific"></a> <span class="permalink"> <a href="../../../net/kolotyluk/leaderboard/index.html#akka_specific" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">package</span> </span> <span class="symbol"> <a title="Defined behaviors for actors." href="../../index.html"><span class="name">akka_specific</span></a> </span> <p class="shortcomment cmt">Defined behaviors for actors.</p><div class="fullcomment"><div class="comment cmt"><h3>Akka Actors</h3><h4>Overview</h4><p>Defined behaviors for actors. In <a href="https://doc.akka.io/docs/akka/2.5/typed/index.html" target="_blank">Akka Typed</a>, a behavior is similar to the actor context in legacy Akka.</p><h3>Guardian</h3><p>Is the top level actor in the Akka hierarchy of actors. That is, it the highest level actor the software developer has access to. Typically started with something like:</p><pre><span class="kw">val</span> systemName = <span class="lit">"Leaderboard"</span> <span class="kw">val</span> guardian = <span class="kw">new</span> Guardian() <span class="cmt">// top level of our actor hierarchy</span> <span class="kw">val</span> system = ActorSystem(guardian.behavior, systemName)</pre><p>where <a href="../../GuardianActor.html" class="extype" name="net.kolotyluk.leaderboard.akka_specific.GuardianActor">net.kolotyluk.leaderboard.akka_specific.GuardianActor</a> defines the behavior.</p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../../index.html" class="extype" name="net.kolotyluk.leaderboard">leaderboard</a></dd></dl></div> </li><li name="net.kolotyluk.leaderboard.akka_specific.endpoint" visbl="pub" class="indented5 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="endpoint"></a><a id="endpoint:endpoint"></a> <span class="permalink"> <a href="../../../../net/kolotyluk/leaderboard/akka_specific/index.html#endpoint" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">package</span> </span> <span class="symbol"> <a title="TODO do we want to have a /member endpoint?" href="../index.html"><span class="name">endpoint</span></a> </span> <p class="shortcomment cmt">TODO do we want to have a /member endpoint?</p><div class="fullcomment"><div class="comment cmt"><h3>Akka HTTP Endpoints</h3><p>TODO do we want to have a /member endpoint?</p><h4>Examples</h4><h5>Ping</h5><pre>GET /ping pong</pre><h5>Create Leaderboard</h5><pre>POST /leaderboard {<span class="lit">"id"</span>:<span class="lit">"DQz92Qw_ShCB-TMXf-wiAQ"</span>} POST /leaderboard?name=foo {<span class="lit">"id"</span>:<span class="lit">"DQz92Qw_ShCB-TMXf-wiAQ"</span>,<span class="lit">"name"</span>:<span class="lit">"foo"</span>} POST /leaderboard {<span class="lit">"kind"</span>:<span class="lit">"LeaderboardActor"</span>,<span class="lit">"name"</span>:<span class="lit">"foo"</span>} {<span class="lit">"id"</span>:<span class="lit">"DQz92Qw_ShCB-TMXf-wiAQ"</span>,<span class="lit">"name"</span>:<span class="lit">"foo"</span>}</pre><h5>Create Leaderboard Member</h5><p>Note: creating members is optional, as they will be created implicitly, but it's the caller's responsibility to use properly formatted member ids.</p><pre>POST /leaderboard/member {<span class="lit">"id"</span>:<span class="lit">"cuWnCrtETqWtSC8rEYIiUA"</span>} POST /leaderboard/member?name=joe {<span class="lit">"id"</span>:<span class="lit">"cuWnCrtETqWtSC8rEYIiUA"</span>,<span class="lit">"name"</span>:<span class="lit">"joe"</span>} POST /leaderboard/DQz92Qw_ShCB-TMXf-wiAQ {<span class="lit">"id"</span>:<span class="lit">"cuWnCrtETqWtSC8rEYIiUA"</span>} POST /leaderboard/DQz92Qw_ShCB-TMXf-wiAQ?name=joe {<span class="lit">"id"</span>:<span class="lit">"cuWnCrtETqWtSC8rEYIiUA"</span>,<span class="lit">"name"</span>:<span class="lit">"joe"</span>}</pre><h5>Get Leaderboard Status</h5><pre>GET /leaderboard {[<span class="lit">"id"</span>:<span class="lit">"DQz92Qw_ShCB-TMXf-wiAQ"</span>]} GET /leaderboard/DQz92Qw_ShCB-TMXf-wiAQ {<span class="lit">"id"</span>:<span class="lit">"DQz92Qw_ShCB-TMXf-wiAQ"</span>,<span class="lit">"name"</span>:<span class="lit">"foo"</span>} GET /leaderboard?name=foo {<span class="lit">"id"</span>:<span class="lit">"DQz92Qw_ShCB-TMXf-wiAQ"</span>,<span class="lit">"name"</span>:<span class="lit">"foo"</span>}</pre><pre>POST /leaderboard/DQz92Qw_ShCB-TMXf-wiAQ {<span class="lit">"id"</span>:<span class="lit">"DQz92Qw_ShCB-TMXf-wiAQ"</span>} POST /leaderboard/DQz92Qw_ShCB-TMXf-wiAQ?name=foo {<span class="lit">"id"</span>:<span class="lit">"DQz92Qw_ShCB-TMXf-wiAQ"</span>,<span class="lit">"name"</span>:<span class="lit">"foo"</span>}</pre><h5>Set Score</h5><pre>PUT /leaderboard/DQz92Qw_ShCB-TMXf-wiAQ/cuWnCrtETqWtSC8rEYIiUA?score=<span class="num">1234</span></pre><h5>Increment Score</h5><pre>PATCH /leaderboard/DQz92Qw_ShCB-TMXf-wiAQ/cuWnCrtETqWtSC8rEYIiUA?score=<span class="num">1234</span></pre><h5>Get Score</h5><pre>GET /leaderboard/DQz92Qw_ShCB-TMXf-wiAQ/cuWnCrtETqWtSC8rEYIiUA {<span class="lit">"score"</span>:<span class="lit">"2468"</span>} GET /leaderboard/DQz92Qw_ShCB-TMXf-wiAQ/cuWnCrtETqWtSC8rEYIiUA {<span class="lit">"score"</span>,<span class="lit">"standing"</span>} {<span class="lit">"score"</span>:<span class="lit">"2468"</span>,<span class="lit">"standing"</span>:<span class="lit">"0"</span>}</pre></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../index.html" class="extype" name="net.kolotyluk.leaderboard.akka_specific">akka_specific</a></dd><dt>See also</dt><dd><span class="cmt"><p><a href="https://blog.mwaysolutions.com/2014/06/05/10-best-practices-for-better-restful-api" target="_blank">10 Best Practices for Better RESTful API</a></p></span></dd></dl></div> </li><li name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard" visbl="pub" class="indented6 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="leaderboard"></a><a id="leaderboard:leaderboard"></a> <span class="permalink"> <a href="../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/index.html#leaderboard" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">package</span> </span> <span class="symbol"> <a title="" href="index.html"><span class="name">leaderboard</span></a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../index.html" class="extype" name="net.kolotyluk.leaderboard.akka_specific.endpoint">endpoint</a></dd></dl></div> </li><li name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.failure" visbl="pub" class="indented7 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="failure"></a><a id="failure:failure"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/index.html#failure" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">package</span> </span> <span class="symbol"> <a title="Errors and Exceptions to Endpoint Requests." href="failure/index.html"><span class="name">failure</span></a> </span> <p class="shortcomment cmt">Errors and Exceptions to Endpoint Requests.</p><div class="fullcomment"><div class="comment cmt"><h3>Leaderboard Endpoint Failures</h3><p>Errors and Exceptions to Endpoint Requests. These classes are also the external API user documentation explaining failure responses, so the scaladoc needs to be well written.</p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="index.html" class="extype" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard">leaderboard</a></dd></dl></div> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="DuplicateNameException.html" title=""></a> <a href="DuplicateNameException.html" title="">DuplicateNameException</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="Endpoint.html" title=""></a> <a href="Endpoint.html" title="">Endpoint</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="trait" href="EndpointResponse.html" title=""></a> <a href="EndpointResponse.html" title="">EndpointResponse</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="IdNotFoundException.html" title=""></a> <a href="IdNotFoundException.html" title="">IdNotFoundException</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="object" href="" title="Being a research project, there are a number of different implementations of the same API, using different data structures, so that we can compare and contrast performance characteristics and select the best solutions."></a> <a href="" title="Being a research project, there are a number of different implementations of the same API, using different data structures, so that we can compare and contrast performance characteristics and select the best solutions.">Implementation</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="InconsistentNameException.html" title=""></a> <a href="InconsistentNameException.html" title="">InconsistentNameException</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="trait" href="JsonSupport.html" title=""></a> <a href="JsonSupport.html" title="">JsonSupport</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="LeaderboardGetResponse.html" title=""></a> <a href="LeaderboardGetResponse.html" title="">LeaderboardGetResponse</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="LeaderboardPostRequest.html" title=""></a> <a href="LeaderboardPostRequest.html" title="">LeaderboardPostRequest</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="LeaderboardPostResponse.html" title=""></a> <a href="LeaderboardPostResponse.html" title="">LeaderboardPostResponse</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="LeaderboardPutScoresRequest.html" title=""></a> <a href="LeaderboardPutScoresRequest.html" title="">LeaderboardPutScoresRequest</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="LeaderboardScores.html" title=""></a> <a href="LeaderboardScores.html" title="">LeaderboardScores</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="LeaderboardStatusResponse.html" title=""></a> <a href="LeaderboardStatusResponse.html" title="">LeaderboardStatusResponse</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="LeaderboardStatusResponses.html" title=""></a> <a href="LeaderboardStatusResponses.html" title="">LeaderboardStatusResponses</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="MemberScore.html" title=""></a> <a href="MemberScore.html" title="">MemberScore</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="MemberStatusResponse.html" title=""></a> <a href="MemberStatusResponse.html" title="">MemberStatusResponse</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="MemberStatusResponses.html" title=""></a> <a href="MemberStatusResponses.html" title="">MemberStatusResponses</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="NameNotFoundException.html" title=""></a> <a href="NameNotFoundException.html" title="">NameNotFoundException</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="trait" href="PrettyJsonSupport.html" title=""></a> <a href="PrettyJsonSupport.html" title="">PrettyJsonSupport</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="Score.html" title=""></a> <a href="Score.html" title="">Score</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="UnknownLeaderboardNameException.html" title=""></a> <a href="UnknownLeaderboardNameException.html" title="">UnknownLeaderboardNameException</a> </li><li class="current-entities indented6"> <span class="separator"></span> <a class="class" href="UpdateScoresRequest.html" title=""></a> <a href="UpdateScoresRequest.html" title="">UpdateScoresRequest</a> </li> </ul> </div> </div> <div id="content"> <body class="object value"> <div id="definition"> <div class="big-circle object">o</div> <p id="owner"><a href="../../../../../index.html" class="extype" name="net">net</a>.<a href="../../../../index.html" class="extype" name="net.kolotyluk">kolotyluk</a>.<a href="../../../index.html" class="extype" name="net.kolotyluk.leaderboard">leaderboard</a>.<a href="../../index.html" class="extype" name="net.kolotyluk.leaderboard.akka_specific">akka_specific</a>.<a href="../index.html" class="extype" name="net.kolotyluk.leaderboard.akka_specific.endpoint">endpoint</a>.<a href="index.html" class="extype" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard">leaderboard</a></p> <h1>Implementation<span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html" title="Permalink"> <i class="material-icons"></i> </a> </span></h1> <h3><span class="morelinks"></span></h3> </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">Implementation</span><span class="result"> extends <span class="extype" name="scala.Enumeration">Enumeration</span> with <a href="../../../../scala/extras/Logging.html" class="extype" name="net.kolotyluk.scala.extras.Logging">Logging</a></span> </span> </h4> <div id="comment" class="fullcommenttop"><div class="comment cmt"><h3>Leaderboard Implementation Enumeration</h3><p>Being a research project, there are a number of different implementations of the same API, using different data structures, so that we can compare and contrast performance characteristics and select the best solutions. </p></div><div class="toggleContainer block"> <span class="toggle"> Linear Supertypes </span> <div class="superTypes hiddenContent"><a href="../../../../scala/extras/Logging.html" class="extype" name="net.kolotyluk.scala.extras.Logging">Logging</a>, <span class="extype" name="scala.Enumeration">Enumeration</span>, <span class="extype" name="scala.Serializable">Serializable</span>, <span class="extype" name="java.io.Serializable">Serializable</span>, <span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div> </div></div> <div id="mbrsel"> <div class="toggle"></div> <div id="memberfilter"> <i class="material-icons arrow"></i> <span class="input"> <input id="mbrsel-input" placeholder="Filter all members" type="text" accesskey="/" /> </span> <i class="clear material-icons"></i> </div> <div id="filterby"> <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 class="ancestors"> <span class="filtertype">Inherited<br /> </span> <ol id="linearization"> <li class="in" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation"><span>Implementation</span></li><li class="in" name="net.kolotyluk.scala.extras.Logging"><span>Logging</span></li><li class="in" name="scala.Enumeration"><span>Enumeration</span></li><li class="in" name="scala.Serializable"><span>Serializable</span></li><li class="in" name="java.io.Serializable"><span>Serializable</span></li><li class="in" name="scala.AnyRef"><span>AnyRef</span></li><li class="in" name="scala.Any"><span>Any</span></li> </ol> </div><div class="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> <div id="template"> <div id="allMembers"> <div id="types" class="types members"> <h3>Type Members</h3> <ol><li name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="Valextendsnet.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.ValwithProductwithSerializable"></a><a id="Val:Val"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#Valextendsnet.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.ValwithProductwithSerializable" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">case class</span> </span> <span class="symbol"> <a title="" href="Implementation$$Val.html"><span class="name">Val</span></a><span class="params">(<span name="constructor">constructor: (<a href="../../../scorekeeping/index.html#LeaderboardIdentifier=net.kolotyluk.leaderboard.InternalIdentifier[java.util.UUID]" class="extmbr" name="net.kolotyluk.leaderboard.scorekeeping.LeaderboardIdentifier">LeaderboardIdentifier</a>) ⇒ <a href="../../../scorekeeping/Leaderboard.html" class="extype" name="net.kolotyluk.leaderboard.scorekeeping.Leaderboard">Leaderboard</a></span>)</span><span class="result"> extends <span class="extype" name="scala.Enumeration.Val">Implementation.Val</span> with <span class="extype" name="scala.Product">Product</span> with <span class="extype" name="scala.Serializable">Serializable</span></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected </dd></dl></div> </li><li name="scala.Enumeration.Value" visbl="pub" class="indented0 " data-isabs="true" fullComment="yes" group="Ungrouped"> <a id="ValueextendsOrdered[Enumeration.this.Value]withSerializable"></a><a id="Value:Value"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#ValueextendsOrdered[Enumeration.this.Value]withSerializable" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier">abstract </span> <span class="kind">class</span> </span> <span class="symbol"> <span class="name">Value</span><span class="result"> extends <span class="extype" name="scala.Ordered">Ordered</span>[<span class="extype" name="scala.Enumeration.Value">Value</span>] with <span class="extype" name="scala.Serializable">Serializable</span></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Enumeration</dd><dt>Annotations</dt><dd> <span class="name">@SerialVersionUID</span><span class="args">()</span> </dd></dl></div> </li><li name="scala.Enumeration.ValueSet" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ValueSetextendsAbstractSet[Enumeration.this.Value]withSortedSet[Enumeration.this.Value]withSortedSetLike[Enumeration.this.Value,Enumeration.this.ValueSet]withSerializable"></a><a id="ValueSet:ValueSet"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#ValueSetextendsAbstractSet[Enumeration.this.Value]withSortedSet[Enumeration.this.Value]withSortedSetLike[Enumeration.this.Value,Enumeration.this.ValueSet]withSerializable" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">class</span> </span> <span class="symbol"> <span class="name">ValueSet</span><span class="result"> extends <span class="extype" name="scala.collection.AbstractSet">AbstractSet</span>[<span class="extype" name="scala.Enumeration.Value">Value</span>] with <span class="extype" name="scala.collection.immutable.SortedSet">SortedSet</span>[<span class="extype" name="scala.Enumeration.Value">Value</span>] with <span class="extype" name="scala.collection.SortedSetLike">SortedSetLike</span>[<span class="extype" name="scala.Enumeration.Value">Value</span>, <span class="extype" name="scala.Enumeration.ValueSet">ValueSet</span>] with <span class="extype" name="scala.Serializable">Serializable</span></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Enumeration</dd></dl></div> </li></ol> </div> <div class="values members"> <h3>Value Members</h3> <ol> <li name="scala.AnyRef#!=" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="!=(x$1:Any):Boolean"></a><a id="!=(Any):Boolean"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#!=(x$1:Any):Boolean" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef###" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="##():Int"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html###():Int" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#==" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="==(x$1:Any):Boolean"></a><a id="==(Any):Boolean"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#==(x$1:Any):Boolean" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation#ConcurrentLeaderboard" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped"> <a id="ConcurrentLeaderboard:net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val"></a><a id="ConcurrentLeaderboard:Val"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#ConcurrentLeaderboard:net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">ConcurrentLeaderboard</span><span class="result">: <a href="Implementation$$Val.html" class="extype" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val">Val</a></span> </span> </li><li name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation#LeaderboardActor" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped"> <a id="LeaderboardActor:net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val"></a><a id="LeaderboardActor:Val"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#LeaderboardActor:net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">LeaderboardActor</span><span class="result">: <a href="Implementation$$Val.html" class="extype" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val">Val</a></span> </span> </li><li name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation#SynchronizedConcurrentLeaderboard" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped"> <a id="SynchronizedConcurrentLeaderboard:net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val"></a><a id="SynchronizedConcurrentLeaderboard:Val"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#SynchronizedConcurrentLeaderboard:net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">SynchronizedConcurrentLeaderboard</span><span class="result">: <a href="Implementation$$Val.html" class="extype" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val">Val</a></span> </span> </li><li name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation#SynchronizedLeaderboard" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped"> <a id="SynchronizedLeaderboard:net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val"></a><a id="SynchronizedLeaderboard:Val"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#SynchronizedLeaderboard:net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">SynchronizedLeaderboard</span><span class="result">: <a href="Implementation$$Val.html" class="extype" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val">Val</a></span> </span> </li><li name="scala.Enumeration#Value" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="Value(i:Int,name:String):Enumeration.this.Value"></a><a id="Value(Int,String):Value"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#Value(i:Int,name:String):Enumeration.this.Value" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">Value</span><span class="params">(<span name="i">i: <span class="extype" name="scala.Int">Int</span></span>, <span name="name">name: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <a href="#ValueextendsOrdered[Enumeration.this.Value]withSerializable" class="extmbr" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Value">Value</a></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected </dd><dt>Definition Classes</dt><dd>Enumeration</dd></dl></div> </li><li name="scala.Enumeration#Value" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="Value(name:String):Enumeration.this.Value"></a><a id="Value(String):Value"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#Value(name:String):Enumeration.this.Value" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">Value</span><span class="params">(<span name="name">name: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <a href="#ValueextendsOrdered[Enumeration.this.Value]withSerializable" class="extmbr" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Value">Value</a></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected </dd><dt>Definition Classes</dt><dd>Enumeration</dd></dl></div> </li><li name="scala.Enumeration#Value" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="Value(i:Int):Enumeration.this.Value"></a><a id="Value(Int):Value"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#Value(i:Int):Enumeration.this.Value" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">Value</span><span class="params">(<span name="i">i: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <a href="#ValueextendsOrdered[Enumeration.this.Value]withSerializable" class="extmbr" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Value">Value</a></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected </dd><dt>Definition Classes</dt><dd>Enumeration</dd></dl></div> </li><li name="scala.Enumeration#Value" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="Value:Enumeration.this.Value"></a><a id="Value:Value"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#Value:Enumeration.this.Value" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">Value</span><span class="result">: <a href="#ValueextendsOrdered[Enumeration.this.Value]withSerializable" class="extmbr" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Value">Value</a></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected </dd><dt>Definition Classes</dt><dd>Enumeration</dd></dl></div> </li><li name="scala.Enumeration#apply" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="apply(x:Int):Enumeration.this.Value"></a><a id="apply(Int):Value"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#apply(x:Int):Enumeration.this.Value" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">apply</span><span class="params">(<span name="x">x: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <a href="#ValueextendsOrdered[Enumeration.this.Value]withSerializable" class="extmbr" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Value">Value</a></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Enumeration</dd></dl></div> </li><li name="scala.Any#asInstanceOf" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="asInstanceOf[T0]:T0"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#asInstanceOf[T0]:T0" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#clone" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="clone():Object"></a><a id="clone():AnyRef"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#clone():Object" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../../../../java/lang/index.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@native</span><span class="args">()</span> <span class="name">@HotSpotIntrinsicCandidate</span><span class="args">()</span> <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" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="eq(x$1:AnyRef):Boolean"></a><a id="eq(AnyRef):Boolean"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#eq(x$1:AnyRef):Boolean" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#equals" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="equals(x$1:Any):Boolean"></a><a id="equals(Any):Boolean"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#equals(x$1:Any):Boolean" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#getClass" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="getClass():Class[_]"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#getClass():Class[_]" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd><dt>Annotations</dt><dd> <span class="name">@native</span><span class="args">()</span> <span class="name">@HotSpotIntrinsicCandidate</span><span class="args">()</span> </dd></dl></div> </li><li name="scala.AnyRef#hashCode" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="hashCode():Int"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#hashCode():Int" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd><dt>Annotations</dt><dd> <span class="name">@native</span><span class="args">()</span> <span class="name">@HotSpotIntrinsicCandidate</span><span class="args">()</span> </dd></dl></div> </li><li name="scala.Any#isInstanceOf" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isInstanceOf[T0]:Boolean"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#isInstanceOf[T0]:Boolean" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="net.kolotyluk.scala.extras.Logging#logger" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="logger:grizzled.slf4j.Logger"></a><a id="logger:Logger"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#logger:grizzled.slf4j.Logger" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">lazy val</span> </span> <span class="symbol"> <span class="name">logger</span><span class="result">: <span class="extype" name="grizzled.slf4j.Logger">Logger</span></span> </span> <p class="shortcomment cmt">The <a href="http://software.clapper.org/grizzled-slf4j/" target="_blank">Grizzled Logger</a> so that we can use lazy <a href="https://docs.scala-lang.org/overviews/core/string-interpolation.html" target="_blank">Scala String Interpolation</a> For example:</p><div class="fullcomment"><div class="comment cmt"><h3>Grizzled Logger</h3><p>The <a href="http://software.clapper.org/grizzled-slf4j/" target="_blank">Grizzled Logger</a> so that we can use lazy <a href="https://docs.scala-lang.org/overviews/core/string-interpolation.html" target="_blank">Scala String Interpolation</a> For example:</p><pre><span class="kw">val</span> foo = <span class="lit">"foo"</span> <span class="kw">val</span> bar = <span class="num">2</span> logger.debug(s<span class="lit">"@foo $bar"</span>)</pre><p>Where <code>s&quot;$foo $bar&quot;</code> is only evaluated if logging level is &quot;DEBUG&quot; or higher</p><p>This is lazy so that startup messaging can work without logging failures disrupting things. For example <a href="../../../../scala/extras/index.html" class="extype" name="net.kolotyluk.scala.extras">net.kolotyluk.scala.extras.</a> </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../../../scala/extras/Logging.html" class="extype" name="net.kolotyluk.scala.extras.Logging">Logging</a></dd></dl></div> </li><li name="scala.Enumeration#maxId" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="maxId:Int"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#maxId:Int" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">maxId</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Enumeration</dd></dl></div> </li><li name="scala.AnyRef#ne" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ne(x$1:AnyRef):Boolean"></a><a id="ne(AnyRef):Boolean"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#ne(x$1:AnyRef):Boolean" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.Enumeration#nextId" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="nextId:Int"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#nextId:Int" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">nextId</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected </dd><dt>Definition Classes</dt><dd>Enumeration</dd></dl></div> </li><li name="scala.Enumeration#nextName" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="nextName:Iterator[String]"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#nextName:Iterator[String]" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">var</span> </span> <span class="symbol"> <span class="name">nextName</span><span class="result">: <span class="extype" name="scala.Iterator">Iterator</span>[<span class="extype" name="scala.Predef.String">String</span>]</span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected </dd><dt>Definition Classes</dt><dd>Enumeration</dd></dl></div> </li><li name="scala.AnyRef#notify" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notify():Unit"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#notify():Unit" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@native</span><span class="args">()</span> <span class="name">@HotSpotIntrinsicCandidate</span><span class="args">()</span> </dd></dl></div> </li><li name="scala.AnyRef#notifyAll" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notifyAll():Unit"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#notifyAll():Unit" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@native</span><span class="args">()</span> <span class="name">@HotSpotIntrinsicCandidate</span><span class="args">()</span> </dd></dl></div> </li><li name="scala.Enumeration#readResolve" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="readResolve():AnyRef"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#readResolve():AnyRef" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">readResolve</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected </dd><dt>Definition Classes</dt><dd>Enumeration</dd></dl></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a><a id="synchronized[T0](⇒T0):T0"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#synchronized[T0](x$1:=&gt;T0):T0" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.Enumeration#toString" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toString():String"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#toString():String" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Enumeration → AnyRef → Any</dd></dl></div> </li><li name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation#valueToImplementationVal" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped"> <a id="valueToImplementationVal(x:net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Value):net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val"></a><a id="valueToImplementationVal(Value):Val"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#valueToImplementationVal(x:net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Value):net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier">implicit </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">valueToImplementationVal</span><span class="params">(<span name="x">x: <a href="#ValueextendsOrdered[Enumeration.this.Value]withSerializable" class="extmbr" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Value">Value</a></span>)</span><span class="result">: <a href="Implementation$$Val.html" class="extype" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Val">Val</a></span> </span> </li><li name="scala.Enumeration#values" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="values:Enumeration.this.ValueSet"></a><a id="values:ValueSet"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#values:Enumeration.this.ValueSet" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">values</span><span class="result">: <a href="#ValueSetextendsAbstractSet[Enumeration.this.Value]withSortedSet[Enumeration.this.Value]withSortedSetLike[Enumeration.this.Value,Enumeration.this.ValueSet]withSerializable" class="extmbr" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.ValueSet">ValueSet</a></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Enumeration</dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" class="indented0 " 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> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#wait(x$1:Long,x$2:Int):Unit" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <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" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long):Unit"></a><a id="wait(Long):Unit"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#wait(x$1:Long):Unit" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@native</span><span class="args">()</span> <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" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#wait():Unit" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <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.Enumeration#withName" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="withName(s:String):Enumeration.this.Value"></a><a id="withName(String):Value"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#withName(s:String):Enumeration.this.Value" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">withName</span><span class="params">(<span name="s">s: <span class="extype" name="scala.Predef.String">String</span></span>)</span><span class="result">: <a href="#ValueextendsOrdered[Enumeration.this.Value]withSerializable" class="extmbr" name="net.kolotyluk.leaderboard.akka_specific.endpoint.leaderboard.Implementation.Value">Value</a></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Enumeration</dd></dl></div> </li> </ol> </div> <div class="values members"> <h3>Deprecated Value Members</h3> <ol><li name="scala.AnyRef#finalize" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="finalize():Unit"></a> <span class="permalink"> <a href="../../../../../../net/kolotyluk/leaderboard/akka_specific/endpoint/leaderboard/Implementation$.html#finalize():Unit" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name deprecated" title="Deprecated: (Since version ) see corresponding Javadoc for more information.">finalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../../../../java/lang/index.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@Deprecated</span> <span class="name">@deprecated</span> <span class="name">@throws</span><span class="args">(<span> <span class="symbol">classOf[java.lang.Throwable]</span> </span>)</span> </dd><dt>Deprecated</dt><dd class="cmt"><p><i>(Since version )</i> see corresponding Javadoc for more information.</p></dd></dl></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="net.kolotyluk.scala.extras.Logging"> <h3>Inherited from <a href="../../../../scala/extras/Logging.html" class="extype" name="net.kolotyluk.scala.extras.Logging">Logging</a></h3> </div><div class="parent" name="scala.Enumeration"> <h3>Inherited from <span class="extype" name="scala.Enumeration">Enumeration</span></h3> </div><div class="parent" name="scala.Serializable"> <h3>Inherited from <span class="extype" name="scala.Serializable">Serializable</span></h3> </div><div class="parent" name="java.io.Serializable"> <h3>Inherited from <span class="extype" name="java.io.Serializable">Serializable</span></h3> </div><div class="parent" name="scala.AnyRef"> <h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3> </div><div class="parent" name="scala.Any"> <h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3> </div> </div> <div id="groupedMembers"> <div class="group" name="Ungrouped"> <h3>Ungrouped</h3> </div> </div> </div> <div id="tooltip"></div> <div id="footer"> </div> </body> </div> </div> </div> </body> </html>
src/main/webapp/demo/CommonLibs/SelectTreeWindow.html
hemingwang0902/jquery-miniui
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /><link href="../demo.css" rel="stylesheet" type="text/css" /> <script src="../../scripts/boot.js" type="text/javascript"></script> <style type="text/css"> html,body { padding:0; margin:0; border:0; width:100%; height:100%; overflow:hidden; } </style> </head> <body> <div class="mini-toolbar" style="text-align:center;line-height:30px;" borderStyle="border-left:0;border-top:0;border-right:0;"> <label >名称:</label> <input id="key" class="mini-textbox" style="width:150px;" onenter="onKeyEnter"/> <a class="mini-button" style="width:60px;" onclick="search()">查询</a> </div> <div class="mini-fit"> <ul id="tree1" class="mini-tree" style="width:100%;height:100%;" showTreeIcon="true" textField="text" idField="id" parentField="pid" resultAsTree="false" expandOnLoad="true" onnodedblclick="onNodeDblClick" expandOnDblClick="false" > </ul> </div> <div class="mini-toolbar" style="text-align:center;padding-top:8px;padding-bottom:8px;" borderStyle="border-left:0;border-bottom:0;border-right:0;"> <a class="mini-button" style="width:60px;" onclick="onOk()">确定</a> <span style="display:inline-block;width:25px;"></span> <a class="mini-button" style="width:60px;" onclick="onCancel()">取消</a> </div> </body> </html> <script type="text/javascript"> mini.parse(); var tree = mini.get("tree1"); tree.load("../data/listTree.txt"); function GetData() { var node = tree.getSelectedNode(); return node; } function search() { var key = mini.get("key").getValue(); if(key == ""){ tree.clearFilter(); }else{ key = key.toLowerCase(); tree.filter(function (node) { var text = node.text ? node.text.toLowerCase() : ""; if (text.indexOf(key) != -1) { return true; } }); } } function onKeyEnter(e) { search(); } function onNodeDblClick(e) { onOk(); } ////////////////////////////////// function CloseWindow(action) { if (window.CloseOwnerWindow) return window.CloseOwnerWindow(action); else window.close(); } function onOk() { var node = tree.getSelectedNode(); if (node && tree.isLeaf(node) == false) { alert("不能选中父节点"); return; } CloseWindow("ok"); } function onCancel() { CloseWindow("cancel"); } </script>
public/scaladoc/3.0.1-2.12/org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html
scalatest/scalatest-website
<!DOCTYPE html > <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <title>ScalaTest 3.0.1 - org.scalatest.matchers.MatcherFactory3.AndStartWithWord</title> <meta name="description" content="ScalaTest 3.0.1 - org.scalatest.matchers.MatcherFactory3.AndStartWithWord" /> <meta name="keywords" content="ScalaTest 3.0.1 org.scalatest.matchers.MatcherFactory3.AndStartWithWord" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <link href="../../../lib/index.css" media="screen" type="text/css" rel="stylesheet" /> <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"></script> <script type="text/javascript" src="../../../lib/jquery.panzoom.min.js"></script> <script type="text/javascript" src="../../../lib/jquery.mousewheel.min.js"></script> <script type="text/javascript" src="../../../lib/index.js"></script> <script type="text/javascript" src="../../../index.js"></script> <script type="text/javascript" src="../../../lib/scheduler.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"> /* this variable can be used by the JS to determine the path to the root document */ var toRoot = '../../../'; </script> </head> <body> <div id="search"> <span id="doc-title">ScalaTest 3.0.1<span id="doc-version"></span></span> <span class="close-results"><span class="left">&lt;</span> Back</span> <div id="textfilter"> <span class="input"> <input autocapitalize="none" placeholder="Search" id="index-input" type="text" accesskey="/" /> <i class="clear material-icons"></i> <i id="search-icon" class="material-icons"></i> </span> </div> </div> <div id="search-results"> <div id="search-progress"> <div id="progress-fill"></div> </div> <div id="results-content"> <div id="entity-results"></div> <div id="member-results"></div> </div> </div> <div id="content-scroll-container" style="-webkit-overflow-scrolling: touch;"> <div id="content-container" style="-webkit-overflow-scrolling: touch;"> <div id="subpackage-spacer"> <div id="packages"> <h1>Packages</h1> <ul> <li name="_root_.root" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="_root_"></a><a id="root:_root_"></a> <span class="permalink"> <a href="index.html#_root_" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">package</span> </span> <span class="symbol"> <a title="" href="../../../index.html"> <span class="name">root</span> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../../index.html" class="extype" name="_root_">root</a></dd></dl></div> </li><li name="_root_.org" visbl="pub" class="indented1 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="org"></a><a id="org:org"></a> <span class="permalink"> <a href="index.html#org" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">package</span> </span> <span class="symbol"> <a title="" href="../../index.html"> <span class="name">org</span> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../../index.html" class="extype" name="_root_">root</a></dd></dl></div> </li><li name="org.scalatest" visbl="pub" class="indented2 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="scalatest"></a><a id="scalatest:scalatest"></a> <span class="permalink"> <a href="../org/index.html#scalatest" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">package</span> </span> <span class="symbol"> <a title="ScalaTest's main traits, classes, and other members, including members supporting ScalaTest's DSL for the Scala interpreter." href="../index.html"> <span class="name">scalatest</span> </a> </span> <p class="shortcomment cmt">ScalaTest's main traits, classes, and other members, including members supporting ScalaTest's DSL for the Scala interpreter.</p><div class="fullcomment"><div class="comment cmt"><p>ScalaTest's main traits, classes, and other members, including members supporting ScalaTest's DSL for the Scala interpreter. </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../../index.html" class="extype" name="org">org</a></dd></dl></div> </li><li name="org.scalatest.matchers" visbl="pub" class="indented3 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="matchers"></a><a id="matchers:matchers"></a> <span class="permalink"> <a href="../../org/scalatest/index.html#matchers" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">package</span> </span> <span class="symbol"> <a title="" href="index.html"> <span class="name">matchers</span> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="../index.html" class="extype" name="org.scalatest">scalatest</a></dd></dl></div> </li><li name="org.scalatest.matchers.MatcherFactory3" visbl="pub" class="indented4 " data-isabs="true" fullComment="yes" group="Ungrouped"> <a id="MatcherFactory3[-SC,TC1[_],TC2[_],TC3[_]]extendsAnyRef"></a><a id="MatcherFactory3[-SC,TC1[_],TC2[_],TC3[_]]:MatcherFactory3[SC,TC1,TC2,TC3]"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/index.html#MatcherFactory3[-SC,TC1[_],TC2[_],TC3[_]]extendsAnyRef" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier">abstract </span> <span class="kind">class</span> </span> <span class="symbol"> <a title="A matcher factory that can produce a matcher given three typeclass instances." href="MatcherFactory3.html"> <span class="name">MatcherFactory3</span> </a><span class="tparams">[<span name="SC">-SC</span>, <span name="TC1">TC1<span class="tparams">[<span name="_">_</span>]</span></span>, <span name="TC2">TC2<span class="tparams">[<span name="_">_</span>]</span></span>, <span name="TC3">TC3<span class="tparams">[<span name="_">_</span>]</span></span>]</span><span class="result"> extends <span class="extype" name="scala.AnyRef">AnyRef</span></span> </span> <p class="shortcomment cmt">A matcher factory that can produce a matcher given three typeclass instances.</p><div class="fullcomment"><div class="comment cmt"><p>A matcher factory that can produce a matcher given three typeclass instances.</p><p>In the type parameters for this class, &quot;<code>SC</code>&quot; means <em>superclass</em>; &quot;<code>TC</code>&quot; (in <code>TC1</code>, <code>TC2</code>, <em>etc.</em>) means <em>typeclass</em>. This class's <code>matcher</code> factory method will produce a <code>Matcher[T]</code>, where <code>T</code> is a subtype of (or the same type as) <code>SC</code>, given a typeclass instance for each <code>TC<em>n</em></code> implicit parameter (for example, a <code>TC1[T]</code>, <code>TC2[T]</code>, <em>etc.</em>).</p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="index.html" class="extype" name="org.scalatest.matchers">matchers</a></dd></dl></div> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$AndBeWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$AndBeWord.html" title="This class is part of the ScalaTest matchers DSL."> AndBeWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$AndContainWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$AndContainWord.html" title="This class is part of the ScalaTest matchers DSL."> AndContainWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$AndEndWithWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$AndEndWithWord.html" title="This class is part of the ScalaTest matchers DSL."> AndEndWithWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$AndFullyMatchWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$AndFullyMatchWord.html" title="This class is part of the ScalaTest matchers DSL."> AndFullyMatchWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$AndHaveWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$AndHaveWord.html" title="This class is part of the ScalaTest matchers DSL."> AndHaveWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$AndIncludeWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$AndIncludeWord.html" title="This class is part of the ScalaTest matchers DSL."> AndIncludeWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$AndNotWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$AndNotWord.html" title="This class is part of the ScalaTest matchers DSL."> AndNotWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="" title="This class is part of the ScalaTest matchers DSL."></a> <a href="" title="This class is part of the ScalaTest matchers DSL."> AndStartWithWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$OrBeWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$OrBeWord.html" title="This class is part of the ScalaTest matchers DSL."> OrBeWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$OrContainWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$OrContainWord.html" title="This class is part of the ScalaTest matchers DSL."> OrContainWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$OrEndWithWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$OrEndWithWord.html" title="This class is part of the ScalaTest matchers DSL."> OrEndWithWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$OrFullyMatchWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$OrFullyMatchWord.html" title="This class is part of the ScalaTest matchers DSL."> OrFullyMatchWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$OrHaveWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$OrHaveWord.html" title="This class is part of the ScalaTest matchers DSL."> OrHaveWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$OrIncludeWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$OrIncludeWord.html" title="This class is part of the ScalaTest matchers DSL."> OrIncludeWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$OrNotWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$OrNotWord.html" title="This class is part of the ScalaTest matchers DSL."> OrNotWord </a> </li><li class="current-entities indented4"> <span class="separator"></span> <a class="class" href="MatcherFactory3$OrStartWithWord.html" title="This class is part of the ScalaTest matchers DSL."></a> <a href="MatcherFactory3$OrStartWithWord.html" title="This class is part of the ScalaTest matchers DSL."> OrStartWithWord </a> </li> </ul> </div> </div> <div id="content"> <body class="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"> <div class="big-circle class">c</div> <p id="owner"><a href="../../index.html" class="extype" name="org">org</a>.<a href="../index.html" class="extype" name="org.scalatest">scalatest</a>.<a href="index.html" class="extype" name="org.scalatest.matchers">matchers</a>.<a href="MatcherFactory3.html" class="extype" name="org.scalatest.matchers.MatcherFactory3">MatcherFactory3</a></p> <h1>AndStartWithWord<span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html" title="Permalink"> <i class="material-icons"></i> </a> </span></h1> <h3><span class="morelinks"></span></h3> </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">AndStartWithWord</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-3.0.1/scalatest//scala/genfactories/MatcherFactory3.scala" target="_blank">MatcherFactory3.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 class="toggle"></div> <div id="memberfilter"> <i class="material-icons arrow"></i> <span class="input"> <input id="mbrsel-input" placeholder="Filter all members" type="text" accesskey="/" /> </span> <i class="clear material-icons"></i> </div> <div id="filterby"> <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 class="ancestors"> <span class="filtertype">Inherited<br /> </span> <ol id="linearization"> <li class="in" name="org.scalatest.matchers.MatcherFactory3.AndStartWithWord"><span>AndStartWithWord</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 class="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> <div id="template"> <div id="allMembers"> <div id="constructors" class="members"> <h3>Instance Constructors</h3> <ol><li name="org.scalatest.matchers.MatcherFactory3.AndStartWithWord#&lt;init&gt;" visbl="pub" class="indented0 " data-isabs="false" fullComment="no" group="Ungrouped"> <a id="&lt;init&gt;():MatcherFactory3.this.AndStartWithWord"></a><a id="&lt;init&gt;:AndStartWithWord"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#&lt;init&gt;():MatcherFactory3.this.AndStartWithWord" title="Permalink"> <i class="material-icons"></i> </a> </span> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">new</span> </span> <span class="symbol"> <span class="name">AndStartWithWord</span><span class="params">()</span> </span> </li></ol> </div> <div class="values members"> <h3>Value Members</h3> <ol> <li name="scala.AnyRef#!=" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="!=(x$1:Any):Boolean"></a><a id="!=(Any):Boolean"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#!=(x$1:Any):Boolean" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef###" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="##():Int"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html###():Int" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#==" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="==(x$1:Any):Boolean"></a><a id="==(Any):Boolean"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#==(x$1:Any):Boolean" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <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" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="asInstanceOf[T0]:T0"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#asInstanceOf[T0]:T0" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#clone" visbl="prt" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="clone():Object"></a><a id="clone():AnyRef"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#clone():Object" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <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" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="eq(x$1:AnyRef):Boolean"></a><a id="eq(AnyRef):Boolean"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#eq(x$1:AnyRef):Boolean" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#equals" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="equals(x$1:Any):Boolean"></a><a id="equals(Any):Boolean"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#equals(x$1:Any):Boolean" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <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" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="finalize():Unit"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#finalize():Unit" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <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" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="getClass():Class[_]"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#getClass():Class[_]" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <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" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="hashCode():Int"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#hashCode():Int" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <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" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isInstanceOf[T0]:Boolean"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#isInstanceOf[T0]:Boolean" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#ne" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ne(x$1:AnyRef):Boolean"></a><a id="ne(AnyRef):Boolean"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#ne(x$1:AnyRef):Boolean" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notify" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notify():Unit"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#notify():Unit" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notifyAll" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notifyAll():Unit"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#notifyAll():Unit" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="org.scalatest.matchers.MatcherFactory3.AndStartWithWord#regex" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="regex(regex:scala.util.matching.Regex):org.scalatest.matchers.MatcherFactory3[SCwithString,TC1,TC2,TC3]"></a><a id="regex(Regex):MatcherFactory3[SCwithString,TC1,TC2,TC3]"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#regex(regex:scala.util.matching.Regex):org.scalatest.matchers.MatcherFactory3[SCwithString,TC1,TC2,TC3]" title="Permalink"> <i class="material-icons"></i> </a> </span> <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="MatcherFactory3.html" class="extype" name="org.scalatest.matchers.MatcherFactory3">MatcherFactory3</a>[<span class="extype" name="org.scalatest.matchers.MatcherFactory3.SC">SC</span> with <span class="extype" name="scala.Predef.String">String</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory3.TC1">TC1</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory3.TC2">TC2</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory3.TC3">TC3</span>]</span> </span> <p class="shortcomment cmt">This method enables the following syntax given a <code>MatcherFactory3</code>:</code></p><div class="fullcomment"><div class="comment cmt"><p>This method enables the following syntax given a <code>MatcherFactory3</code>:</p><p><pre class="stHighlighted"> aMatcherFactory and startWith regex (decimalRegex) ^ </pre> </p></div></div> </li><li name="org.scalatest.matchers.MatcherFactory3.AndStartWithWord#regex" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="regex(regexWithGroups:org.scalatest.words.RegexWithGroups):org.scalatest.matchers.MatcherFactory3[SCwithString,TC1,TC2,TC3]"></a><a id="regex(RegexWithGroups):MatcherFactory3[SCwithString,TC1,TC2,TC3]"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#regex(regexWithGroups:org.scalatest.words.RegexWithGroups):org.scalatest.matchers.MatcherFactory3[SCwithString,TC1,TC2,TC3]" title="Permalink"> <i class="material-icons"></i> </a> </span> <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="MatcherFactory3.html" class="extype" name="org.scalatest.matchers.MatcherFactory3">MatcherFactory3</a>[<span class="extype" name="org.scalatest.matchers.MatcherFactory3.SC">SC</span> with <span class="extype" name="scala.Predef.String">String</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory3.TC1">TC1</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory3.TC2">TC2</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory3.TC3">TC3</span>]</span> </span> <p class="shortcomment cmt">This method enables the following syntax given a <code>MatcherFactory3</code>:</code></p><div class="fullcomment"><div class="comment cmt"><p>This method enables the following syntax given a <code>MatcherFactory3</code>:</p><p><pre class="stHighlighted"> aMatcherFactory and startWith regex (<span class="stQuotedString">"a(b*)c"</span> withGroup <span class="stQuotedString">"bb"</span>) ^ </pre> </p></div></div> </li><li name="org.scalatest.matchers.MatcherFactory3.AndStartWithWord#regex" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="regex(regexString:String):org.scalatest.matchers.MatcherFactory3[SCwithString,TC1,TC2,TC3]"></a><a id="regex(String):MatcherFactory3[SCwithString,TC1,TC2,TC3]"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#regex(regexString:String):org.scalatest.matchers.MatcherFactory3[SCwithString,TC1,TC2,TC3]" title="Permalink"> <i class="material-icons"></i> </a> </span> <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="MatcherFactory3.html" class="extype" name="org.scalatest.matchers.MatcherFactory3">MatcherFactory3</a>[<span class="extype" name="org.scalatest.matchers.MatcherFactory3.SC">SC</span> with <span class="extype" name="scala.Predef.String">String</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory3.TC1">TC1</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory3.TC2">TC2</span>, <span class="extype" name="org.scalatest.matchers.MatcherFactory3.TC3">TC3</span>]</span> </span> <p class="shortcomment cmt">This method enables the following syntax given a <code>MatcherFactory3</code>:</code></p><div class="fullcomment"><div class="comment cmt"><p>This method enables the following syntax given a <code>MatcherFactory3</code>:</p><p><pre class="stHighlighted"> aMatcherFactory and startWith regex (decimal) ^ </pre> </p></div></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a><a id="synchronized[T0](⇒T0):T0"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#synchronized[T0](x$1:=&gt;T0):T0" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#toString" visbl="pub" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toString():String"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#toString():String" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <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" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#wait():Unit" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <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" class="indented0 " 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> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#wait(x$1:Long,x$2:Int):Unit" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <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" class="indented0 " data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long):Unit"></a><a id="wait(Long):Unit"></a> <span class="permalink"> <a href="../../../org/scalatest/matchers/MatcherFactory3$AndStartWithWord.html#wait(x$1:Long):Unit" title="Permalink"> <i class="material-icons"></i> </a> </span> <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> <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> </div> </div> </div> </body> </html>
urn.com.elbeesee.kbodata.server/resources/ux/css/explorer.css
elephantbirdconsulting/netkernel-contribution
/* explorer.css */ #explorer { margin: 16px 0; } #explorer .api { border-top: 1px solid #AA332B; margin: 8px 0 16px 0; } #explorer h4 { font-family: "Lato Light", "Helvetica Neue", Helvetica, Arial, sans-serif; padding: 8px 8px 10px 8px; cursor: pointer; font-size: 18px; } #explorer .api.active h4, #explorer h4:hover { background-color: #f0f0f0; color: #AA332B; } #explorer .api .form-area { background-color: #f0f0f0; } #explorer .api form { display: none; overflow: hidden; } #explorer .api.active form { display: block; padding: 16px; } form input, form select, form textarea { width: 70%; padding: 8px 10px; font-size: 14px; line-height: 18px; border: 2px solid #ccc; border-radius: 4px; vertical-align: top; margin-bottom: 5px; } form select.samples { width: 25%; } form textarea { min-height: 250px; font-family: "Courier New", monospace; font-size: 13px; line-height: 14px; } form select { height: 38px; } form input:focus, form select:focus, form textarea:focus { border: 2px solid #999; } form .buttons { margin: 10px 0; text-align: left; } form button { display: inline-block; margin-right: 7px; border: 1px solid #666; text-align: center; vertical-align: middle; cursor: pointer; padding: 6px 12px; font-size: 14px; border-radius: 4px; background-color: #fff; } form button:hover, form button:focus { background-color: #f0f0f0; } form .buttons .status { display: inline-block; vertical-align: middle; padding: 6px 12px; font-size: 14px; }
docs/apidocs/deprecated-list.html
mikkoi/maven-enforcer-char-set-encoding
<!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_91) on Wed Aug 31 23:05:47 CEST 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Deprecated List (Maven Enforcer Char Set Encoding 1.0.1-SNAPSHOT API)</title> <meta name="date" content="2016-08-31"> <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="Deprecated List (Maven Enforcer Char Set Encoding 1.0.1-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="com/github/mikkoi/maven/plugins/enforcer/rule/charsetencoding/package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li><a href="com/github/mikkoi/maven/plugins/enforcer/rule/charsetencoding/package-tree.html">Tree</a></li> <li class="navBarCell1Rev">Deprecated</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?deprecated-list.html" target="_top">Frames</a></li> <li><a href="deprecated-list.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Deprecated API" class="title">Deprecated API</h1> <h2 title="Contents">Contents</h2> </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="com/github/mikkoi/maven/plugins/enforcer/rule/charsetencoding/package-summary.html">Package</a></li> <li>Class</li> <li>Use</li> <li><a href="com/github/mikkoi/maven/plugins/enforcer/rule/charsetencoding/package-tree.html">Tree</a></li> <li class="navBarCell1Rev">Deprecated</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?deprecated-list.html" target="_top">Frames</a></li> <li><a href="deprecated-list.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p> </body> </html>
05 Introduction to Financial Python[]/12 Modern Portfolio Theory/03 Portfolio.html
QuantConnect/Tutorials
<p> Suppose we invest some fraction \(w_1, w_2, \dots, w_n\) of our wealth in <em>n</em> risky assets (labelled 1 to <em>n</em>), and the remainder \(w_0\) in a riskless asset such as cash in a bank account. </p> <p> Clearly \(w_0 + w_1 + \dots + w_n = 1\) since our wealth comprises all those assets. </p> <p> Let \(R_0, R_1, \dots, R_n\) be the respective asset returns, then our portfolio return is </p> \[ R_P = w_0 R_0 + w_1 R_1 + \dots + w_n R_n \] <p> Alternatively, we can eliminate \(w_0\) to get </p> \[ R_P - R_0 = w_1 (R_1 - R_0) + \dots + w_n (R_n - R_0) \] <p> Our <strong>expected</strong> portfolio return is </p> \[ \mathbb{E}(R_P) = w_0 R_0 + w_1 \mathbb{E}(R_1) + \dots + w_n \mathbb{E}(R_n) \] <p> Note that \( \mathbb{E}(R_0) = R_0 \) since the riskless return is known with certainty, by definition. </p> <a name="correlation"></a> <h4>Correlation</h4> <p> Before computing portfolio risk, we need to first understand covariance and correlation. They measure the linear relationship between two random variables. </p> <p> The covariance of two random variables X and Y is defined as </p> \[ \text{Cov}(X, Y) = \mathbb{E} \left[ (X-\mathbb{E}(X)) (Y-\mathbb{E}(Y)) \right] \] <p> The correlation of X and Y, which is always between &minus;1 and 1, is their covariance after being standardized: </p> \[ \text{Corr}(X, Y) = \text{Cov} \left( \frac{X-\mathbb{E}(X)}{\sigma_X}, \frac{Y-\mathbb{E}(Y)}{\sigma_Y} \right) = \frac{\text{Cov}(X, Y)}{\sigma_X \sigma_Y} \] <h4>Risk</h4> <p> Now we are ready to compute portfolio risk, as measured by the variance of portfolio returns: </p> \[ \text{Var}(R_P) = \text{Var}(w_0 R_0 + w_1 R_1 + \dots + w_n R_n) \] <p> Recall that \( \text{Var}(X + c) = \text{Var}(X) \) if <em>c</em> is a known constant, so the term \( w_0 R_0 \) involving the riskless return can be omitted. It will be convenient to use <a href="https://www.mathsisfun.com/algebra/sigma-notation.html" target="_blank">sigma notation</a>: </p> \[ \text{Var}(R_P) = \text{Var} \left( \sum_{k=1}^n w_k R_k \right) \] \[ = \mathbb{E} \left[\left( \sum_{k=1}^n w_k R_k - \mathbb{E} \left( \sum_{k=1}^n w_k R_k \right) \right)^2\right] \] \[ = \mathbb{E} \left[\left( \sum_{k=1}^n w_k \, \left( R_k - \mathbb{E}(R_k) \right) \right)^2\right] \] <p> So we have a squared sum of <em>n</em> terms. How do we expand it? </p> \[ \left( \sum_{k=1}^n u_k \right)^2 = (u_1 + \dots + u_n) \, (u_1 + \dots + u_n) \] <p> If we expand the brackets on the right hand side, every term has the form \( u_i u_j \) where <em>i</em> and <em>j</em> can be 1, 2, ... , or <em>n</em>. </p> \[ \left( \sum_{k=1}^n u_k \right)^2 = \sum_{i=1}^n \sum_{j=1}^n u_i u_j \] <p> Therefore </p> \[ \text{Var}(R_P) = \mathbb{E} \left[ \sum_{i=1}^n \sum_{j=1}^n w_i \, w_j \, (R_i - \mathbb{E}(R_i)) (R_j - \mathbb{E}(R_j)) \right] \] \[ = \sum_{i=1}^n \sum_{j=1}^n w_i \, w_j \, \text{Cov}(R_i, R_j) \] <p> The last step arises from the definition of <a href="#correlation">covariance</a>. The only thing left is to express portfolio risk in matrix notation: </p> \[ \text{Var}(R_P) = \mathbf{w}^T \Sigma \mathbf{w} \] <p> where </p> \[ \mathbf{w} = \begin{pmatrix} w_1 \\ \vdots \\ w_n \end{pmatrix} \qquad \Sigma = \begin{bmatrix} \text{Cov}(R_1, R_1) & \text{Cov}(R_1, R_2) & ... & \text{Cov}(R_1, R_n) \\ \text{Cov}(R_2, R_1) & \text{Cov}(R_2, R_2) & ... & \text{Cov}(R_2, R_n) \\ \vdots & \vdots & \ddots & \vdots \\ \text{Cov}(R_n, R_1) & \text{Cov}(R_n, R_2) & ... & \text{Cov}(R_n, R_n) \end{bmatrix} \] <h4>Intuition</h4> <p> How can we make sense of portfolio risk? Consider a simple case with a riskless asset and only <em>n</em> = 2 risky assets. </p> \[ \text{Var}(R_P) = w_A^2 \text{Var}(R_A) + w_B^2 \text{Var}(R_B) + 2w_A w_B \text{Cov}(R_A, R_B) \] <p> Portfolio risk can be reduced by choosing two assets that are negatively correlated. This is the benefit of diversification. </p>
Hibernate-source/源代码及重要说明/Hibernate相关资料/hibernate-3.2.0.ga/hibernate-3.2/doc/api/org/hibernate/event/class-use/AutoFlushEventListener.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:22 CDT 2006 --> <TITLE> Uses of Interface org.hibernate.event.AutoFlushEventListener (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 Interface org.hibernate.event.AutoFlushEventListener (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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/hibernate/event/AutoFlushEventListener.html" title="interface in org.hibernate.event"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="AutoFlushEventListener.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Interface<br>org.hibernate.event.AutoFlushEventListener</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/event/AutoFlushEventListener.html" title="interface in org.hibernate.event">AutoFlushEventListener</A></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.hibernate.event"><B>org.hibernate.event</B></A></TD> <TD> This package defines an event framework for Hibernate.&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.hibernate.event.def"><B>org.hibernate.event.def</B></A></TD> <TD> This package defines a default set of event listeners that implements the default behaviors of Hibernate.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.hibernate.event"><!-- --></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/event/AutoFlushEventListener.html" title="interface in org.hibernate.event">AutoFlushEventListener</A> in <A HREF="../../../../org/hibernate/event/package-summary.html">org.hibernate.event</A></FONT></TD> </TR> </TABLE> &nbsp; <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/event/package-summary.html">org.hibernate.event</A> that return <A HREF="../../../../org/hibernate/event/AutoFlushEventListener.html" title="interface in org.hibernate.event">AutoFlushEventListener</A></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../org/hibernate/event/AutoFlushEventListener.html" title="interface in org.hibernate.event">AutoFlushEventListener</A>[]</CODE></FONT></TD> <TD><CODE><B>EventListeners.</B><B><A HREF="../../../../org/hibernate/event/EventListeners.html#getAutoFlushEventListeners()">getAutoFlushEventListeners</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TD COLSPAN=2>Methods in <A HREF="../../../../org/hibernate/event/package-summary.html">org.hibernate.event</A> with parameters of type <A HREF="../../../../org/hibernate/event/AutoFlushEventListener.html" title="interface in org.hibernate.event">AutoFlushEventListener</A></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>EventListeners.</B><B><A HREF="../../../../org/hibernate/event/EventListeners.html#setAutoFlushEventListeners(org.hibernate.event.AutoFlushEventListener[])">setAutoFlushEventListeners</A></B>(<A HREF="../../../../org/hibernate/event/AutoFlushEventListener.html" title="interface in org.hibernate.event">AutoFlushEventListener</A>[]&nbsp;autoFlushEventListener)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.hibernate.event.def"><!-- --></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/event/AutoFlushEventListener.html" title="interface in org.hibernate.event">AutoFlushEventListener</A> in <A HREF="../../../../org/hibernate/event/def/package-summary.html">org.hibernate.event.def</A></FONT></TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TD COLSPAN=2>Classes in <A HREF="../../../../org/hibernate/event/def/package-summary.html">org.hibernate.event.def</A> that implement <A HREF="../../../../org/hibernate/event/AutoFlushEventListener.html" title="interface in org.hibernate.event">AutoFlushEventListener</A></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/hibernate/event/def/DefaultAutoFlushEventListener.html" title="class in org.hibernate.event.def">DefaultAutoFlushEventListener</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Defines the default flush event listeners used by hibernate for flushing session state in response to generated auto-flush events.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../org/hibernate/event/AutoFlushEventListener.html" title="interface in org.hibernate.event"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="AutoFlushEventListener.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
benchmark/web-dsp/demo/index.html
01alchemist/TurboScript
<html> <head> <meta charset="UTF-8"> <link rel="Stylesheet" href="style.css" type="text/css"> <title>WASM Example</title> </head> <body> <header><h1>WebAssembly Video Editor</h1></header> <div id="git-link"><a href="https://github.com/shamadee/web-dsp">github.com/shamadee/web-dsp</a></div> <button id = "webcamButton" onclick="webcamToggle()">Switch to Webcam</button> <div id = 'editor'> <div id = 'middle-col'> <canvas id="c" width="720" height="486"></canvas> <video id="v" loop="false" autoplay style="display:none;" src="media/vid.mp4" type="video/mp4"></video> <div id = "controls"> <div> <button id = "playButton" onclick="playToggle()"><img id = "playImg" alt = "Play Button" src = "img/pause1.svg"></button> <button id = "rewind" onclick="rewind()"><img id = "rewindImg" alt = "Rewind" src = "img/rewind1.svg"></button> </div> <h1 id = "vidTime">00:00:00:00</h1> <div> <button id = "fastForward" onclick="fastForward()"><img id = "fastForwardImg" alt = "Fast Forward" src = "img/forward1.svg"></button> <button id = "loopButton" onclick="loopToggle()"><img id = "loopImg" alt = "Loop On Off" src = "img/noloop1.svg"></button> </div> </div> <div id = "timing"> <button id = "slowButton" onclick ="slowToggle()">Toggle Slow Motion</button> <button id = "fastButton" onclick ="fastToggle()">Toggle Fast Motion</button> </div> </div> <div id = "right-col"> <div id = "statsContainer"> <h2 id = "speedHead">Performance Comparison</h2> <p id="avg"></p> <div id = "stats">Loading..</div> <h3>Frame Rate. WASM = Green; JS = Blue;</h3> <canvas id = "statsCanvas" width = "400" height = "200"></canvas> <h3>Choppy Video? Disable Javascript below to see WebAssembly only</h3> <div id = "jsButtonDiv"> <button id="jsButton" onclick="disableJS()">Disable Javascript</button> <button id = "jsCanvas" onclick="disableJsCanvas()">Hide JS Canvas</button> </div> </div> </div> </div> <div id='js-container'> <h1 id = "jsCanvasHeading">JS Example</h1> <canvas id="c2" width="640" height="360"></canvas> <video id="v2" loop autoplay style="display:none;"> <source src="media/vid.mp4" type="video/mp4"/> </video> <p>*Underground, rooster, mist, kaleidoscope, bacteria, hulk edge, ghost, twisted don't have exact JS filter equivalents</p> </div> </br> <script src="smoothie.js" type="text/javascript"></script> <script src="lib/webdsp.js" type="text/javascript"></script> <script src="lib/webdsp_polyfill.js" type="text/javascript"></script> <script src="demo.js" type="text/javascript"></script> </body> </html> <!--Build math.c using emcc math.c -Os -s WASM=1 -s SIDE_MODULE=1 -o math.wasm-->
2.3.0.Final-SNAPSHOT/apidocs/org/wildfly/swarm/config/elytron/class-use/SyslogAuditLog.Transport.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 Jan 16 10:54:25 MST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.config.elytron.SyslogAuditLog.Transport (BOM: * : All 2.3.0.Final-SNAPSHOT API)</title> <meta name="date" content="2019-01-16"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.wildfly.swarm.config.elytron.SyslogAuditLog.Transport (BOM: * : All 2.3.0.Final-SNAPSHOT API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/elytron/SyslogAuditLog.Transport.html" title="enum 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.0.Final-SNAPSHOT</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/elytron/class-use/SyslogAuditLog.Transport.html" target="_top">Frames</a></li> <li><a href="SyslogAuditLog.Transport.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.config.elytron.SyslogAuditLog.Transport" class="title">Uses of Class<br>org.wildfly.swarm.config.elytron.SyslogAuditLog.Transport</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/SyslogAuditLog.Transport.html" title="enum in org.wildfly.swarm.config.elytron">SyslogAuditLog.Transport</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.elytron">org.wildfly.swarm.config.elytron</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.elytron"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/elytron/SyslogAuditLog.Transport.html" title="enum in org.wildfly.swarm.config.elytron">SyslogAuditLog.Transport</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> that return <a href="../../../../../../org/wildfly/swarm/config/elytron/SyslogAuditLog.Transport.html" title="enum in org.wildfly.swarm.config.elytron">SyslogAuditLog.Transport</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/elytron/SyslogAuditLog.Transport.html" title="enum in org.wildfly.swarm.config.elytron">SyslogAuditLog.Transport</a></code></td> <td class="colLast"><span class="typeNameLabel">SyslogAuditLog.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/SyslogAuditLog.html#transport--">transport</a></span>()</code> <div class="block">The transport to use to connect to the syslog server.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../org/wildfly/swarm/config/elytron/SyslogAuditLog.Transport.html" title="enum in org.wildfly.swarm.config.elytron">SyslogAuditLog.Transport</a></code></td> <td class="colLast"><span class="typeNameLabel">SyslogAuditLog.Transport.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/SyslogAuditLog.Transport.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>&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/wildfly/swarm/config/elytron/SyslogAuditLog.Transport.html" title="enum in org.wildfly.swarm.config.elytron">SyslogAuditLog.Transport</a>[]</code></td> <td class="colLast"><span class="typeNameLabel">SyslogAuditLog.Transport.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/SyslogAuditLog.Transport.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 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/SyslogAuditLog.Transport.html" title="enum in org.wildfly.swarm.config.elytron">SyslogAuditLog.Transport</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/elytron/SyslogAuditLog.html" title="type parameter in SyslogAuditLog">T</a></code></td> <td class="colLast"><span class="typeNameLabel">SyslogAuditLog.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/SyslogAuditLog.html#transport-org.wildfly.swarm.config.elytron.SyslogAuditLog.Transport-">transport</a></span>(<a href="../../../../../../org/wildfly/swarm/config/elytron/SyslogAuditLog.Transport.html" title="enum in org.wildfly.swarm.config.elytron">SyslogAuditLog.Transport</a>&nbsp;value)</code> <div class="block">The transport to use to connect to the syslog server.</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/SyslogAuditLog.Transport.html" title="enum 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.0.Final-SNAPSHOT</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/elytron/class-use/SyslogAuditLog.Transport.html" target="_top">Frames</a></li> <li><a href="SyslogAuditLog.Transport.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
src/test/resources/htmlblockselector/result076.html
attoparser/attoparser
article/content() three <div> <?xml version="2.0"?> <div> four </div> </div>
html/dir_616ac79a1c1cb259f45ab0d8fde0a725.html
XLabs/xlabs.github.io
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.10"/> <title>XLabs: F:/Projects/Xamarin-Forms-Labs/src/Platform/XLabs.Platform.WP81/obj/Release Directory Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="XLabs_logo.psd"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">XLabs </div> <div id="projectbrief">Cross-platform reusable C# libraries</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.10 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Packages</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('dir_616ac79a1c1cb259f45ab0d8fde0a725.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">Release Directory Reference</div> </div> </div><!--header--> <div class="contents"> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="files"></a> Files</h2></td></tr> <tr class="memitem:_platform_2_x_labs_8_platform_8_w_p81_2obj_2_release_2_temporary_generated_file__036_c0_b5_b-1481b0e98f950bdb27520a54f3135f4f03c"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="_platform_2_x_labs_8_platform_8_w_p81_2obj_2_release_2_temporary_generated_file__036_c0_b5_b-1481b0e98f950bdb27520a54f3135f4f03c.html">TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:_platform_2_x_labs_8_platform_8_w_p81_2obj_2_release_2_temporary_generated_file__5937a670-0e60-4077-877b-f7221da3dda1_8cs"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="_platform_2_x_labs_8_platform_8_w_p81_2obj_2_release_2_temporary_generated_file__5937a670-0e60-4077-877b-f7221da3dda1_8cs.html">TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:_platform_2_x_labs_8_platform_8_w_p81_2obj_2_release_2_temporary_generated_file___e7_a71_f73-0_f4676a8499fb93dd3677e6dd194ab20a8"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="_platform_2_x_labs_8_platform_8_w_p81_2obj_2_release_2_temporary_generated_file___e7_a71_f73-0_f4676a8499fb93dd3677e6dd194ab20a8.html">TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="dir_d4ad4d7d60f821f562b2a7ecf26328a2.html">Xamarin-Forms-Labs</a></li><li class="navelem"><a class="el" href="dir_e9192ae7d8f4e8063a65c898ed7ef130.html">src</a></li><li class="navelem"><a class="el" href="dir_eb16ccdc0c65d45d9a9f21ad6d515031.html">Platform</a></li><li class="navelem"><a class="el" href="dir_9a6c4fbe10411bc8e693fc84f2af2a07.html">XLabs.Platform.WP81</a></li><li class="navelem"><a class="el" href="dir_b542b1b667f8f00c061f7a8708b16223.html">obj</a></li><li class="navelem"><a class="el" href="dir_616ac79a1c1cb259f45ab0d8fde0a725.html">Release</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.10 </li> </ul> </div> </body> </html>
2017.8.1/apidocs/org/wildfly/swarm/cli/package-use.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 Aug 01 17:30:01 MST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Package org.wildfly.swarm.cli (Public javadocs 2017.8.1 API)</title> <meta name="date" content="2017-08-01"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package org.wildfly.swarm.cli (Public javadocs 2017.8.1 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.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/cli/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package org.wildfly.swarm.cli" class="title">Uses of Package<br>org.wildfly.swarm.cli</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../org/wildfly/swarm/cli/package-summary.html">org.wildfly.swarm.cli</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm">org.wildfly.swarm</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.cli">org.wildfly.swarm.cli</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../org/wildfly/swarm/cli/package-summary.html">org.wildfly.swarm.cli</a> used by <a href="../../../../org/wildfly/swarm/package-summary.html">org.wildfly.swarm</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../org/wildfly/swarm/cli/class-use/CommandLine.html#org.wildfly.swarm">CommandLine</a> <div class="block">A parsed command-line.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.cli"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../org/wildfly/swarm/cli/package-summary.html">org.wildfly.swarm.cli</a> used by <a href="../../../../org/wildfly/swarm/cli/package-summary.html">org.wildfly.swarm.cli</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../org/wildfly/swarm/cli/class-use/CommandLine.html#org.wildfly.swarm.cli">CommandLine</a> <div class="block">A parsed command-line.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../org/wildfly/swarm/cli/class-use/Option.html#org.wildfly.swarm.cli">Option</a> <div class="block">A single option specification.</div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="../../../../org/wildfly/swarm/cli/class-use/Option.Action.html#org.wildfly.swarm.cli">Option.Action</a> <div class="block">Callback functional interface for matched options.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="../../../../org/wildfly/swarm/cli/class-use/Options.html#org.wildfly.swarm.cli">Options</a> <div class="block">Options for command-line parsing.</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2017.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/cli/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
2016.9/apidocs/org/wildfly/swarm/config/webservices/class-use/ClientConfigSupplier.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 Sep 06 12:41:44 EDT 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.wildfly.swarm.config.webservices.ClientConfigSupplier (Public javadocs 2016.9 API)</title> <meta name="date" content="2016-09-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.webservices.ClientConfigSupplier (Public javadocs 2016.9 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfigSupplier.html" title="interface in org.wildfly.swarm.config.webservices">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2016.9</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/webservices/class-use/ClientConfigSupplier.html" target="_top">Frames</a></li> <li><a href="ClientConfigSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.webservices.ClientConfigSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.webservices.ClientConfigSupplier</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfigSupplier.html" title="interface in org.wildfly.swarm.config.webservices">ClientConfigSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfigSupplier.html" title="interface in org.wildfly.swarm.config.webservices">ClientConfigSupplier</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/webservices/ClientConfigSupplier.html" title="interface in org.wildfly.swarm.config.webservices">ClientConfigSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/Webservices.html" title="type parameter in Webservices">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Webservices.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Webservices.html#clientConfig-org.wildfly.swarm.config.webservices.ClientConfigSupplier-">clientConfig</a></span>(<a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfigSupplier.html" title="interface in org.wildfly.swarm.config.webservices">ClientConfigSupplier</a>&nbsp;supplier)</code> <div class="block">Install a supplied ClientConfig 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/webservices/ClientConfigSupplier.html" title="interface in org.wildfly.swarm.config.webservices">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2016.9</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/webservices/class-use/ClientConfigSupplier.html" target="_top">Frames</a></li> <li><a href="ClientConfigSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
DATASTAX_CASSANDRA-2.2.6/javadoc/org/apache/cassandra/db/class-use/DeletionTime.Serializer.html
elisska/cloudera-cassandra
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_51) on Thu Apr 28 18:37:57 UTC 2016 --> <title>Uses of Class org.apache.cassandra.db.DeletionTime.Serializer (apache-cassandra API)</title> <meta name="date" content="2016-04-28"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.cassandra.db.DeletionTime.Serializer (apache-cassandra API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/cassandra/db/DeletionTime.Serializer.html" title="class in org.apache.cassandra.db">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/cassandra/db/class-use/DeletionTime.Serializer.html" target="_top">Frames</a></li> <li><a href="DeletionTime.Serializer.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.cassandra.db.DeletionTime.Serializer" class="title">Uses of Class<br>org.apache.cassandra.db.DeletionTime.Serializer</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../org/apache/cassandra/db/DeletionTime.Serializer.html" title="class in org.apache.cassandra.db">DeletionTime.Serializer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.cassandra.db">org.apache.cassandra.db</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.db"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/cassandra/db/DeletionTime.Serializer.html" title="class in org.apache.cassandra.db">DeletionTime.Serializer</a> in <a href="../../../../../org/apache/cassandra/db/package-summary.html">org.apache.cassandra.db</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../org/apache/cassandra/db/package-summary.html">org.apache.cassandra.db</a> declared as <a href="../../../../../org/apache/cassandra/db/DeletionTime.Serializer.html" title="class in org.apache.cassandra.db">DeletionTime.Serializer</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../org/apache/cassandra/db/DeletionTime.Serializer.html" title="class in org.apache.cassandra.db">DeletionTime.Serializer</a></code></td> <td class="colLast"><span class="strong">DeletionTime.</span><code><strong><a href="../../../../../org/apache/cassandra/db/DeletionTime.html#serializer">serializer</a></strong></code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/cassandra/db/DeletionTime.Serializer.html" title="class in org.apache.cassandra.db">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/cassandra/db/class-use/DeletionTime.Serializer.html" target="_top">Frames</a></li> <li><a href="DeletionTime.Serializer.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2016 The Apache Software Foundation</small></p> </body> </html>
Documentation/html/legal.html
joohyepark/OpenNI-2.1.0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>OpenNI 2.0: Legal Stuff &amp; Acknowledgments</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="OpenNILogo.bmp"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">OpenNI 2.0 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.1.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="index.html">OpenNI Overview</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">Legal Stuff &amp; Acknowledgments </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>OpenNI 2.0 Copyright (c) 2012 PrimeSense Ltd.</p> <p>This product is licensed under the Apache License, Version 2.0 (the "License");</p> <p>You should have received a copy of the Apache License along with OpenNI. If not, see: <a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a></p> <p>This software is based in part on the work of the Independent JPEG Group.</p> <p>Your use of the library may involve use of the Microsoft Kinect for Windows Software Development Kit, which is currently subject to the following license: <a href="http://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx">http://www.microsoft.com/en-us/kinectforwindows/develop/sdk-eula.aspx</a> </p> </div></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Jan 15 2013 19:20:02 for OpenNI 2.0 by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.1.1 </small></address> </body> </html>
templates/registration/logged_out.html
liyao001/BioQueue
{% extends "ui/single.html" %} {% load i18n %} {% block breadcrumbs %}<ul class="breadcrumb"><li><a href="{% url 'admin:index' %}">{% trans 'Home' %}</a></li></ul>{% endblock %} {% block content %} <p>{% trans "Thanks for spending some quality time with the Web site today." %}</p> <p><a href="{% url 'accounts:login' %}">{% trans 'Log in again' %}</a></p> {% endblock %}
share/doc/api/org/apache/hadoop/io/compress/class-use/DecompressorStream.html
ZhangXFeng/hadoop
<!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 Tue May 19 17:12:41 PDT 2015 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class org.apache.hadoop.io.compress.DecompressorStream (Apache Hadoop Main 2.6.0-cdh5.4.2 API)</title> <meta name="date" content="2015-05-19"> <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.io.compress.DecompressorStream (Apache Hadoop Main 2.6.0-cdh5.4.2 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/io/compress/DecompressorStream.html" title="class in org.apache.hadoop.io.compress">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/io/compress/class-use/DecompressorStream.html" target="_top">Frames</a></li> <li><a href="DecompressorStream.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.io.compress.DecompressorStream" class="title">Uses of Class<br>org.apache.hadoop.io.compress.DecompressorStream</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/hadoop/io/compress/DecompressorStream.html" title="class in org.apache.hadoop.io.compress">DecompressorStream</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.hadoop.io.compress">org.apache.hadoop.io.compress</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.hadoop.io.compress"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/hadoop/io/compress/DecompressorStream.html" title="class in org.apache.hadoop.io.compress">DecompressorStream</a> in <a href="../../../../../../org/apache/hadoop/io/compress/package-summary.html">org.apache.hadoop.io.compress</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../../org/apache/hadoop/io/compress/DecompressorStream.html" title="class in org.apache.hadoop.io.compress">DecompressorStream</a> in <a href="../../../../../../org/apache/hadoop/io/compress/package-summary.html">org.apache.hadoop.io.compress</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/hadoop/io/compress/BlockDecompressorStream.html" title="class in org.apache.hadoop.io.compress">BlockDecompressorStream</a></strong></code> <div class="block">A <a href="../../../../../../org/apache/hadoop/io/compress/DecompressorStream.html" title="class in org.apache.hadoop.io.compress"><code>DecompressorStream</code></a> which works with 'block-based' based compression algorithms, as opposed to 'stream-based' compression algorithms.</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/hadoop/io/compress/DecompressorStream.html" title="class in org.apache.hadoop.io.compress">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/io/compress/class-use/DecompressorStream.html" target="_top">Frames</a></li> <li><a href="DecompressorStream.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2015 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.</small></p> </body> </html>
Jquery Mobile/dragabble/index.html
carlosrojaso/cursoJQUERY
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Draggable - Default functionality</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.10.2.js"></script> <script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script> <link rel="stylesheet" href="/resources/demos/style.css"> <style> #draggable { width: 150px; height: 150px; padding: 0.5em; } </style> <script> $(function() { $( "#draggable" ).draggable(); }); </script> </head> <body> <div id="draggable" class="ui-widget-content"> <p>Drag me around</p> </div> </body> </html>
docs/apidocs/org/apache/hadoop/hbase/rest/protobuf/generated/class-use/CellSetMessage.CellSet.Builder.html
algarecu/hbase-0.94.8-qod
<!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_43) on Wed May 22 21:49:32 UTC 2013 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class org.apache.hadoop.hbase.rest.protobuf.generated.CellSetMessage.CellSet.Builder (HBase 0.94.8 API) </TITLE> <META NAME="date" CONTENT="2013-05-22"> <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.rest.protobuf.generated.CellSetMessage.CellSet.Builder (HBase 0.94.8 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../../index.html?org/apache/hadoop/hbase/rest/protobuf/generated//class-useCellSetMessage.CellSet.Builder.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CellSetMessage.CellSet.Builder.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.hadoop.hbase.rest.protobuf.generated.CellSetMessage.CellSet.Builder</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/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.hadoop.hbase.rest.protobuf.generated"><B>org.apache.hadoop.hbase.rest.protobuf.generated</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.hadoop.hbase.rest.protobuf.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/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A> in <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.rest.protobuf.generated</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/package-summary.html">org.apache.hadoop.hbase.rest.protobuf.generated</A> that return <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#addAllRows(java.lang.Iterable)">addAllRows</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang">Iterable</A>&lt;? extends <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Row.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Row</A>&gt;&nbsp;values)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#addRows(org.apache.hadoop.hbase.rest.protobuf.generated.CellSetMessage.CellSet.Row.Builder)">addRows</A></B>(<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Row.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Row.Builder</A>&nbsp;builderForValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#addRows(org.apache.hadoop.hbase.rest.protobuf.generated.CellSetMessage.CellSet.Row)">addRows</A></B>(<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Row.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Row</A>&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#addRows(int, org.apache.hadoop.hbase.rest.protobuf.generated.CellSetMessage.CellSet.Row.Builder)">addRows</A></B>(int&nbsp;index, <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Row.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Row.Builder</A>&nbsp;builderForValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#addRows(int, org.apache.hadoop.hbase.rest.protobuf.generated.CellSetMessage.CellSet.Row)">addRows</A></B>(int&nbsp;index, <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Row.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Row</A>&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#clear()">clear</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#clearRows()">clearRows</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#clone()">clone</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#mergeFrom(org.apache.hadoop.hbase.rest.protobuf.generated.CellSetMessage.CellSet)">mergeFrom</A></B>(<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet</A>&nbsp;other)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#mergeFrom(com.google.protobuf.CodedInputStream, com.google.protobuf.ExtensionRegistryLite)">mergeFrom</A></B>(com.google.protobuf.CodedInputStream&nbsp;input, com.google.protobuf.ExtensionRegistryLite&nbsp;extensionRegistry)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#mergeFrom(com.google.protobuf.Message)">mergeFrom</A></B>(com.google.protobuf.Message&nbsp;other)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.html#newBuilder()">newBuilder</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.html#newBuilder(org.apache.hadoop.hbase.rest.protobuf.generated.CellSetMessage.CellSet)">newBuilder</A></B>(<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet</A>&nbsp;prototype)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.html#newBuilderForType()">newBuilderForType</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.html#newBuilderForType(com.google.protobuf.GeneratedMessage.BuilderParent)">newBuilderForType</A></B>(com.google.protobuf.GeneratedMessage.BuilderParent&nbsp;parent)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#removeRows(int)">removeRows</A></B>(int&nbsp;index)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#setRows(int, org.apache.hadoop.hbase.rest.protobuf.generated.CellSetMessage.CellSet.Row.Builder)">setRows</A></B>(int&nbsp;index, <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Row.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Row.Builder</A>&nbsp;builderForValue)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.Builder.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html#setRows(int, org.apache.hadoop.hbase.rest.protobuf.generated.CellSetMessage.CellSet.Row)">setRows</A></B>(int&nbsp;index, <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Row.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Row</A>&nbsp;value)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated">CellSetMessage.CellSet.Builder</A></CODE></FONT></TD> <TD><CODE><B>CellSetMessage.CellSet.</B><B><A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.html#toBuilder()">toBuilder</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../org/apache/hadoop/hbase/rest/protobuf/generated/CellSetMessage.CellSet.Builder.html" title="class in org.apache.hadoop.hbase.rest.protobuf.generated"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../../index.html?org/apache/hadoop/hbase/rest/protobuf/generated//class-useCellSetMessage.CellSet.Builder.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CellSetMessage.CellSet.Builder.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2013 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved. </BODY> </HTML>
2012.12.0/apidocs/org/wildfly/swarm/config/class-use/EJB3.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 Dec 12 12:37:17 MST 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.config.EJB3 (BOM: * : All 2012.12.0 API)</title> <meta name="date" content="2017-12-12"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.wildfly.swarm.config.EJB3 (BOM: * : All 2012.12.0 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class 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">WildFly Swarm API, 2012.12.0</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/class-use/EJB3.html" target="_top">Frames</a></li> <li><a href="EJB3.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.config.EJB3" class="title">Uses of Class<br>org.wildfly.swarm.config.EJB3</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class in org.wildfly.swarm.config">EJB3</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.ejb">org.wildfly.swarm.ejb</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class in org.wildfly.swarm.config">EJB3</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 classes, and an explanation"> <caption><span>Classes in <a href="../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with type parameters of type <a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class in org.wildfly.swarm.config">EJB3</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class in org.wildfly.swarm.config">EJB3</a>&lt;T extends <a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class in org.wildfly.swarm.config">EJB3</a>&lt;T&gt;&gt;</span></code> <div class="block">The configuration of the ejb3 subsystem.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/EJB3Consumer.html" title="interface in org.wildfly.swarm.config">EJB3Consumer</a>&lt;T extends <a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class in org.wildfly.swarm.config">EJB3</a>&lt;T&gt;&gt;</span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/EJB3Supplier.html" title="interface in org.wildfly.swarm.config">EJB3Supplier</a>&lt;T extends <a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class in org.wildfly.swarm.config">EJB3</a>&gt;</span></code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> that return <a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class in org.wildfly.swarm.config">EJB3</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class in org.wildfly.swarm.config">EJB3</a></code></td> <td class="colLast"><span class="typeNameLabel">EJB3Supplier.</span><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/config/EJB3Supplier.html#get--">get</a></span>()</code> <div class="block">Constructed instance of EJB3 resource</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.ejb"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class in org.wildfly.swarm.config">EJB3</a> in <a href="../../../../../org/wildfly/swarm/ejb/package-summary.html">org.wildfly.swarm.ejb</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> <caption><span>Subclasses of <a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class in org.wildfly.swarm.config">EJB3</a> in <a href="../../../../../org/wildfly/swarm/ejb/package-summary.html">org.wildfly.swarm.ejb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../org/wildfly/swarm/ejb/EJBFraction.html" title="class in org.wildfly.swarm.ejb">EJBFraction</a></span></code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/wildfly/swarm/config/EJB3.html" title="class 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">WildFly Swarm API, 2012.12.0</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/wildfly/swarm/config/class-use/EJB3.html" target="_top">Frames</a></li> <li><a href="EJB3.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
public/scaladoc/2.2.1/org/scalactic/TripleEqualsSupport$$Spread.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>Spread - ScalaTest 2.2.1 - org.scalactic.TripleEqualsSupport.Spread</title> <meta name="description" content="Spread - ScalaTest 2.2.1 - org.scalactic.TripleEqualsSupport.Spread" /> <meta name="keywords" content="Spread ScalaTest 2.2.1 org.scalactic.TripleEqualsSupport.Spread" /> <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.TripleEqualsSupport$$Spread'; 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.scalactic">scalactic</a>.<a href="TripleEqualsSupport$.html" class="extype" name="org.scalactic.TripleEqualsSupport">TripleEqualsSupport</a></p> <h1>Spread</h1> </div> <h4 id="signature" class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">case class</span> </span> <span class="symbol"> <span class="name">Spread</span><span class="tparams">[<span name="T">T</span>]</span><span class="params">(<span name="pivot">pivot: <span class="extype" name="org.scalactic.TripleEqualsSupport.Spread.T">T</span></span>, <span name="tolerance">tolerance: <span class="extype" name="org.scalactic.TripleEqualsSupport.Spread.T">T</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="evidence$1">evidence$1: <span class="extype" name="scala.Numeric">Numeric</span>[<span class="extype" name="org.scalactic.TripleEqualsSupport.Spread.T">T</span>]</span>)</span><span class="result"> extends <span class="extype" name="scala.Product">Product</span> with <span class="extype" name="scala.Serializable">Serializable</span></span> </span> </h4> <div id="comment" class="fullcommenttop"><div class="comment cmt"><p>Class representing an spread (<em>i.e.</em>, range) between two numbers.</p><p>The spread is expressed in terms of a <code>Numeric</code> <em>pivot</em> and <em>tolerance</em>. The spread extends from <code>pivot - tolerance</code> to <code>pivot + tolerance</code>, inclusive.</p></div><dl class="paramcmts block"><dt class="param">pivot</dt><dd class="cmt"><p>the pivot number at the center of the spread</p></dd><dt class="param">tolerance</dt><dd class="cmt"><p>the tolerance that determines the high and low point of the spread </p></dd></dl><dl class="attributes block"> <dt>Source</dt><dd><a href="https://github.com/scalatest/scalatest/tree/release-2.2.1-for-scala-2.11-and-2.10/src/main/scala/org/scalactic/TripleEqualsSupport.scala" target="_blank">TripleEqualsSupport.scala</a></dd></dl><div class="toggleContainer block"> <span class="toggle">Linear Supertypes</span> <div class="superTypes hiddenContent"><span class="extype" name="scala.Serializable">Serializable</span>, <span class="extype" name="java.io.Serializable">Serializable</span>, <span class="extype" name="scala.Product">Product</span>, <span class="extype" name="scala.Equals">Equals</span>, <span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div> </div></div> <div id="mbrsel"> <div id="textfilter"><span class="pre"></span><span class="input"><input id="mbrsel-input" type="text" accesskey="/" /></span><span class="post"></span></div> <div id="order"> <span class="filtertype">Ordering</span> <ol> <li class="alpha in"><span>Alphabetic</span></li> <li class="inherit out"><span>By inheritance</span></li> </ol> </div> <div id="ancestors"> <span class="filtertype">Inherited<br /> </span> <ol id="linearization"> <li class="in" name="org.scalactic.TripleEqualsSupport.Spread"><span>Spread</span></li><li class="in" name="scala.Serializable"><span>Serializable</span></li><li class="in" name="java.io.Serializable"><span>Serializable</span></li><li class="in" name="scala.Product"><span>Product</span></li><li class="in" name="scala.Equals"><span>Equals</span></li><li class="in" name="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.scalactic.TripleEqualsSupport.Spread#&lt;init&gt;" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="&lt;init&gt;(pivot:T,tolerance:T)(implicitevidence$1:Numeric[T]):org.scalactic.TripleEqualsSupport.Spread[T]"></a> <a id="&lt;init&gt;:Spread[T]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">new</span> </span> <span class="symbol"> <span class="name">Spread</span><span class="params">(<span name="pivot">pivot: <span class="extype" name="org.scalactic.TripleEqualsSupport.Spread.T">T</span></span>, <span name="tolerance">tolerance: <span class="extype" name="org.scalactic.TripleEqualsSupport.Spread.T">T</span></span>)</span><span class="params">(<span class="implicit">implicit </span><span name="arg0">arg0: <span class="extype" name="scala.Numeric">Numeric</span>[<span class="extype" name="org.scalactic.TripleEqualsSupport.Spread.T">T</span>]</span>)</span> </span> </h4> <p class="shortcomment cmt"></p><div class="fullcomment"><div class="comment cmt"></div><dl class="paramcmts block"><dt class="param">pivot</dt><dd class="cmt"><p>the pivot number at the center of the spread</p></dd><dt class="param">tolerance</dt><dd class="cmt"><p>the tolerance that determines the high and low point of the spread </p></dd></dl></div> </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="org.scalactic.TripleEqualsSupport.Spread#!==" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="!==(n:T):Boolean"></a> <a id="!==(T):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $bang$eq$eq" class="name">!==</span><span class="params">(<span name="n">n: <span class="extype" name="org.scalactic.TripleEqualsSupport.Spread.T">T</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <p class="shortcomment cmt">Returns <code>false</code> if the passed number, <code>n</code>, is within the spread represented by this <code>Spread</code> instance</p><div class="fullcomment"><div class="comment cmt"><p>Returns <code>false</code> if the passed number, <code>n</code>, is within the spread represented by this <code>Spread</code> instance</p><p>The purpose of this method, which will likely be used only rarely, is to achieve symmetry around the <code>!==</code> operator. The <code>TripleEquals</code> trait (and its type-checking siblings <code>TypeCheckedTripleEquals</code> and <code>ConversionCheckedTripleEquals</code>) enable you to write:</p><p><pre> a !== (1.0 +- 0.1) </pre></p><p>This method ensures the following mirrored form means the same thing:</p><p><pre> (1.0 +- 0.1) !== a </pre> </p></div><dl class="paramcmts block"><dt class="param">n</dt><dd class="cmt"><p>a number that may or may not lie within this spread </p></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="org.scalactic.TripleEqualsSupport.Spread#===" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="===(n:T):Boolean"></a> <a id="===(T):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $eq$eq$eq" class="name">===</span><span class="params">(<span name="n">n: <span class="extype" name="org.scalactic.TripleEqualsSupport.Spread.T">T</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <p class="shortcomment cmt">Returns <code>true</code> if the passed number, <code>n</code>, is within the spread represented by this <code>Spread</code> instance</p><div class="fullcomment"><div class="comment cmt"><p>Returns <code>true</code> if the passed number, <code>n</code>, is within the spread represented by this <code>Spread</code> instance</p><p>The purpose of this method, which will likely be used only rarely, is to achieve symmetry around the <code>===</code> operator. The <code>TripleEquals</code> trait (and its type-checking siblings <code>TypeCheckedTripleEquals</code> and <code>ConversionCheckedTripleEquals</code>) enable you to write:</p><p><pre> a === (1.0 +- 0.1) </pre></p><p>This method ensures the following mirrored form means the same thing:</p><p><pre> (1.0 +- 0.1) === a </pre> </p></div><dl class="paramcmts block"><dt class="param">n</dt><dd class="cmt"><p>a number that may or may not lie within this spread </p></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#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.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="org.scalactic.TripleEqualsSupport.Spread#isWithin" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="isWithin(n:T):Boolean"></a> <a id="isWithin(T):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">isWithin</span><span class="params">(<span name="n">n: <span class="extype" name="org.scalactic.TripleEqualsSupport.Spread.T">T</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <p class="shortcomment cmt">Determines whether the passed <code>Numeric</code> value <code>n</code> is within the spread represented by this <code>Spread</code> instance.</p> </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.scalactic.TripleEqualsSupport.Spread#pivot" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="pivot:T"></a> <a id="pivot:T"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">pivot</span><span class="result">: <span class="extype" name="org.scalactic.TripleEqualsSupport.Spread.T">T</span></span> </span> </h4> <p class="shortcomment cmt">the pivot number at the center of the spread</p> </li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="org.scalactic.TripleEqualsSupport.Spread#toString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toString():String"></a> <a id="toString():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toString</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4> <p class="shortcomment cmt">Overrides toString to return &quot;[pivot] plusOrMinus [tolerance]&quot; </p><div class="fullcomment"><div class="comment cmt"><p>Overrides toString to return &quot;[pivot] plusOrMinus [tolerance]&quot; </p></div><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="" class="extype" name="org.scalactic.TripleEqualsSupport.Spread">Spread</a> → AnyRef → Any</dd></dl></div> </li><li name="org.scalactic.TripleEqualsSupport.Spread#tolerance" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="tolerance:T"></a> <a id="tolerance:T"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">tolerance</span><span class="result">: <span class="extype" name="org.scalactic.TripleEqualsSupport.Spread.T">T</span></span> </span> </h4> <p class="shortcomment cmt">the tolerance that determines the high and low point of the spread </p> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <a id="wait():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long,x$2:Int):Unit"></a> <a id="wait(Long,Int):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long):Unit"></a> <a id="wait(Long):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">()</span> </dd></dl></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="scala.Serializable"> <h3>Inherited from <span class="extype" name="scala.Serializable">Serializable</span></h3> </div><div class="parent" name="java.io.Serializable"> <h3>Inherited from <span class="extype" name="java.io.Serializable">Serializable</span></h3> </div><div class="parent" name="scala.Product"> <h3>Inherited from <span class="extype" name="scala.Product">Product</span></h3> </div><div class="parent" name="scala.Equals"> <h3>Inherited from <span class="extype" name="scala.Equals">Equals</span></h3> </div><div class="parent" name="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>
surfers/wjun/pwhi.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 - Paris Whittaker</title> <meta name="description" content="Keep track of the statistics from Paris Whittaker. 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 Paris Whittaker 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/pwhi.png" class="img-responsive" alt=""> --> <h3 style="text-align:center;">Paris Whittaker</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%2Fpwhi&amp;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;">7.96</h1> </div> </div> <hr/> <h4 style="text-align:center;" >Competitions</h4> <h4 style="text-align:center;" >Epic Battles</h4> <div class="row"> <div class="col-sm-6 "> <p style="text-align:center;">Surfed <b>2</b> heats against <a href="http://fantasysurfingtips.com/surfers/wjun/bwilt.html"> Bella Wilton</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/wjun/bmaca.html"> Bronte Macaulay</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;">9</h2> </div> <div class="col-sm-4 portfolio-item"> <h6 style="text-align:center;">Heat wins</h6> <h2 style="text-align:center;">1</h2> </div> <div class="col-sm-4 portfolio-item"> <h6 style="text-align:center;">HEAT WINS PERCENTAGE</h6> <h2 style="text-align:center;">11.11%</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/pwhi"; // Replace PAGE_URL with your page's canonical URL variable this.page.identifier = '4742'; // 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":"2014","avg":5.75,"avg_all":7.96},{"year":"2015","avg":8.71,"avg_all":7.96},{"year":"2016","avg":9.43,"avg_all":7.96}], // 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":"2014","heats":3,"wins":0,"percs":"0.0%"},{"year":"2015","heats":3,"wins":0,"percs":"0.0%"},{"year":"2016","heats":3,"wins":1,"percs":"33.33%"}], // 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>
AutoTest/Tpl/Path/modf.html
yaolihui129/tpTest
<layout name="layout" /> <div class="place"> 所在位置: <a href="__APP__/Program">项目</a> ><a href="__APP__/Func/func/proid/<{$w.proid}>">功能点</a> >编辑 <span style="float:right;margin-right:60px;"> <a href="__APP__/Func/func/proid/<{$w.proid}>"> 返回</a> </span> </div> <div class="content"> <div class="main"> <div class="top">路径编辑 <span style="margin-left:23%">系统:<{$w.sysid|getSystem=###}></span> </div> <div class="left" align="left" style="width:30%"> <volist name='data' id='vo' empty="没有数据"><ul><li> <a href="__URL__/modf/id/<{$vo.id}>/sysid/<{$w.sysid}>/proid/<{$w.proid}>"> <{$vo.sn}>.<{$vo.path}>:<{$vo.pstate}></a> </li></ul></volist> </div> <div class="midd" align="right" > <table border="0" width="40%" align="left"> <form action="__URL__/update" method="post" > <input type="hidden" name="sysid" value="<{$path.sysid}>" /> <input type="hidden" name="id" value="<{$path.id}>" /> <tr><td>更新:</td><td><{$path.moder}>更新于:<{$path.updateTime}></td></tr> <tr><td>顺序:</td><td><input type="text" name="sn" value="<{$path.sn}>" class="input300"/></td></tr> <tr><td>路径:</td><td><input type="text" name="path" value="<{$path.path}>" class="input300"/></td></tr> <tr><td>状态:</td><td><{$pstate}></td></tr> <tr><td></td> <td><input type="submit" class="btn" name="do_submit" value="提 交"></form> <a href="__URL__/addf/sysid/<{$w.sysid}>/proid/<{$w.proid}>" ><button class="btn" >添加</button> </a> <a href="__APP__/Func/func/proid/<{$w.proid}>"><button class="btn" >返回</button></a> </td> </tr> </table> </div><!-- midd --> </div><!-- main -->
2.3.0.Final/apidocs/org/wildfly/swarm/resource/adapters/class-use/RARArchive.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 Jan 16 11:48:26 MST 2019 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.wildfly.swarm.resource.adapters.RARArchive (BOM: * : All 2.3.0.Final API)</title> <meta name="date" content="2019-01-16"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.wildfly.swarm.resource.adapters.RARArchive (BOM: * : All 2.3.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/resource/adapters/RARArchive.html" title="interface in org.wildfly.swarm.resource.adapters">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.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/resource/adapters/class-use/RARArchive.html" target="_top">Frames</a></li> <li><a href="RARArchive.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.resource.adapters.RARArchive" class="title">Uses of Interface<br>org.wildfly.swarm.resource.adapters.RARArchive</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/resource/adapters/RARArchive.html" title="interface in org.wildfly.swarm.resource.adapters">RARArchive</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.resource.adapters">org.wildfly.swarm.resource.adapters</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.resource.adapters"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/resource/adapters/RARArchive.html" title="interface in org.wildfly.swarm.resource.adapters">RARArchive</a> in <a href="../../../../../../org/wildfly/swarm/resource/adapters/package-summary.html">org.wildfly.swarm.resource.adapters</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/resource/adapters/package-summary.html">org.wildfly.swarm.resource.adapters</a> that return <a href="../../../../../../org/wildfly/swarm/resource/adapters/RARArchive.html" title="interface in org.wildfly.swarm.resource.adapters">RARArchive</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/resource/adapters/RARArchive.html" title="interface in org.wildfly.swarm.resource.adapters">RARArchive</a></code></td> <td class="colLast"><span class="typeNameLabel">RARArchive.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/resource/adapters/RARArchive.html#resourceAdapter-Asset-">resourceAdapter</a></span>(Asset&nbsp;ironjacamarAsset)</code> <div class="block">Add an IronJacamar asset.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/resource/adapters/RARArchive.html" title="interface in org.wildfly.swarm.resource.adapters">RARArchive</a></code></td> <td class="colLast"><span class="typeNameLabel">RARArchive.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/resource/adapters/RARArchive.html#resourceAdapter-java.io.File-">resourceAdapter</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/io/File.html?is-external=true" title="class or interface in java.io">File</a>&nbsp;ironjacamarFile)</code> <div class="block">Add an IronJacamar file.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/resource/adapters/RARArchive.html" title="interface in org.wildfly.swarm.resource.adapters">RARArchive</a></code></td> <td class="colLast"><span class="typeNameLabel">RARArchive.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/resource/adapters/RARArchive.html#resourceAdapter-org.wildfly.swarm.config.resource.adapters.ResourceAdapter-">resourceAdapter</a></span>(<a href="../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapter.html" title="class in org.wildfly.swarm.config.resource.adapters">ResourceAdapter</a>&nbsp;ra)</code> <div class="block">Add a fully-configured resource-adapter.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/resource/adapters/RARArchive.html" title="interface in org.wildfly.swarm.resource.adapters">RARArchive</a></code></td> <td class="colLast"><span class="typeNameLabel">RARArchive.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/resource/adapters/RARArchive.html#resourceAdapter-java.lang.String-org.wildfly.swarm.config.resource.adapters.ResourceAdapterConsumer-">resourceAdapter</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;key, <a href="../../../../../../org/wildfly/swarm/config/resource/adapters/ResourceAdapterConsumer.html" title="interface in org.wildfly.swarm.config.resource.adapters">ResourceAdapterConsumer</a>&nbsp;consumer)</code> <div class="block">Add and configure a resource-adapter.</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/resource/adapters/RARArchive.html" title="interface in org.wildfly.swarm.resource.adapters">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.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/resource/adapters/class-use/RARArchive.html" target="_top">Frames</a></li> <li><a href="RARArchive.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2019 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
EP5 css form/css/estilo_header_footer.css
lucassiqueira08/Tec.-Web
body{ margin:0; font-family: sans-serif; } /*Botão do menu com a tela pequena*/ #btnreder{ display:none; } #btnredes{ display: none; } .logo_header{ display: flex; float: left; } /*Div do Menu*/ .header{ background-color: #424242; font-weight: 500; position: fixed; width: 100%; top: 0; min-height: 7%; opacity:0.95; } /*Propriedades do botão do menu da tela pequena*/ .header label{ color: #efefef; font-size: 170%; display: block; padding: 5px 10px; width: 30px; border-right: 1px solid #e8eaf6; display: none; } /*hover menu tela pequena*/ .header label:hover{ background-color: black; } /*Lista de itens do menu*/ .reder{ width: 600px; } .reder ul { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; transition: all .5s; justify-content: flex-start; } /*formatação de cada item da lista*/ .topo_do_reder li a { color: #e8eaf6; text-decoration: none; padding: 15px 20px; display: block; border-radius: 8px; margin: 4px 2px; transition: all .6s; } .topo_do_reder{ width: 400px; float: left; } /*login / cadastro*/ .log_cad_header{ float: right; display: flex; flex-direction: row; align-items: center; height: 56px; width: 290px; margin:0 2px; } .log_cad_header li a{ color: #e8eaf6; text-decoration: none; padding: 10px 20px; border-radius: 3px; margin: 4px 2px; transition: all .6s; display: flex; } .invis_menu{ display: none; } .log_header { display: flex; } .log_header a{ border:.5px solid #e8eaf6; } .cad_header{ display: flex; } .cad_header a{ background-color: #12ab45; border: 1px solid #0d7d32; } /*Hover do menu*/ .topo_do_reder a:hover{ background-color: #8b8c8e; } .log_header a:hover{ color: #424242; background-color: #e8eaf6; } .cad_header a:hover{ background-color: #0d7d32; } /*define tamanho da div dos cursos*/ .center_cursos{ display: flex; justify-content: center; width: 100%; margin-top: 4%; } .titulo_cursos{ margin-top: 80px; font-size: 3.2em; color: #1e1e1e ; line-height: 25px; text-transform: uppercase; letter-spacing: .03em; font-weight: bold; text-align: center; font-family: 'titillium_web'; } /*definições de cada botao dos cursos*/ .cursos{ display: flex; flex-direction: column; justify-content: center; margin: 0 ; } /*animação de zoom nos botões de cursos*/ .zoom img{ margin:2px; padding: 2px; -moz-transition: all 0.3s; -webkit-transition: all 0.3s; transition: all 0.3s; margin:0; text-decoration: none; width: 22%; min-width: 270px; } .zoom:hover img{ -moz-transform: scale(1.05); -webkit-transform: scale(1.05); transform: scale(1.05); cursor: pointer; } .rodape{ width: 100%; display: inline-flex; padding:0; margin-top: 0px; background-color: #424242; justify-content: flex-start; align-items:center; } .siga { display: flex; z-index: 10; width: 15%; height: 70px; position: absolute; margin-left: 3%; align-items:center; } .siga h1{ font-size: 1.2em; color: #e8eaf6; line-height: 25px; text-transform: uppercase; letter-spacing: .1em; font-weight: bold; margin-top: 10px; } .redes { display: flex; z-index: 10; height: 73px; position: absolute; transition: all .5s; width: 15%; justify-content: flex-start; align-items:center; margin-left: 20%; } .redes a img{ width: 100%; } .redes a img:hover{ display:inline-block background-color:white; opacity:0.5 } .footer_copy{ display: inline-block; width: 100%; text-align: center; justify-content: center; align-items: flex-end; } .toppo{ display: flex; margin: 0 50%; padding: 0; border: 0; } @media (max-width: 550px){ .siga{ cursor: pointer; margin-top:-5px; } .siga h1{ font-weight: -100; text-align: center; border: 1px solid #e8eaf6; padding: 1px; } } @media (max-width: 580px){ .toppo{ margin:0 0 0 350px ; display:block; } #btnredes:checked ~ .redes{ margin-left: 33%; } .redes{ display: flex; flex-direction: row; right: 120%; z-index: 10; height: 10%; justify-content: center; } .redes a img{ width: 50px; } #btnredes:checked ~ .redes{ left: 5%; } } /*faz os botoes ficarem com 1 coluna quando o tamanho da tela for menor que 650px*/ @media (max-width: 650px){ .redes{ margin-right: 10px; } } /*Faz com que o botão do menu apareça com telas menores que 550px*/ @media (max-width: 700px) { .siga h1{ font-size: 1.3em; } .redes{ padding-right: 2%; } } @media (max-width: 780px) { .header label{ display: block; float:left; } .reder ul{ position: absolute; background-color: #2f2f2f; width: 70%; flex-direction: column; margin-top: -200%; } .reder li a{ margin: .5px; width: 85%; } #btnreder:checked ~ .reder ul{ margin-top: 46px; } } /*faz os botoes de cursos ficarem com 2 colunas quando o tamanho da tela for 900px*/ @media (max-width: 970px){ .log_right{ display:none; } .invis_menu{ display: flex; justify-content: center; align-items: center; width: 50px; height: 46px; float: right; border-radius: 3px; } .invis_menu:hover{ background-color: #8b8c8e; } } @media (max-width: 900px){ .center_cursos{ display: block; text-align: center; } .redes{ display: flex; flex-direction: row; right: 120%; z-index: 10; height: 10%; justify-content: center; } .redes a img{ width: 50px; } #btnredes:checked ~ .redes{ right: 5%; } .siga{ cursor: pointer; margin-top:-5px; } .siga h1{ font-weight: -100; text-align: center; border: 1px solid #e8eaf6; padding: 1px; } } @media (max-width: 1000px) { .redes{ display: flex; flex-direction: row; z-index: 10; height: 10%; justify-content: center; } .redes a img{ width: 50px; } .siga h1{ font-size: 1em; } } @media (max-width: 1150px) { .redes{ margin-left: 25%; width: 20%; } } @media (max-width: 1300px) { .siga{ width: 20%; } }
public/scaladoc/2.1.5/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.1.5 - org.scalatest.Stopper</title> <meta name="description" content="Stopper - ScalaTest 2.1.5 - org.scalatest.Stopper" /> <meta name="keywords" content="Stopper ScalaTest 2.1.5 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="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="Stopper$.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.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">trait</span> </span> <span class="symbol"> <span class="name">Stopper</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>Trait whose instances can accept a stop request and indicate whether a stop has already been requested.</p><p>This is passed in to the <code>run</code> method of <a href="Suite.html"><code>Suite</code></a>, so that running suites of tests can be requested to stop early.</p></div><dl class="attributes block"> <dt>Source</dt><dd><a href="https://github.com/scalatest/scalatest/tree/release-2.1.5-for-scala-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>Abstract Value Members</h3> <ol><li name="org.scalatest.Stopper#requestStop" visbl="pub" data-isabs="true" fullComment="yes" group="Ungrouped"> <a id="requestStop():Unit"></a> <a id="requestStop():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">abstract </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">requestStop</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4> <p class="shortcomment cmt">Request that the current run stop.</p><div class="fullcomment"><div class="comment cmt"><p>Request that the current run stop.</p><p>Invoking this method is like pulling the stop-request chord in a streetcar. It requests a stop, but in no way forces a stop. The running suite of tests decides when and how (and if) to respond to a stop request. ScalaTest's style traits periodically check the <code>stopRequested</code> method of the passed <code>Stopper</code>, and if a stop has been requested, terminates gracefully.</p></div></div> </li><li name="org.scalatest.Stopper#stopRequested" visbl="pub" data-isabs="true" fullComment="yes" group="Ungrouped"> <a id="stopRequested:Boolean"></a> <a id="stopRequested:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">abstract </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">stopRequested</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <p class="shortcomment cmt">Indicates whether a stop has been requested.</p><div class="fullcomment"><div class="comment cmt"><p>Indicates whether a stop has been requested.</p><p>Call this method to determine whether a running test should stop. The <code>run</code> method of any <code>Suite</code>, or code invoked by <code>run</code>, should periodically check the stop requested function. If <code>true</code>, the <code>run</code> method should interrupt its work and simply return.</p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>true if a stop has been requested </p></dd></dl></div> </li></ol> </div> <div id="values" class="values members"> <h3>Concrete 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="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="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 id="values" class="values members"> <h3>Deprecated Value Members</h3> <ol><li name="org.scalatest.Stopper#apply" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="apply():Boolean"></a> <a id="apply():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 deprecated" title="Deprecated: ">apply</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4> <p class="shortcomment cmt"><strong>This method has been deprecated and will be removed in a future version of ScalaTest. Please call the stopRequested method instead.</strong> </p><div class="fullcomment"><div class="comment cmt"><p><strong>This method has been deprecated and will be removed in a future version of ScalaTest. Please call the stopRequested method instead.</strong> </p></div><dl class="attributes block"> <dt>Annotations</dt><dd> <span class="name">@deprecated</span> </dd><dt>Deprecated</dt><dd class="cmt"></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>
Zoocmd/web/zoo/templates/wait_core.html
helicontech/zoo
{% extends 'base_without_header.html' %} {% block content %} <div id="filters" class="row"> <input type="hidden" id="core_state" value="{{state}}"> <input type="hidden" id="core_message" value="{{message}}"> <input type="hidden" id="core_errors" value="{{errors}}"> </div> {% endblock %} {% block page_scripts %} <script src="{{ static('zoo/wait_core.js') }}"></script> {% endblock %}
2018.1.0/apidocs/org/wildfly/swarm/config/elytron/class-use/ClientSslContext.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 Mon Jan 15 08:36:51 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.config.elytron.ClientSslContext (BOM: * : All 2018.1.0 API)</title> <meta name="date" content="2018-01-15"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.wildfly.swarm.config.elytron.ClientSslContext (BOM: * : All 2018.1.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/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2018.1.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/elytron/class-use/ClientSslContext.html" target="_top">Frames</a></li> <li><a href="ClientSslContext.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.config.elytron.ClientSslContext" class="title">Uses of Class<br>org.wildfly.swarm.config.elytron.ClientSslContext</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/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.elytron">org.wildfly.swarm.config.elytron</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a> in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> that return <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></code></td> <td class="colLast"><span class="typeNameLabel">Elytron.ElytronResources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.ElytronResources.html#clientSslContext-java.lang.String-">clientSslContext</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;key)</code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> that return types with arguments of type <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Elytron.ElytronResources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.ElytronResources.html#clientSslContexts--">clientSslContexts</a></span>()</code> <div class="block">Get the list of ClientSslContext resources</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/Elytron.html" title="type parameter in Elytron">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Elytron.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.html#clientSslContext-org.wildfly.swarm.config.elytron.ClientSslContext-">clientSslContext</a></span>(<a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&nbsp;value)</code> <div class="block">Add the ClientSslContext object to the list of subresources</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Method parameters in <a href="../../../../../../org/wildfly/swarm/config/package-summary.html">org.wildfly.swarm.config</a> with type arguments of type <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/Elytron.html" title="type parameter in Elytron">T</a></code></td> <td class="colLast"><span class="typeNameLabel">Elytron.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/Elytron.html#clientSslContexts-java.util.List-">clientSslContexts</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;<a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&gt;&nbsp;value)</code> <div class="block">Add all ClientSslContext objects to this subresource</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.elytron"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a> in <a href="../../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a> with type parameters of type <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&lt;T&gt;&gt;</span></code> <div class="block">An SSLContext for use on the client side of a connection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContextConsumer.html" title="interface in org.wildfly.swarm.config.elytron">ClientSslContextConsumer</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&lt;T&gt;&gt;</span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContextSupplier.html" title="interface in org.wildfly.swarm.config.elytron">ClientSslContextSupplier</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a>&gt;</span></code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/elytron/package-summary.html">org.wildfly.swarm.config.elytron</a> that return <a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">ClientSslContext</a></code></td> <td class="colLast"><span class="typeNameLabel">ClientSslContextSupplier.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContextSupplier.html#get--">get</a></span>()</code> <div class="block">Constructed instance of ClientSslContext resource</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/elytron/ClientSslContext.html" title="class in org.wildfly.swarm.config.elytron">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2018.1.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/elytron/class-use/ClientSslContext.html" target="_top">Frames</a></li> <li><a href="ClientSslContext.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
public/scaladoc/2.1.0/org/scalatest/Matchers$AnWord.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>AnWord - ScalaTest 2.1.0 - org.scalatest.Matchers.AnWord</title> <meta name="description" content="AnWord - ScalaTest 2.1.0 - org.scalatest.Matchers.AnWord" /> <meta name="keywords" content="AnWord ScalaTest 2.1.0 org.scalatest.Matchers.AnWord" /> <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$AnWord'; 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="Matchers.html" class="extype" name="org.scalatest.Matchers">Matchers</a></p> <h1>AnWord</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">AnWord</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.0-for-scala-2.10/src/main/scala/org/scalatest/Matchers.scala" target="_blank">Matchers.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.AnWord"><span>AnWord</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.AnWord#&lt;init&gt;" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="&lt;init&gt;():Matchers.this.AnWord"></a> <a id="&lt;init&gt;:AnWord"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">new</span> </span> <span class="symbol"> <span class="name">AnWord</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="org.scalatest.Matchers.AnWord#apply" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="apply[T](anMatcher:org.scalatest.matchers.AnMatcher[T]):org.scalatest.words.ResultOfAnWordToAnMatcherApplication[T]"></a> <a id="apply[T](AnMatcher[T]):ResultOfAnWordToAnMatcherApplication[T]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">apply</span><span class="tparams">[<span name="T">T</span>]</span><span class="params">(<span name="anMatcher">anMatcher: <span class="extype" name="org.scalatest.matchers.AnMatcher">AnMatcher</span>[<span class="extype" name="org.scalatest.Matchers.AnWord.apply.T">T</span>]</span>)</span><span class="result">: <a href="words/ResultOfAnWordToAnMatcherApplication.html" class="extype" name="org.scalatest.words.ResultOfAnWordToAnMatcherApplication">ResultOfAnWordToAnMatcherApplication</a>[<span class="extype" name="org.scalatest.Matchers.AnWord.apply.T">T</span>]</span> </span> </h4> <p class="shortcomment cmt">This method enables the following syntax, where, <code>positiveNumber</code> is an <code>AnMatcher[Book]</code>:</p><div class="fullcomment"><div class="comment cmt"><p>This method enables the following syntax, where, <code>positiveNumber</code> is an <code>AnMatcher[Book]</code>:</p><p><pre class="stHighlighted"> result should not be an (positiveNumber) ^ </pre> </p></div></div> </li><li name="org.scalatest.Matchers.AnWord#apply" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="apply[T](beTrueMatcher:org.scalatest.matchers.BePropertyMatcher[T]):org.scalatest.words.ResultOfAnWordToBePropertyMatcherApplication[T]"></a> <a id="apply[T](BePropertyMatcher[T]):ResultOfAnWordToBePropertyMatcherApplication[T]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">apply</span><span class="tparams">[<span name="T">T</span>]</span><span class="params">(<span name="beTrueMatcher">beTrueMatcher: <a href="matchers/BePropertyMatcher.html" class="extype" name="org.scalatest.matchers.BePropertyMatcher">BePropertyMatcher</a>[<span class="extype" name="org.scalatest.Matchers.AnWord.apply.T">T</span>]</span>)</span><span class="result">: <a href="words/ResultOfAnWordToBePropertyMatcherApplication.html" class="extype" name="org.scalatest.words.ResultOfAnWordToBePropertyMatcherApplication">ResultOfAnWordToBePropertyMatcherApplication</a>[<span class="extype" name="org.scalatest.Matchers.AnWord.apply.T">T</span>]</span> </span> </h4> <p class="shortcomment cmt">This method enables the following syntax, where, for example, <code>badBook</code> is of type <code>Book</code> and <code>excellentRead</code> is a <code>BePropertyMatcher[Book]</code>:</p><div class="fullcomment"><div class="comment cmt"><p>This method enables the following syntax, where, for example, <code>badBook</code> is of type <code>Book</code> and <code>excellentRead</code> is a <code>BePropertyMatcher[Book]</code>:</p><p><pre class="stHighlighted"> badBook should not be an (excellentRead) ^ </pre> </p></div></div> </li><li name="org.scalatest.Matchers.AnWord#apply" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="apply(symbol:Symbol):org.scalatest.words.ResultOfAnWordToSymbolApplication"></a> <a id="apply(Symbol):ResultOfAnWordToSymbolApplication"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">apply</span><span class="params">(<span name="symbol">symbol: <span class="extype" name="scala.Symbol">Symbol</span></span>)</span><span class="result">: <a href="words/ResultOfAnWordToSymbolApplication.html" class="extype" name="org.scalatest.words.ResultOfAnWordToSymbolApplication">ResultOfAnWordToSymbolApplication</a></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"> badBook should not be an (<span class="stQuotedString">'excellentRead</span>) ^ </pre> </p></div></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[<span class="extype" name="java.lang">java.lang</span>] </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[<span class="extype" name="java.lang">java.lang</span>] </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:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="org.scalatest.Matchers.AnWord#toString" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="toString():String"></a> <a id="toString():String"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">toString</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Predef.String">String</span></span> </span> </h4> <p class="shortcomment cmt">Overrides to return pretty toString.</p><div class="fullcomment"><div class="comment cmt"><p>Overrides to return pretty toString. </p></div><dl class="paramcmts block"><dt>returns</dt><dd class="cmt"><p>&quot;an&quot; </p></dd></dl><dl class="attributes block"> <dt>Definition Classes</dt><dd><a href="" class="extype" name="org.scalatest.Matchers.AnWord">AnWord</a> → 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>
chapter2/ng-repeat-track-by-id.html
zykler/my-angjs-up-running
<!DOCTYPE html> <html ng-app="notesApp"> <head lang="es"> <meta charset="UTF-8"> <title>Notes App</title> </head> <body ng-controller="MainCtrl as ctrl"> <button ng-click="ctrl.changeNotes()">Change Notes</button> <br/> DOM Elements change every time someone clicks <div ng-repeat="note in ctrl.notes1"> {{note.$$hashKey}} <span class="label"> {{note.label}}</span> <span class="author" ng-bind="note.done"></span> </div> <br/> DOM Elements are reused every time someone clicks <div ng-repeat="note in ctrl.notes2 track by note.id"> {{note.$$hashKey}} <span class="label"> {{note.label}}</span> <span class="author" ng-bind="note.done"></span> </div> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.11/angular.min.js"></script> <script type="text/javascript"> angular.module('notesApp', []) .controller('MainCtrl', [function(){ var self = this; var notes = [ { id: 1, label: 'First Note', done: false, someRandom: 31431 }, { id: 2, label: 'Second Note', done: false }, { id: 3, label: 'Finished Third Note', done: true } ]; self.notes1 = angular.copy(notes); self.notes2 = angular.copy(notes); self.changeNotes = function() { notes = [ { id: 1, label: 'Changed Note', done: false, someRandom: 4242 }, { id: 2, label: 'Second Note', done: false }, { id: 3, label: 'Finished Third Note', done: true } ]; self.notes1 = angular.copy(notes); self.notes2 = angular.copy(notes); } }]); </script> </body> </html>
2017.10.2/apidocs/org/wildfly/swarm/config/undertow/configuration/class-use/CustomFilterSupplier.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 Interface org.wildfly.swarm.config.undertow.configuration.CustomFilterSupplier (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 Interface org.wildfly.swarm.config.undertow.configuration.CustomFilterSupplier (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/undertow/configuration/CustomFilterSupplier.html" title="interface in org.wildfly.swarm.config.undertow.configuration">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/undertow/configuration/class-use/CustomFilterSupplier.html" target="_top">Frames</a></li> <li><a href="CustomFilterSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.undertow.configuration.CustomFilterSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.undertow.configuration.CustomFilterSupplier</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/undertow/configuration/CustomFilterSupplier.html" title="interface in org.wildfly.swarm.config.undertow.configuration">CustomFilterSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.undertow">org.wildfly.swarm.config.undertow</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.undertow"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../org/wildfly/swarm/config/undertow/configuration/CustomFilterSupplier.html" title="interface in org.wildfly.swarm.config.undertow.configuration">CustomFilterSupplier</a> in <a href="../../../../../../../org/wildfly/swarm/config/undertow/package-summary.html">org.wildfly.swarm.config.undertow</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/undertow/package-summary.html">org.wildfly.swarm.config.undertow</a> with parameters of type <a href="../../../../../../../org/wildfly/swarm/config/undertow/configuration/CustomFilterSupplier.html" title="interface in org.wildfly.swarm.config.undertow.configuration">CustomFilterSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../org/wildfly/swarm/config/undertow/FilterConfiguration.html" title="type parameter in FilterConfiguration">T</a></code></td> <td class="colLast"><span class="typeNameLabel">FilterConfiguration.</span><code><span class="memberNameLink"><a href="../../../../../../../org/wildfly/swarm/config/undertow/FilterConfiguration.html#customFilter-org.wildfly.swarm.config.undertow.configuration.CustomFilterSupplier-">customFilter</a></span>(<a href="../../../../../../../org/wildfly/swarm/config/undertow/configuration/CustomFilterSupplier.html" title="interface in org.wildfly.swarm.config.undertow.configuration">CustomFilterSupplier</a>&nbsp;supplier)</code> <div class="block">Install a supplied CustomFilter 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/undertow/configuration/CustomFilterSupplier.html" title="interface in org.wildfly.swarm.config.undertow.configuration">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/undertow/configuration/class-use/CustomFilterSupplier.html" target="_top">Frames</a></li> <li><a href="CustomFilterSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
game11_11/link_link/static/link_link/styles/main.css
zerovip/link-link
@font-face { font-family: 'normal'; src: url('../fonts/normal.ttf'); src: url('../fonts/normal.eot') format('embedded-opentype'), url('../fonts/normal.woff') format('woff'), url('../fonts/normal.ttf?#font-spider') format('truetype'), url('../fonts/normal.svg') format('svg'); font-weight: normal; font-style: normal; } * { box-sizing: border-box; font-family: 'normal', sans-serif; } html, body, div { margin: 0; padding: 0; border: 0; outline: 0; } html, #all, #save { background-color: #f5f2e8; } #all { position: absolute; left: 50%; top: 50%; width: 1080px; height: 1920px; transform: translate(-50%, -50%); transform-origin: center; } #all > div { display: none; } #all #welcome { display: block; } .quan { position: absolute; left: 0; top: 0; height: 100%; width: 100%; } #canvas { cursor: default; margin-left: 40px; width: 1000px; height: 1000px; border-radius: 35px; box-shadow: 3px 3px 4px 0 rgba(0, 0, 0, 0.24); -moz-user-select: none; -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; -webkit-tap-highlight-color: transparent; } #welcome p { font-size: 72px; text-align: center; color: #ddc07b; word-break: break-all; margin-top: 700px; } #welcome div { position: absolute; bottom: 0; left: 0; width: 1080px; height: 264px; background: #fff; background-image: url(../images/sduonline.jpg); background-repeat: no-repeat; background-position: center; } #help { padding-top: 100px; } #help h1 { font-size: 72px; text-align: center; margin: 50px; } #help p { font-size: 48px; padding: 40px 120px; line-height: 95px; background: #fff; margin: 0; } #startBtn { cursor: pointer; margin: 130px auto 0; width: 400px; height: 105px; border-radius: 20px; border: 3px solid #b28850; background: #fff; box-shadow: 2px 3px 6px 0 rgba(0, 0, 0, 0.26); } #startBtn p { padding: 0; background: transparent; text-align: center; line-height: 105px; } #index p { margin: 0; text-align: center; } #index .i_l { color: #ddc07b; font-weight: 400; } #index #i_l0 { margin-top: 300px; font-size: 128px; } #index #i_l1 { font-size: 171px; margin-bottom: 470px; } #index #i_b { color: #fedc60; font-size: 60px; font-weight: 700; margin-top: 240px; } .playBtn { cursor: pointer; width: 334px; height: 334px; background: url(../images/play.png); background-repeat: no-repeat; margin: 0 auto; } #pause { background: #f5f2e8; background: rgba(245, 242, 232, 0.92); z-index: 9999; } #pause p { font-size: 72px; text-align: center; margin: 0; } #pause #p_t { color: #ddc07b; margin-top: 600px; margin-bottom: 380px; } #pause #p_b { color: #89774c; margin-top: 40px; } #over .card { position: absolute; top: 400px; left: 140px; width: 800px; height: 1111px; background: url(../images/background.jpg); border-radius: 20px; border: 3px solid #dcbd76; box-shadow: 4px 6px 10px 0 rgba(0, 0, 0, 0.16); overflow: hidden; } #replay .o_t { width: 800px; height: 422px; background: url(../images/gameover.png); background-repeat: no-repeat; background-position: center; margin-top: 147px; margin-bottom: 80px; } .restartBtn { cursor: pointer; background: url(../images/restart.png); width: 239px; height: 239px; margin: 0 auto; } #over .btnText { font-size: 60px; text-align: center; color: #89774c; font-weight: 700; margin: 0; margin-top: 30px; } #over #loading .rkCtn { margin-top: 300px; } #over #mys * { font-family: sans-serif; } .nextBtn { background: url(../images/next.png); width: 239px; height: 240px; margin: 40px auto -17px; cursor: pointer; } .shareBtn { cursor: pointer; background: url(../images/share.png); width: 108px; height: 86px; position: absolute; right: 58px; bottom: 50px; } #break .o_t { background: url(../images/break.png); width: 800px; height: 328px; background-position: top; background-size: 800px 328px; padding: 26px; text-align: center; } #break .o_t div { display: inline-block; min-width: 367px; height: 77px; border-radius: 21px; background: #fdfbf0; margin: 0 auto; } #break .o_t p { font-size: 60px; text-align: center; color: #ddc07b; margin: 0; } #over .utCtn { text-align: center; font-size: 120px; margin: 35px 0 40px; color: #ddc07b; } #over .rkCtn { text-align: center; font-size: 36px; line-height: 45px; margin: 0; color: #ddc07b; } #over .online { position: absolute; bottom: 0; left: 0; width: 1080px; height: 264px; background: #fff; background-image: url(../images/sduonline.jpg); background-repeat: no-repeat; background-position: center; } #over .nav { position: absolute; top: 0; left: 0; width: 1080px; } #over .nav .bDog { position: absolute; top: 15px; left: 15px; background: url(../images/bDog.png); width: 222px; height: 285px; } #over .nav .gDog { position: absolute; top: 15px; right: 15px; background: url(../images/gDog.png); width: 223px; height: 288px; } #next .o_t { text-align: center; font-size: 60px; color: #ddc07b; } #over .tm { text-align: center; font-size: 96px; color: #ddc07b; margin: 100px 0 0; } #over #win { overflow: visible; } #over #win > * { z-index: 233; } #over #win:after { content: ""; background: url(../images/celebrate.png); width: 928px; height: 1313px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 0; } .knowBtn { position: relative; cursor: pointer; background: url(../images/iknow.png); width: 447px; height: 130px; margin: 300px auto 0; } #over #win .shareBtn { background: url(../images/winshare.png); } #over #win .utCtn { margin-top: 230px; margin-bottom: 0; line-height: 121px; color: #eb6877; } #game .nav { height: 400px; } #game .time { height: 350px; padding-top: 150px; } #game .nav .n_blk { width: 32%; display: inline-block; color: #ddc07b; font-size: 60px; text-align: center; vertical-align: top; margin-top: 100px; } .pauseBtn { cursor: pointer; background: url(../images/pause.png); width: 97px; height: 96px; margin: -10px auto 0; } #game .time .t_l { position: relative; width: 842px; height: 36px; background: url(../images/tl_chart.jpg); margin: 0 auto; } #game .time .t_l div { position: absolute; width: 72px; height: 72px; border-radius: 50%; bottom: 0; background: #f29c9f; } #game .time .t_l .tl_l { left: -36px; } #game .time .t_l .tl_l:after { content: ""; background: url(../images/boy.png); width: 88px; height: 93px; position: absolute; right: 36px; bottom: 0; z-index: 233; } #game .time .t_l .tl_r { right: -36px; } #game .time .t_l .tl_r:after { content: ""; background: url(../images/girl.png); width: 86px; height: 90px; position: absolute; left: 36px; bottom: 0; z-index: 666; } #save .close { position: absolute; top: 0; left: 0; font-size: 50px; text-align: center; line-height: 150px; width: 150px; height: 150px; background: #fff; background: rgba(255, 255, 255, 0.9); border-radius: 50%; color: #89774c; } #save .close p { margin: 0; } #save .dock { position: absolute; left: 0; bottom: 0; width: 1080px; font-family: sans-serif; text-align: center; font-size: 70px; background: #fff; background: rgba(255, 255, 255, 0.75); } #save .dock p { font-family: sans-serif; color: #ddc07b; } #save .dock a { font-family: sans-serif; text-decoration: none; color: #89774c; } #over .i_l { color: #ddc07b; font-weight: 400; text-align: center; margin: 0; } #over #i_l0 { margin-top: 50px; font-size: 100px; } #over #i_l1 { font-size: 150px; } .social-share { position: relative; width: 100%; } .social-share .social-share-icon { width: 150px; height: 150px; border-width: 6px; } .social-share .social-share-icon:before { font-size: 110px; line-height: 150px; } .social-share .social-share-icon > div { display: none !important; }
2018.5.0/apidocs/org/wildfly/swarm/config/management/class-use/ManagementOperationsService.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 May 02 00:35:11 MST 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.wildfly.swarm.config.management.ManagementOperationsService (BOM: * : All 2018.5.0 API)</title> <meta name="date" content="2018-05-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 org.wildfly.swarm.config.management.ManagementOperationsService (BOM: * : All 2018.5.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/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">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.5.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/management/class-use/ManagementOperationsService.html" target="_top">Frames</a></li> <li><a href="ManagementOperationsService.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.wildfly.swarm.config.management.ManagementOperationsService" class="title">Uses of Class<br>org.wildfly.swarm.config.management.ManagementOperationsService</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/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config">org.wildfly.swarm.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.management">org.wildfly.swarm.config.management</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</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/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</a></code></td> <td class="colLast"><span class="typeNameLabel">ManagementCoreService.ManagementCoreServiceResources.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/ManagementCoreService.ManagementCoreServiceResources.html#managementOperationsService--">managementOperationsService</a></span>()</code> <div class="block">Execution of management operations.</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/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/ManagementCoreService.html" title="type parameter in ManagementCoreService">T</a></code></td> <td class="colLast"><span class="typeNameLabel">ManagementCoreService.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/ManagementCoreService.html#managementOperationsService-org.wildfly.swarm.config.management.ManagementOperationsService-">managementOperationsService</a></span>(<a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</a>&nbsp;value)</code> <div class="block">Execution of management operations.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.wildfly.swarm.config.management"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</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 classes, and an explanation"> <caption><span>Classes in <a href="../../../../../../org/wildfly/swarm/config/management/package-summary.html">org.wildfly.swarm.config.management</a> with type parameters of type <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</a>&lt;T&gt;&gt;</span></code> <div class="block">Execution of management operations.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceConsumer.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceConsumer</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</a>&lt;T&gt;&gt;</span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceSupplier.html" title="interface in org.wildfly.swarm.config.management">ManagementOperationsServiceSupplier</a>&lt;T extends <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</a>&gt;</span></code>&nbsp;</td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/management/package-summary.html">org.wildfly.swarm.config.management</a> that return <a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">ManagementOperationsService</a></code></td> <td class="colLast"><span class="typeNameLabel">ManagementOperationsServiceSupplier.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/management/ManagementOperationsServiceSupplier.html#get--">get</a></span>()</code> <div class="block">Constructed instance of ManagementOperationsService 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/management/ManagementOperationsService.html" title="class in org.wildfly.swarm.config.management">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.5.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/management/class-use/ManagementOperationsService.html" target="_top">Frames</a></li> <li><a href="ManagementOperationsService.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2018 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
2016.9/apidocs/org/wildfly/swarm/config/webservices/class-use/PreHandlerChainSupplier.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 Sep 06 12:41:44 EDT 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Interface org.wildfly.swarm.config.webservices.PreHandlerChainSupplier (Public javadocs 2016.9 API)</title> <meta name="date" content="2016-09-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.webservices.PreHandlerChainSupplier (Public javadocs 2016.9 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/wildfly/swarm/config/webservices/PreHandlerChainSupplier.html" title="interface in org.wildfly.swarm.config.webservices">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2016.9</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/webservices/class-use/PreHandlerChainSupplier.html" target="_top">Frames</a></li> <li><a href="PreHandlerChainSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface org.wildfly.swarm.config.webservices.PreHandlerChainSupplier" class="title">Uses of Interface<br>org.wildfly.swarm.config.webservices.PreHandlerChainSupplier</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/wildfly/swarm/config/webservices/PreHandlerChainSupplier.html" title="interface in org.wildfly.swarm.config.webservices">PreHandlerChainSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.wildfly.swarm.config.webservices">org.wildfly.swarm.config.webservices</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.wildfly.swarm.config.webservices"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/wildfly/swarm/config/webservices/PreHandlerChainSupplier.html" title="interface in org.wildfly.swarm.config.webservices">PreHandlerChainSupplier</a> in <a href="../../../../../../org/wildfly/swarm/config/webservices/package-summary.html">org.wildfly.swarm.config.webservices</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/wildfly/swarm/config/webservices/package-summary.html">org.wildfly.swarm.config.webservices</a> with parameters of type <a href="../../../../../../org/wildfly/swarm/config/webservices/PreHandlerChainSupplier.html" title="interface in org.wildfly.swarm.config.webservices">PreHandlerChainSupplier</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfig.html" title="type parameter in ClientConfig">T</a></code></td> <td class="colLast"><span class="typeNameLabel">ClientConfig.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/webservices/ClientConfig.html#preHandlerChain-org.wildfly.swarm.config.webservices.PreHandlerChainSupplier-">preHandlerChain</a></span>(<a href="../../../../../../org/wildfly/swarm/config/webservices/PreHandlerChainSupplier.html" title="interface in org.wildfly.swarm.config.webservices">PreHandlerChainSupplier</a>&nbsp;supplier)</code> <div class="block">Install a supplied PreHandlerChain object to the list of subresources</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/wildfly/swarm/config/webservices/EndpointConfig.html" title="type parameter in EndpointConfig">T</a></code></td> <td class="colLast"><span class="typeNameLabel">EndpointConfig.</span><code><span class="memberNameLink"><a href="../../../../../../org/wildfly/swarm/config/webservices/EndpointConfig.html#preHandlerChain-org.wildfly.swarm.config.webservices.PreHandlerChainSupplier-">preHandlerChain</a></span>(<a href="../../../../../../org/wildfly/swarm/config/webservices/PreHandlerChainSupplier.html" title="interface in org.wildfly.swarm.config.webservices">PreHandlerChainSupplier</a>&nbsp;supplier)</code> <div class="block">Install a supplied PreHandlerChain 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/webservices/PreHandlerChainSupplier.html" title="interface in org.wildfly.swarm.config.webservices">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage">WildFly Swarm API, 2016.9</div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/wildfly/swarm/config/webservices/class-use/PreHandlerChainSupplier.html" target="_top">Frames</a></li> <li><a href="PreHandlerChainSupplier.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016 <a href="http://www.jboss.org">JBoss by Red Hat</a>. All rights reserved.</small></p> </body> </html>
_includes/portfolio.html
jimjet520/jimjet520.github.io
<div class="container mtb editable"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 centered"> <h2>Check Back Soon</h2> <br> <div class="hline"></div>
404.html
rebeccamurphy/QualitySounds
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <title>Modern Business - Start Bootstrap Template</title> <!-- Bootstrap Core CSS --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!-- Custom CSS --> <link href="css/modern-business.css" rel="stylesheet"> <!-- Custom Fonts --> <link href="font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <!-- Navigation --> <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="index.html">Start Bootstrap</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav navbar-right"> <li> <a href="about.html">About</a> </li> <li> <a href="contact.html">Contact</a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Portfolio <b class="caret"></b></a> <ul class="dropdown-menu"> <li> <a href="portfolio-1-col.html">1 Column Portfolio</a> </li> <li> <a href="portfolio-2-col.html">2 Column Portfolio</a> </li> <li> <a href="portfolio-3-col.html">3 Column Portfolio</a> </li> <li> <a href="portfolio-4-col.html">4 Column Portfolio</a> </li> <li> <a href="portfolio-item.html">Single Portfolio Item</a> </li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Blog <b class="caret"></b></a> <ul class="dropdown-menu"> <li> <a href="blog-home-1.html">Blog Home 1</a> </li> <li> <a href="blog-home-2.html">Blog Home 2</a> </li> <li> <a href="blog-post.html">Blog Post</a> </li> </ul> </li> <li class="dropdown active"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Other Pages <b class="caret"></b></a> <ul class="dropdown-menu"> <li> <a href="full-width.html">Full Width Page</a> </li> <li> <a href="sidebar.html">Sidebar Page</a> </li> <li> <a href="faq.html">FAQ</a> </li> <li class="active"> <a href="404.html">404</a> </li> <li> <a href="pricing.html">Pricing Table</a> </li> </ul> </li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container --> </nav> <!-- Page Content --> <div class="container"> <!-- Page Heading/Breadcrumbs --> <div class="row"> <div class="col-lg-12"> <h1 class="page-header">404 <small>Page Not Found</small> </h1> <ol class="breadcrumb"> <li><a href="index.html">Home</a> </li> <li class="active">404</li> </ol> </div> </div> <!-- /.row --> <div class="row"> <div class="col-lg-12"> <div class="jumbotron"> <h1><span class="error-404">404</span> </h1> <p>The page you're looking for could not be found. Here are some helpful links to get you back on track:</p> <ul> <li> <a href="index.html">Home</a> </li> <li> <a href="about.html">About</a> </li> <li> <a href="services.html">Services</a> </li> <li> <a href="contact.html">Contact</a> </li> <li> Portfolio <ul> <li> <a href="portfolio-1-col.html">1 Column Portfolio</a> </li> <li> <a href="portfolio-2-col.html">2 Column Portfolio</a> </li> <li> <a href="portfolio-3-col.html">3 Column Portfolio</a> </li> <li> <a href="portfolio-4-col.html">4 Column Portfolio</a> </li> </ul> </li> <li> Blog <ul> <li> <a href="blog-home-1.html">Blog Home 1</a> </li> <li> <a href="blog-home-2.html">Blog Home 2</a> </li> <li> <a href="blog-post.html">Blog Post</a> </li> </ul> </li> <li> Other Pages <ul> <li> <a href="full-width-page.html">Full Width Page</a> </li> <li> <a href="sidebar.html">Sidebar Page</a> </li> <li> <a href="faq.html">FAQ</a> </li> <li> <a href="404.html">404 Page</a> </li> <li> <a href="pricing-table.html">Pricing Table</a> </li> </ul> </li> </ul> </div> </div> </div> <hr> <!-- Footer --> <footer> <div class="row"> <div class="col-lg-12"> <p>Copyright &copy; Your Website 2014</p> </div> </div> </footer> </div> <!-- /.container --> <!-- jQuery --> <script src="js/jquery.js"></script> <!-- Bootstrap Core JavaScript --> <script src="js/bootstrap.min.js"></script> </body> </html>
_includes/footer.html
achiwhane/ieee-website
<footer class="site-footer"> <div class="wrapper"> <h2 class="footer-heading">Contact Us</h2> <div class="footer-col-wrapper"> <div class="footer-col footer-col-1"> <ul class="contact-list"> <li>1301 Beal Avenue</li> <li>2243 EECS Building</li> <li>Ann Arbor, MI 48109</li> <li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li> </ul> </div> <div class="footer-col footer-col-2"> <ul class="social-media-list"> {% if site.github_username %} <li> {% include icon-github.html username=site.github_username %} </li> {% endif %} {% if site.twitter_username %} <li> {% include icon-twitter.html username=site.twitter_username %} </li> {% endif %} </ul> </div> <div class="footer-col footer-col-3"> <p>{{ site.description }}</p> </div> </div> </div> </footer>
microchip_libusb/index.html
winghackerspace/chromeapp_sample
<!DOCTYPE html> <html> <head> <title>USB Test for Microchip</title> <script src="usb.js"></script> <head> <body> <div id="status"> <i>Testing </i></div> <button id="requestPermission">Request permissions</button> <div> <button id="led">Toggle LED</button> </div> <body> </html>
_posts/2007-10-15-n73-brushing-machine.html
dbaeyes/dbaeyes.github.io
--- layout: post title: N73刷机 date: 2007-10-15 23:18:59.000000000 +09:30 type: post published: true status: publish categories: - Digital tags: - mobile meta: posturl_add_url: 'yes' _edit_last: '1' views: '906' --- <h1></h1> <div>新买的国行手机,是IE版本的。 我喜欢IE版本的,而网上现在最新的IE版本已经是0539361(V4.0727.2.4.1),而奇怪的是我的code是0545072    (V3.0638.0.0.44)而且也是最新版本,是2006-10月的,吐血。。。 国行的居然这么久了还不更新软件版本,鄙视啊。 看了些帖子,说到只要用NNS更新好code,就可以用更新软件在网上更新到最新的对于CODE的软件了。 但是现在问题来了,nokia那边的程序更新了,貌似不单单检查了code,还检查了当前手机的软件。 所以这样是不行滴。。。<br /> 找啊找啊找,终于到到一片牛人的文章,大意如下:<br /> <span style="color: #0000ff;">前段时间用改code的版本把我的 港行 N73刷到了国行最新版。4.0727.2.4.1 RM-132</p> <p>无奈由于官方更新了那个更新程序,现在无法刷回到以前的 RM-133。也就无法更新到最新的 4.0736的固件。</p> <p>没有敢尝试凤凰,因为翻阅资料后发现死伤无数。</p> <p>无奈~~~尝试离线法!!!!!获得成功!!万分喜悦!特此和大家分享!</p> <p>步骤如下:</p> <p>下载网上的亚太音乐版的刷机包。把里面的这几个文件拷贝出来。<br /> #0539343: RM-133 CUST.TRX APAC 1 (Black)<br /> Flashing files:<br /> - N73_4.0727.2.2.1_western_C00_PRD_cc.fpsx<br /> - N73_rofx_4.0727.2.2.1_PRD.V11<br /> - N73_userarea_4.0727.2.2.1.U01</p> <p>然后把你的手机code号改回国行版本的。就是你升级到4.0727.2.4.1的CODE:0539361</p> <p>此时运行官方升级程序,升级固件的时候,选择重新安装。</p> <p>开始下载。。。。。。。。。。。。此时拔掉USB数据线!!!一定要在下载过程中拔,千万切记。</p> <p>然后下载完成,程序会说找不到数据线,让你重试。这个时候不要点。</p> <p>把上面考出来的三个文件 改名为<br /> N73_4.0727.2.4.1_western_C00_PRD_cc.fpsx<br /> N73_rofx_4.0727.2.4.1_PRD.V16<br /> N73_userarea_4.0727.2.4.1.U03</p> <p>然后把它们拷贝到 C:\Documents and Settings\All Users\Application Data\Nokia\Nokia Service Layer\A\nsl_service_module_00001\www.dsut.online.nokia.com.oti.caresuite\Products\rm-132</p> <p>覆盖原来的3个文件!</p> <p>然后:) 插上USB线,点重试升级,直到完成!!!!大功告成!!!(成功前不要拔数据线啊!)</p> <p>然后用改code那个工具把code改为RM-133的</p> <p>好啦!!!!简单吧???</span><br /> -----------------------<br /> 我就是根据了这个办法,下载了他修改的文件,当然,因为手机里面原本的软件版本是不一样的,所以在重命名文件的时候要根据自己下载来的文件更新。<br /> 我的第一个文件名如下:<br /> N73_3.0638.0.0.44_rm132_western_C00_PRD_cc.fpsx (其它的类推)</p> <p>OK,我现在的是手机版本是:<strong><span style="color: #ff9900;">音乐版的code:0539343(简体+英文,V4.0727.2.2.1) </span></strong><span style="color: #000000;">code是自己用NNS更新的</span><span style="color: #ff9900;"><br /> <span style="color: #000000;">但我的目标软件版本是 </span></span>4.0736.3.2.1,现在需要做的只是开启更新程序,连上去更新就可以了。 经过一段时间的等待之后我的手机拥有了最新的N73音乐版的软件了。<br /> 我更新一次的时间大概是20分钟吧(依据自己的网络状况而定)</div>
doc/es/fnl/fsm/class-use/Transition.html
fnl/libfsmg
<!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_37) on Fri Feb 01 13:39:19 CET 2013 --> <TITLE> Uses of Interface es.fnl.fsm.Transition </TITLE> <META NAME="date" CONTENT="2013-02-01"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface es.fnl.fsm.Transition"; } } </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="../../../../es/fnl/fsm/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../es/fnl/fsm/Transition.html" title="interface in es.fnl.fsm"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?es/fnl/fsm//class-useTransition.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Transition.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Interface<br>es.fnl.fsm.Transition</B></H2> </CENTER> <A NAME="es.fnl.fsm"><!-- --></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="../../../../es/fnl/fsm/Transition.html" title="interface in es.fnl.fsm">Transition</A> in <A HREF="../../../../es/fnl/fsm/package-summary.html">es.fnl.fsm</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../es/fnl/fsm/package-summary.html">es.fnl.fsm</A> with parameters of type <A HREF="../../../../es/fnl/fsm/Transition.html" title="interface in es.fnl.fsm">Transition</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY=""> <TR ALIGN="right" VALIGN=""> <TD NOWRAP><FONT SIZE="-1"> <CODE>&lt;T&gt; <A HREF="../../../../es/fnl/fsm/Pattern.html" title="class in es.fnl.fsm">Pattern</A>&lt;T&gt;</CODE></FONT></TD> </TR> </TABLE> </CODE></FONT></TD> <TD><CODE><B>Pattern.</B><B><A HREF="../../../../es/fnl/fsm/Pattern.html#match(es.fnl.fsm.Transition)">match</A></B>(<A HREF="../../../../es/fnl/fsm/Transition.html" title="interface in es.fnl.fsm">Transition</A>&lt;T&gt;&nbsp;t)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a pattern that matches a single transition.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../es/fnl/fsm/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../es/fnl/fsm/Transition.html" title="interface in es.fnl.fsm"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?es/fnl/fsm//class-useTransition.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Transition.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>